OSDN Git Service

7da582416482c5a0e2cc925ea2d5f029134bd964
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2017-11-07  Keith Marshall  <keith@users.osdn.me>
2
3         Adopt system naming convention for USE_SYS_TYPES_FD_SET macro.
4
5         * include/winsock.h (USE_SYS_TYPES_FD_SET): Deprecate it; use...
6         (_USE_SYS_TYPES_FD_SET): ...this alternative; it is named to conform
7         with preferred convention for system feature test macros.
8
9 2017-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
10
11         Use WINSOCK_API_LINKAGE consistently in WinSock headers.
12
13         * include/winsock.h (WINSOCK_API_LINKAGE): Define, and prefix to...
14         (accept, bind, closesocket, connect, ioctlsocket, inet_addr, inet_ntoa)
15         (getpeername, getsockname, getsockopt, listen, recv, recvfrom, send)
16         (sendto, setsockopt, shutdown, socket, gethostbyaddr, gethostbyname)
17         (getservbyport, getservbyname, getprotobynumber, getprotobyname)
18         (WSAStartup, WSACleanup, WSASetLastError, WSAGetLastError)
19         (WSAIsBlocking, WSAUnhookBlockingHook, WSASetBlockingHook)
20         (WSACancelBlockingCall, WSAAsyncGetServByName, WSAAsyncGetServByPort)
21         (WSAAsyncGetProtoByName, WSAAsyncGetProtoByNumber, WSAAsyncSelect)
22         (WSAAsyncGetHostByName, WSAAsyncGetHostByAddr, WSACancelAsyncRequest)
23         (htonl, ntohl, htons, ntohs, select): ...these function prototypes.
24
25         * include/winsock2.h (WINSOCK_API_LINKAGE): Remove it from...
26         (LPFN_WSASTARTUP): ...this typedef; it is inappropriate.
27
28 2017-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
29
30         Refactor <wtypes.h> vs. <nspapi.h> and WinSock headers.
31
32         * include/wtypes.h: Tidy layout; assert copyright.
33         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
34         [__NSPAPI_H_SOURCED__]: Restrict exposure of declared content to...
35         [!__BLOB_DATA_TYPE_DEFINED] (BLOB, PBLOB, LPBLOB): ...these; define...
36         (__BLOB_DATA_TYPE_DEFINED__): ...this internal guard; it renames...
37         (__BLOB_T_DEFINED): ...this; do not define...
38         (_WTYPES_H): ...this external guard.
39
40         * include/nspapi.h: Tidy layout; assert copyright.
41         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
42         (__CSADDR_T_DEFINED): Do not define; it is no longer required.
43         [__WINSOCK2_H_SOURCED__]: Restrict exposure of declared content to...
44         (struct _CSADDR_INFO): ...this, as an incomplete type, along with...
45         (CSADDR_INFO, PCSADDR_INFO, LPCSADDR_INFO): ...these typedefs; also...
46         (SOCKET_ADDRESS, PSOCKET_ADDRESS, LPSOCKET_ADDRESS): ...define fully.
47         [__WINSOCK2_H_SOURCED__] (_NSPAPI_H): Do not define external guard.
48         [!__WINSOCK2_H_SOURCED__] (struct _CSADDR_INFO): Define fully.
49         (__BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define; instead...
50         (__NSPAPI_H_SOURCED__): ...define this, temporarily; include wtypes.h
51         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT >= WIN2K]: Include winsock2.h
52         [!__WINSOCK2_H_SOURCED__ && _WIN32_WINNT < WIN2K]: Include winsock.h
53         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
54         (__AW_SUFFIXED__): ...this, to facilitate definition of each of...
55         (SetService, GetAddressByName, _SERVICE_INFO): ...these, and...
56         (__AW_ALIAS__): ...this, for definition of each of...
57         (SERVICE_INFO, LPSERVICE_INFO): ...these.
58
59         * include/winsock2.h (__WINSOCK2_H_SOURCED__): Define it temporarily.
60         (__CSADDR_T_DEFINED, struct _CSADDR_INFO, CSADDR_INFO, PCSADDR_INFO)
61         (LPCSADDR_INFO, __BLOB_T_DEFINED, BLOB, PBLOB, LPBLOB): Do not define;
62         include nspapi.h selectively, to acquire them.
63
64 2017-09-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
65
66         Factor <winerror.h> duplicate content out of winsock headers.
67
68         * include/winsock.h include/winsock2.h [!defined WSABASEERR]: Delete
69         conditional block, and all of its content; selectively include...
70         * include/winerror.h [__WINSOCK_H_SOURCED__]: ...this instead.
71         [__WINSOCK_H_SOURCED__] (_WINERROR_H): Do not define it.
72         (__WINSOCK_V1_ERRORS__, __WINSOCK_V2_ERRORS__): New temporary macros;
73         define them, to segregate WSA error messages applicable to WinSock v2
74         only, from those applicable to both WinSock v1.1 and WinSock v2.
75         (__WSA_ERRNO): New macro; use it to redefine all WSA specific error
76         codes, except WSABASEERR, relative to WSABASEERR itself.
77
78 2017-09-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
79
80         Factor <sys/time.h> duplicate content out of winsock headers.
81
82         * include/winsock.h include/winsock2.h [_TIMEVAL_DEFINED]: Delete
83         conditional block, and all its content; include <sys/time.h> instead.
84         (__WINSOCK_H_SOURCED__): New macro; define it temporarily, only while
85         processing this header, such that only selected content from other
86         internally referenced headers is exposed.
87
88 2017-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
89
90         Source BSD non-standard type definitions from mingwrt header.
91
92         * include/winsock.h include/winsock2.h [_BSDTYPES_DEFINED]: Delete
93         conditional block, and its entire type definition content; include...
94         * include/sys/bsdtypes.h: ...this common file instead; it defines...
95         (u_char, u_int, u_long, u_short): ...these non-standard data types.
96
97 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
98
99         Correct misuse of __INSIDE_MSYS__ feature test.
100
101         * include/winsock2.h [!__INSIDE_MSYS__]: One of several instances
102         omits "defined" operator; it should be expressed consistently as...
103         [! defined __INSIDE_MSYS__]: ...this; correct it.
104
105 2017-09-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
106
107         Prepare for <winsock.h> vs. <winsock2.h> refactoring.
108
109         * include/winsock.h: Tidy layout; assert copyright.
110         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
111
112         * include/winsock2.h: Assert copyright; tidy layout, ensuring that all
113         sections, which are common with <winsock.h>, are laid out congruently.
114         (_BEGIN_C_DECLS, _END_C_DECLS): Use them to avoid C++ name mangling.
115         (SD_RECEIVE, SD_SEND, SD_BOTH): Delete duplicate constant definitions.
116         (SO_DONTLINGER, MSG_MAXIOVLEN): Likewise, delete duplicate definitions.
117         (__AW_ALIAS__, __AW_SUFFIXED__): Use them, to avoid reproduction of...
118         [UNICODE]: ...alternative typedefs, and function name aliases...
119         [!UNICODE]: ...versus this case.
120
121 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
122
123         Resolve secondary issue arising from MinGW-Bug [#2350]
124
125         * include/winuser.h (GetTitleBarInfo)
126         [_WIN32_WINDOWS >= _WIN32_WINDOWS_98]: Remove exposure restriction;
127         it conflicted with current MSDN documentation, so now falls within...
128         [_WIN32_WINNT >= Win2K || _WIN32_WINDOWS >= Win98]: ...this.
129
130 2017-08-28  Keith Marshall  <keithmarshall@users.sourceforge.net>
131
132         Resolve MinGW-Bug [#2350]
133
134         * include/winuser.h (GetTitleBarInfo): Move prototype after...
135         (PTITLEBARINFO): ...this type definition; it is used as a function
136         argument type, so must be defined beforehand.
137
138 2017-08-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
139
140         Extend testsuite to cover winsock fd_set macro operations.
141
142         * tests/winsock.at: New file; it implements appropriate tests, and
143         enables use of "-k winsock", "-k winsock2", and "-k fd_set" autotest
144         keywords to invoke them, (e.g. make check TESTSUITEFLAGS='-k fd_set').
145
146         * tests/testsuite.at.in (winsock.at): Integrate it.
147         (MINGW_AT_CHECK_RUN): Accept a variant list of libraries when linking.
148         (MINGW_AT_LINK_LIBS_DEFAULT): New macro; it establishes the initial
149         default list of libraries, or resets the list to this initial default.
150         (MINGW_AT_LINK_LIBS): New macro; it establishes an augmented list of
151         library specifications, to be used until subsequently reset.
152
153 2017-07-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
154
155         Prepare and tag for release of MinGW.org WSL-5.0.1
156
157         * All files (wsl-5.0.1-release): Tag assigned.
158
159 2017-07-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
160
161         Automate testsuite dependency generation.
162
163         * tests/Makefile.in (testsuite) [$srcdir/*.at]: Automatically
164         enumerate all such wildcard matches as prerequisites, instead of...
165         (headers.at): ...this sole explicit dependency.
166
167 2017-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
168
169         Make <winnt.h> header effectively self-contained.
170
171         * include/winnt.h (_WINNT_H): Defer definition unless included via...
172         (windef.h): ...this; include it, to enforce inclusion order, then...
173         [_WINNT_H]: ...re-evaluate it, to avoid recursive inclusion loop.
174
175 2017-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
176
177         Consolidate <winuser.h> version specific conditionals.
178
179         * include/winuser.h: Reorganize file content; group manifest constant
180         definitions into one nested collection of conditional blocks, with one
181         block per Windows version evolution; do likewise for type definitions
182         and function prototypes which are always exposed, and separately...
183         [! defined NOGDI]: ...for those which may be suppressed, when GDI
184         support is not required.
185
186 2017-06-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
187
188         Make <winuser.h> header effectively self-contained.
189
190         * include/winuser.h (stdarg.h): Include it, in addition to...
191         [NOGDI] (windef.h): ...this, directly or otherwise indirectly via...
192         [!NOGDI] (wingdi.h): ...this, for effective self-containment.
193
194 2017-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
195
196         Consolidate <wingdi.h> version specific conditionals.
197
198         * include/wingdi.h: Reorganize file content; group manifest constant
199         definitions into a single nested collection of conditional blocks, for
200         those definitions which are common to both Win9x and WinNT, with one
201         block per Windows version evolution, sorting alphabetically within
202         each block; do likewise for additional manifest constant definitions
203         which are specific to WinNT, and also for data type definitions and
204         function prototypes.
205
206 2017-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
207
208         Tidy, and make <wingdi.h> header effectively self-contained.
209
210         * include/wingdi.h: Tidy layout; assert copyright.
211         (windef.h): Include it; this achieves self-containment.
212         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them.
213         [UNICODE vs. !UNICODE]: Discriminate generic symbol names, using...
214         (__AW_ALIAS__): ...this, when defining each of...
215         (DEVMODE, PDEVMODE, LPDEVMODE, DOCINFO, LPDOCINFO, LOGCOLORSPACE)
216         (LOGFONT, PLOGFONT, LPLOGFONT, EXTLOGFONT, PEXTLOGFONT, LPEXTLOGFONT)
217         (LPLOGCOLORSPACE, TEXTMETRIC, PTEXTMETRIC, LPTEXTMETRIC, GCP_RESULTS)
218         (PPOLYTEXT, LPPOLYTEXT, NEWTEXTMETRIC, PNEWTEXTMETRIC, LPNEWTEXTMETRIC)
219         (LPENUMLOGFONTEX, ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV)
220         (OUTLINETEXTMETRIC, POUTLINETEXTMETRIC, LPOUTLINETEXTMETRIC, POLYTEXT)
221         (LPGCP_RESULTS, DISPLAY_DEVICE, PDISPLAY_DEVICE, LPDISPLAY_DEVICE)
222         (NEWTEXTMETRICEX, ENUMLOGFONT, LPENUMLOGFONT, ENUMLOGFONTEX): ...these.
223         (__AW_SUFFIXED__): Similarly, use this when declaring each of...
224         (FONTENUMPROC, ICMENUMPROC, AddFontResource, AddFontResourceEx,
225         (CopyEnhMetaFile, CopyMetaFile, CreateColorSpace, CreateEnhMetaFile)
226         (CreateDC, CreateFont, CreateFontIndirect, CreateIC, CreateMetaFile)
227         (CreateScalableFontResource, DeviceCapabilities, EnumFontFamilies)
228         (EnumFontFamiliesEx, EnumFonts, EnumICMProfiles, ExtTextOut)
229         (GetCharABCWidths, GetCharABCWidthsFloat, GetCharacterPlacement)
230         (GetCharWidth32, GetCharWidth, GetCharWidthFloat, GetEnhMetaFile)
231         (GetEnhMetaFileDescription, GetGlyphOutline, GetICMProfile)
232         (GetKerningPairs, GetLogColorSpace, GetMetaFile, GetObject)
233         (GetOutlineTextMetrics, GetTextExtentExPoint, GetTextExtentPoint)
234         (GetTextExtentPoint32, GetTextFace, GetTextMetrics, PolyTextOut,
235         (RemoveFontResource, RemoveFontResourceEx, ResetDC, SetICMProfile)
236         (StartDoc, TextOut, UpdateICMRegKey, wglUseFontBitmaps)
237         (wglUseFontOutlines, GetGlyphIndices): ...these.
238
239 2017-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
240
241         Declare CONDITION_VARIABLE API, per feature request [#2314]
242
243         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
244         (CONDITION_VARIABLE, PCONDITION_VARIABLE): Define data types, and...
245         (InitializeConditionVariable, SleepConditionVariableCS)
246         (SleepConditionVariableSRW, WakeAllConditionVariable)
247         (WakeConditionVariable): ...declare prototypes.
248
249 2017-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
250
251         Declare SRWLOCK API, to support feature request [#2314]
252
253         * include/winbase.h [_WIN32_WINNT >= _WIN32_WINNT_VISTA]
254         (SRWLOCK, *PSRWLOCK): Define these data types, and declare...
255         (InitializeSRWLock, AcquireSRWLockExclusive, AcquireSRWLockShared)
256         (ReleaseSRWLockExclusive, ReleaseSRWLockShared): ...these prototypes.
257         [_WIN32_WINNT >= _WIN32_WINNT_WIN7] (TryAcquireSRWLockExclusive)
258         (TryAcquireSRWLockShared): Declare additional prototypes.
259
260 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
261
262         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
263
264         * include/winerror.h: Tidy layout; assert copyright.
265
266         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
267         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
268         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
269         both locations; it permitted inconsistency between the two.
270
271 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
272
273         Consolidate <winbase.h> version specific conditionals.
274
275         * include/winbase.h: Reorganize file content; group manifest constant
276         definitions into one nested collection of conditional blocks, with one
277         block per Windows version evolution, sorting alphabetically within each
278         block; do likewise for data type definitions and function prototypes.
279
280 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
281
282         Tidy, and make <winbase.h> header effectively self-contained.
283
284         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
285         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
286         (__AW_EXTENDED__): ...this; subsequently reimplement...
287         (__AW_ALIAS__): ...this, with original name, now encapsulating...
288         (__AW_SUFFIXED__): ...this.
289
290         * include/dbt.h (__AW_ALIAS__): Replace all references with...
291         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
292         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
293         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
294
295         * include/winbase.h: Tidy layout; assert copyright.
296         (stdarg.h, windef.h): Include them, to achieve self-containment.
297         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
298         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
299         [__AW_ALIAS__]: ...this, to correctly specify each of...
300         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
301         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
302         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
303         [__AW_SUFFIXED__]: ...this, to correctly map each of...
304         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
305         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
306         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
307         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
308         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
309         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
310         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
311         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
312         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
313         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
314         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
315         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
316         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
317         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
318         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
319         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
320         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
321         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
322         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
323         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
324         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
325         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
326         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
327         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
328         (GetPrivateProfileInt, GetPrivateProfileSection)
329         (GetPrivateProfileSectionNames, GetPrivateProfileString)
330         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
331         (GetProfileString, GetShortPathName, GetStartupInfo)
332         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
333         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
334         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
335         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
336         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
337         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
338         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
339         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
340         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
341         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
342         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
343         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
344         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
345         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
346         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
347         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
348         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
349         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
350         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
351         (WritePrivateProfileString, WritePrivateProfileStruct)
352         (WriteProfileSection, WriteProfileString): ...these, and add...
353         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
354         (GetFirmwareEnvironmentVariable): ...these previously missing generic
355         function name aliases.
356
357 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
358
359         Refactor mingwrt and w32api common makefile content.
360
361         * Makefile.in (w32api-srcdist-config-files): Rename it...
362         (w32api-srcdist-common-files): ...as this phoney build rule.
363         (shared_include_file): New macro; define it, and include named file.
364         (configure, config.status, Makefile, config.status.missing, _mingw.h)
365         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
366         out; relocate them to new file in common parent directory...
367         * ../Makefile.comm: ...here.
368
369 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
370
371         Correct a copyright notice update omission.
372
373         * configure.ac: Extend copyright date range to include 2017.  Also
374         clean up superfluous trailing whitespace.
375
376 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
377
378         Fix generated header file dependencies.
379
380         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
381         [VERSION.m4]: ...this; package version changes are no longer made...
382         [configure.ac]: ...here; delete associated prerequisite reference.
383         (distclean-local): Delete them.
384
385 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
386
387         Prepare and tag for release of w32api-5.0 package set.
388
389         * All files (wsl-5.0-release): Tag assigned.
390
391 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
392
393         Implement basic test suite infrastructure.
394
395         * tests: New subdirectory; it hosts...
396         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
397         * tests/headers.at: ...these new files; they implement the basic test
398         suite infrastructure, initially comprising header integrity checks.
399
400         * configure.ac (AC_PROG_CXX): Check it.
401         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
402         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
403         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
404         tests/Makefile.
405
406         * Makefile.in (check test tests): New rules; all are synonymous.
407         (check-recursive): New rule; invoked by each of the preceding three.
408         (w32api-srcdist-testsuite-files): New rule; implement and use it...
409         (w32api-srcdist-files): ...here.
410
411 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
412
413         Add missing constant definition, per issue [#2249].
414
415         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
416
417 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
418
419         Avoid unnecessary duplication of configuration files.
420
421         * Makefile.in (vpath install-sh): Define it; it matches...
422         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
423         rule for creating duplicate file reference links in $top_srcdir.
424         (configure): Add '-I ..' option, when running autoconf.
425         (w32api-srcdist-files): Rename it as...
426         (w32api-srcdist-package-files): ...this; remove dependencies on...
427         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
428         (w32api-srcdist-config-files): ...this new distributable files
429         enumeration goal; add it as one new prerequisite of...
430         (w32api-srcdist-files): ...this repurposed goal; also depends on...
431         (w32api-srcdist-package-files): ...this; populate it using...
432         (SRCDIST_ADD): ...this macro; redefine it accordingly.
433
434 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
435
436         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
437
438         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
439         it was previously transcribed incorrectly, as being equivalent to...
440         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
441         (FILE_DEVICE_DISK): ...this.
442
443 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
444
445         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
446
447         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
448         alternative generic symbol mapping definitions, and typedefs, with...
449         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
450         their respective ANSI and UNICODE specific references.
451
452 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
453
454         Deprecate obsolete <winable.h> and <pbt.h> headers.
455
456         * Makefile.in (%.h.in): Generalize vpath definition.
457         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
458         (w32api_generated_headers, replace_headers, macro_name): New macros.
459         (install-w32api-headers): Add dependency on w32api_dist_headers.
460         (%.h): New static pattern rule; it generates generic dependants of...
461         * include/obsolete.h.in: ...this new template for obsolete headers.
462
463         * include/winable.h include/pbt.h: Delete them; they are obsolete;
464         replace them by install-time generated generic stubs.
465
466 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
467
468         Update <winuser.h> and <dbt.h>; fix issue [#2317].
469
470         * include/winuser.h: Tidy layout; add copyright notice.
471         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
472         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
473         selective inclusion of content from other headers; delete when done.
474         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
475         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
476         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
477         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
478         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
479         them selectively from <dbt.h>, where they are properly defined.
480         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
481         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
482         formerly UINT, which doesn't match 64-bit size required for Win64.
483         (SetTimer): Likewise; also declare similar return type.
484         (WINEVENTPROC): Add missing CALLBACK attribute.
485         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
486
487         * include/w32api.h (__AW_ALIAS__): New macro; define it.
488         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
489
490         * include/dbt.h: Tidy layout; add copyright notice.
491         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
492         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
493         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
494         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
495         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
496         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
497         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
498         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
499         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
500         structure typedef names, and their respectively corresponding...
501         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
502         type names.
503
504 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
505
506         Fix a minor ISO-C++11 conformity issue.
507
508         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
509         by ISO-C++11, between concatenated string literal elements.
510         (GetFiberData, NtCurrentTeb): Likewise.
511
512 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
513
514         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
515
516         * include/ddk/winddk.h: Update per issue [#2307] resolution.
517         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
518
519 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
520
521         Prepare and tag all files for release of w32api-3.18.1
522
523         * configure.ac (AC_INIT): Increment patch level to 3.18.1
524
525 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
526
527         Resolve improper macro expansion issue [#2307].
528
529         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
530         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
531         dependent macro WITHIN the expansion of each of these; hence...
532
533         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
534         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
535         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
536         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
537         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
538         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
539         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
540         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
541         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
542         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
543         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
544         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
545         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
546         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
547         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
548         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
549         ...adjust these dependent macro definitions accordingly.
550
551         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
552         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
553         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
554         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
555         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
556         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
557         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
558         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
559         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
560         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
561
562 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
563
564         Update install-sh to match mingw.org/build-aux package.
565
566         * install-sh: Delete it; use version in parent directory instead,
567         recreating local copy, (as symlink, if supported), on demand.
568
569 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
570
571         Eliminate redundant configuration files.
572
573         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
574         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
575
576         * configure.ac (AC_PROG_LN_S): Add configuration check.
577
578 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
579
580         Discard redundant config.guess and config.sub files.
581
582         * config.guess config.sub: Delete them; they are no longer required.
583         * Makefile.in (SRCDIST_ADD): Remove related references.
584
585 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
586
587         Merge recent legacy branch updates to 5.0-active branch.
588
589         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
590         * include/sdkddkver.h include/setupapi.h include/windows.h
591         * include/winnt.h include/winuser.h include/winver.h
592         * include/wtsapi32.h lib/wtsapi32.def: Updated.
593
594 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
595
596         Prepare and tag all files for release of w32api-3.18.
597
598 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
599
600         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
601
602         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
603         references from $(MAKE) command lines; make passes them implicitly.
604
605 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
606
607         Backport MemoryBarrier() implementation from 4.0-dev branch.
608
609         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
610         Earnie's original inline implementation, but declared 'static' to fix
611         issue [#1661]; it is further modified, to avoid the broken pre-Vista
612         fallback identified by issue [#2131], and to remove references to...
613         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
614         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
615         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
616         back to inline assembly code when necessary.
617
618         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
619         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
620         code, for hosts which do not support the SSE2 'mfence' instruction.
621
622 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
623
624         Merge further W32API updates from Cygwin CVS.
625         Incorporated selected changes from 2012-08-01 to 2012-08-04.
626
627         * include/setupapi.h include/winuser.h include/winver.h
628         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
629
630 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
631
632         Update mapping of GCC to MSVC host identification macros.
633
634         * include/windows.h: Assert copyright; tidy layout.
635         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
636         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
637         [!_WINSVC_H]: Do not explicitly test these here; they are properly
638         managed implicitly, by GCC, when including the associated headers.
639
640         * include/winnt.h: Assert copyright; tidy layout.
641         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
642         (__aligned__, __always_inline__, __selectany__): Prefer these...
643         (aligned, always_inline, selectany): ...to these attribute forms.
644         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
645         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
646         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
647         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
648         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
649         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
650         (_M_IX86): ...also removing this, but relocate it to...
651         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
652         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
653         appropriate.
654
655         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
656         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
657
658 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
659
660         Merge W32API updates, from Cygwin CVS, into legacy branch.
661         Incorporate changes since release of w32api-3.17, until 2012-07-06.
662
663         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
664         2012-04-28 commit to Cygwin CVS.
665
666         * include/gdiplus/gdiplustypes.h include/imagehlp.h
667         * include/routprot.h include/shlwapi.h include/userenv.h
668         * include/winbase.h include/wincon.h include/windef.h
669         * include/winerror.h include/wingdi.h include/winnt.h
670         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
671         match Cygwin CVS state, as of 2012-07-06.
672
673         * include/wincrypt.h: Updated to remove duplicate manifest constant
674         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
675         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
676         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
677         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
678         copies of these further duplicated definitions, identified during
679         the merging operation.
680
681 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
682
683         Synchronize package version management with MinGW Runtime.
684
685         * VERSION.m4: New file; link it to keep in sync with identically named
686         file in top level composite package source directory; it defines...
687         (__VERSION__): ...this new composite package version macro.
688
689         * aclocal.m4: Link it, to keep in sync with identically named files in
690         top level composite source and sibling mingwrt sub-package directories.
691         (__VERSION__): New macro; include VERSION.m4 to define it.
692         (__BUG_REPORT_URL__): New macro; define it.
693
694         * configure.ac (AC_INIT): Assign package version and bug report URL...
695         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
696         automatic inclusion of aclocal.m4
697
698         * Makefile.in (configure): Add dependency on VERSION.m4
699
700 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
701
702         Eliminate redundant <parts/winioctl.h> header.
703
704         * include/parts/winioctl.h: Delete it; distribute its content...
705         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
706         ...among these, separating it into discrete sections based on...
707         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
708         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
709         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
710         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
711
712         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
713         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
714
715 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
716
717         Enforce consistent specification of package version.
718
719         * include/w32api.h: Rename as...
720         * include/w32api.h.in: ...this build-time template file.
721         (__W32API_VERSION): Redefine it, in terms of...
722         (%PACKAGE_VERSION_LONG%): ...this substitution template.
723         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
724         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
725         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
726         (%PACKAGE_VERSION_PATCH%): ...these.
727
728         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
729         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
730         mingwrt/include/_mingw.h.in file.
731
732         * Makefile.in (all-w32api-libs): Add dependency on...
733         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
734         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
735         they apply appropriate substitutions to the renamed template files.
736         (install-w32api-headers): Explicitly add w32api.h
737
738 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
739
740         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
741
742         * include/parts/winioctl.h: New file; it provides infrastructure for
743         sharing of common code between DDK headers and primary <winioctl.h>
744         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
745         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
746         macros; they facilitate more consise expression of factored out IOCTL
747         and FSCTL macros; define them.
748
749         * include/ddk/ntddk.h: Assert copyright; tidy layout.
750         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
751         (_DDK_NTDDK_H): ...this; it provides better indication of location.
752         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
753
754         * include/ddk/winddk.h: Assert copyright; tidy layout.
755         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
756         (_DDK_WINDDK_H): ...this; it provides better indication of location.
757         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
758         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
759         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
760         (METHOD_NEITHER): Redefine as enumeration; factor it out.
761         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
762         (FILE_WRITE_ACCESS): Likewise.
763         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
764         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
765         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
766         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
767         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
768         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
769         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
770         (PPARTITION_INFORMATION_MBR): Likewise.
771         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
772         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
773         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
774         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
775         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
776         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
777         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
778         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
779         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
780         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
781         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
782         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
783         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
784         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
785         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
786         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
787         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
788         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
789         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
790         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
791         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
792         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
793         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
794         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
795         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
796         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
797         was defined only when including this enumeration from winioctl.h
798         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
799         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
800         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
801         include parts/winioctl.h
802
803         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
804         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
805         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
806         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
807         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
808         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
809         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
810         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
811         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
812         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
813         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
814         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
815         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
816         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
817         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
818
819         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
820         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
821         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
822         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
823         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
824         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
825         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
826         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
827         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
828         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
829         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
830         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
831         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
832         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
833         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
834         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
835         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
836         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
837         these macros are now defined in parts/winioctl.h; include it.
838         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
839         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
840         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
841         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
842         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
843         (VALID_NTFT): Redefine as enumeration; factor it out.
844         (IsRecognizedPartition, IsContainerPartition): Factor out.
845         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
846         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
847         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
848         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
849         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
850         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
851         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
852         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
853         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
854         (struct _PARTITION_INFORMATION): Change field data types for...
855         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
856         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
857         with Windows DDK convention, then factor out struct, together with...
858         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
859         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
860         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
861         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
862         (struct _GET_LENGTH_INFORMATION)
863         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
864         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
865         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
866         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
867         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
868         (PFORMAT_EX_PARAMETERS): Factor out.
869         (struct _REASSIGN_BLOCKS): Change field data types for...
870         (Reserved, Count): ...these fields, from WORD to USHORT, and...
871         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
872         convention, then factor out the struct definition, together with...
873         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
874         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
875         (PSET_PARTITION_INFORMATION): Factor out.
876         (struct _VERIFY_INFORMATION): Change field data type for...
877         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
878         factor out the entire struct definition, together with...
879         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
880         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
881         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
882         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
883         (PDISK_GROW_PARTITION): Factor out.
884
885         * include/winioctl.h: Assert copyright; tidy layout; incorporate
886         definitions from Windows DDK headers, by including parts/winioctl.h;
887         delete duplicate definitions already identified as having been factored
888         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
889         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
890         UCHAR, resulting in no significant changes, except that...
891         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
892         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
893         (StorageManagerName): ...these previously missing fields, originally
894         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
895         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
896
897 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
898
899         Windows application module version information API updates.
900
901         * include/winver.h: Assert copyright; tidy layout.
902         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
903         (__AW_SUFFIXED__): Use throughout, to identify generic functions
904         having both ANSI and UTF-16LE specific alternative implementations.
905         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
906         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
907         note that both are generic, with ANSI and UTF-16LE implementations,
908         but the ANSI implementations are missing from MSVCRT.DLL when...
909         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
910
911         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
912         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
913
914 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
915
916         Revert a failed experimental macro construct.
917
918         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
919         code, and doesn't work in the C preprocessor conditional context where
920         its associated constant definitions are most likely to be required.
921         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
922         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
923         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
924         now in terms of their preferred equivalents from <sdkddkver.h>
925
926 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
927
928         Code clean-up; fix MinGW-Bug [#2263].
929
930         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
931         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
932         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
933
934         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
935         style comments, using ISO-C conforming style; remove all redundant
936         parameter names from function prototype declarations, throughout.
937         (pragma GCC system_header): Remove pointless conditional guard.
938         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
939         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
940         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
941         alternatives, respectively; they offer improved self-documentation.
942         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
943         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
944         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
945         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
946         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
947         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
948         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
949         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
950         from their __AW_STRING_A__ equivalent string constant definitions.
951         (GET_ALG_CLASS): Redefine, expressing result in terms of...
952         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
953         a hexadecimal expression of the mask value over the former decimal.
954         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
955         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
956         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
957         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
958         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
959         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
960         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
961         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
962         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
963         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
964         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
965         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
966         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
967         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
968         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
969         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
970         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
971         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
972         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
973         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
974         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
975         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
976         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
977         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
978         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
979         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
980         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
981         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
982         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
983         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
984         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
985         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
986         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
987         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
988         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
989         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
990         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
991         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
992         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
993         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
994         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
995         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
996         express them in hexadecimal, in preference to original decimal form.
997         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
998         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
999         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
1000         a string literal, but was missing delimiting quotes; insert them.
1001         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
1002         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
1003         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
1004         aliases for each of the UNICODE/non-UNICODE cases respectively.
1005         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
1006         was declared as type LPTSTR, but should be type LPSTR.
1007         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
1008         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
1009         type LPSTR, but should be type LPWSTR.
1010         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
1011         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
1012         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
1013
1014 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
1015
1016         Correct defect in build system compilation rule.
1017
1018         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
1019         source file; it expands to also include prerequisite header files,
1020         which should not appear on the compilation command line.  Rewrite
1021         rule in static pattern format, and use $< instead.
1022
1023 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1024
1025         Build system corrections for GCC build time support.
1026
1027         * configure.ac (AC_PROG_CC): Don't use this; we need...
1028         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
1029         building with only a stage 1 partially built GCC installation.
1030
1031         * Makefile.in (install-headers): New make objective; map it to...
1032         (install-w32api-headers): ...this, for which it is a logical alias.
1033
1034 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1035
1036         Overhaul and streamline build system configuration.
1037
1038         * configure.in: Delete obsolete file; replace with...
1039         * configure.ac: New file; rewritten per current autoconf conventions.
1040
1041         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
1042         it now processes the entire build without using separate sub-makes.
1043
1044         * lib/Makefile.in: Sub-make configuration not required now; delete it.
1045         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
1046
1047 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1048
1049         Remove unused aclocal.m4 configuration file.
1050
1051         * aclocal.m4: Delete it; it provides no content used by this package.
1052
1053 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1054
1055         Adapt platform feature checks to NTDDI_VERSION conventions.
1056
1057         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
1058         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
1059         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
1060         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
1061         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
1062
1063         * include/w32api.h: Assert copyright; include sdkddkver.h.
1064         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
1065         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
1066         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
1067         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
1068         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
1069         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
1070         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
1071         macro definitions by long integer constants, and mark as deprecated.
1072         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
1073         mingwrt/include/_mingw.h, whence we similarly relocate...
1074         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
1075
1076         * include/windef.h: Assert copyright; include w32api.h, whence we
1077         infer default assignments, per included sdkddkver.h, for each of...
1078         (WINVER, _WIN32_WINNT): ...these; delete local defines.
1079         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
1080
1081 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1082
1083         Remove generated configure script from revision control.
1084
1085         * configure: Delete from SCM; maintainer must regenerate it, when
1086         required, as SCM will now ignore it.
1087
1088 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
1089
1090         Cosmetic adjustment to match MSDN documentation.
1091
1092         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
1093         of parameter #1 to be LPCVOID, in preference to formerly specified,
1094         and functionally equivalent, 'const LPVOID'.
1095
1096 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
1097
1098         Correct typos, as identified by issue [#1534].
1099
1100         * include/setupapi.h (SetupCancelTemporary): Should be...
1101         (SetupCancelTemporarySourceList): ...this; complete truncated name.
1102         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
1103         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
1104         (SetupQueryA, SetupQueryW): ...these respectively to...
1105         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
1106         (SetupDiGetWizardage): Misspelled; correct it to...
1107         (SetupDiGetWizardPage): ...this.
1108
1109 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1110
1111         Declare WTSVirtualChannel API functions per issue [#1342].
1112
1113         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
1114         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
1115         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
1116         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
1117         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
1118
1119         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
1120
1121 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
1122
1123         Correct MENUITEMINFO structure definition per issue [#1659].
1124
1125         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
1126         field was defined as type DWORD; correct it to type ULONG_PTR.
1127
1128 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
1129
1130         Extend visibility of winsock definitions when building Cygwin.
1131
1132         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
1133         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
1134         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
1135         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
1136         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
1137         [__INSIDE_MSYS__]: ...keep them hidden.
1138
1139         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
1140         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
1141         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
1142         [__INSIDE_MSYS__]: ...also keep them hidden.
1143
1144 2012-04-29  Jan Ringos  <tringi@users.sf.net>
1145
1146         Correct version guard for WinXP minimum requirement.
1147
1148         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
1149         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
1150         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
1151         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
1152
1153 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
1154
1155         Add missing <shobjidl.h> and associated UUID implementation.
1156
1157         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
1158         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
1159
1160 2012-03-19  Ben Greear  <greear@users.sf.net>
1161
1162         Adjust header file definition order, to fix issue [#1570].
1163
1164         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
1165         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
1166
1167 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1168
1169         Add missing return value, flagged by 'make test'.
1170
1171         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
1172         Return NO_ERROR in virtual definition.
1173
1174 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1175
1176         Remove duplicate definitions, identified by 'make test'.
1177
1178         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
1179         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
1180         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
1181         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
1182         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
1183         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
1184
1185         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
1186         correctly defined (per MSDN) in <wincrypt.h>
1187
1188 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1189
1190         Correct misuse of #ifdef, identified by 'make test'.
1191
1192         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
1193         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
1194
1195 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1196
1197         Replace more incorrectly named manifest constants.
1198
1199         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
1200         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
1201         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
1202         definitions respectively; retain for backward compatibility only.
1203
1204 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
1205
1206         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
1207
1208         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
1209
1210 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
1211
1212         Add missing MAPVK manifest constant definitions.
1213
1214         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
1215         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
1216
1217 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
1218
1219         Correct some misspelled manifest constant names.
1220
1221         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
1222         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
1223         alias to original misspelling, to maintain backward compatibility.
1224         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
1225         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
1226         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
1227         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
1228
1229 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
1230
1231         Add a missing Win2K sockets IOCTL feature.
1232
1233         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
1234
1235 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
1236
1237         Fix an incorrectly typed structure member.
1238
1239         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
1240         should be LPSTR; correct it.
1241
1242 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
1243
1244         Add another missing manifest constant definition.
1245
1246         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
1247
1248 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1249
1250         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
1251
1252         * include/windef.h (PACKED): Delete macro definition; its name is not
1253         reserved, and may thus conflict with a user defined name; replace it...
1254         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
1255         use __attribute__((packed)) directly instead.
1256
1257 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1258
1259         Fix bad typedef, per MinGW-Bug [#1529].
1260
1261         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1262         conform with MSDN reference, as identified by Safety0ff.
1263
1264 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1265
1266         Add a missing manifest constant definition.
1267
1268         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1269
1270 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1271
1272         Win2K and Vista userenv updates.
1273
1274         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1275         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1276         (ExpandEnvironmentStringsForUser): Define function aliases.
1277         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1278         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1279         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1280         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1281         (GetProfileType): Declare function prototypes.
1282         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1283         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1284         New manifest constants; define them.
1285
1286 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1287
1288         * Makefile.in: Increment CYGRELEASE to 2.
1289
1290 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1291
1292         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1293
1294 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1295
1296         * include/w32api.h: Increment version to 3.17.
1297         * Makefile.in: Ditto.
1298
1299 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1300
1301         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1302         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1303         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1304         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1305
1306 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1307
1308         * include/w32api.h: Increment version to 3.16.
1309         * Makefile.in: Ditto.
1310
1311 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1312
1313         * include/commctrl.h (NMTCKEYDOWN): Define.
1314
1315 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1316
1317         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1318         Define.
1319
1320 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1321
1322         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1323         PSAPI_WORKING_SET_INFORMATION): Define.
1324
1325 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1326
1327         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1328
1329 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1330
1331         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1332
1333 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1334
1335         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1336         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1337         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1338
1339 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1340
1341         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1342         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1343         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1344
1345 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1346
1347         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1348         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1349
1350 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1351
1352         * include/winbase.h (__MINGW_EXTENSION): Define.
1353         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1354         struct to correct issue with -std=c99.
1355
1356 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1357
1358         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1359         (TIMER_BASIC_INFORMATION): Define.
1360         (NtQueryTimer): Define.
1361         (ZwQueryTimer): Define.
1362
1363 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1364
1365         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1366
1367 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1368
1369         * include/winbase.h (GetComputerNameEx): Define.
1370
1371 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1372
1373         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1374
1375 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1376
1377         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1378         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1379         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1380         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1381         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1382         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1383         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1384         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1385         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1386
1387 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1388
1389         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1390         Add defines for backward compatibility.
1391
1392 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1393
1394         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1395         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1396         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1397         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1398         EnumResourceTypesW): Ditto.
1399         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1400
1401 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1402
1403         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1404
1405 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1406
1407         * include/bdatypes.h: Add missing semicolons.
1408
1409 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1410
1411         * include/w32api.h: Increment version to 3.15.
1412         * Makefile.in: Ditto.
1413
1414 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1415
1416         * Makefile.in: Update naming convention and compression format (lzma),
1417         leaving existing naming convention and compression format as is for Cygwin.
1418
1419 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1420
1421         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1422         STATE_SYSTEM_PROTECTED): Define.
1423
1424         Thank you to Marcus von Appen for reporting the issue.
1425
1426 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1427
1428         * include/winuser.h (CF_DIBV5): Define.
1429         (CF_MAX): Adjust accordingly.
1430
1431         Thank you to Lenard Lindstrom for reporting the issue.
1432
1433 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1434
1435         * include/sspi.h (QuerySecurityContextToken): Define.
1436         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1437
1438         Thank you to Magnus Hagander for reporting the issue.
1439
1440 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1441
1442         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1443
1444 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1445
1446         * include/shlwapi (ASSOCDATA): Update definition.
1447
1448         Thank you to Frederic Deschamps for reporting the issue.
1449
1450 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1451
1452         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1453         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1454         COPY_FILE_NO_BUFFERING): Define.
1455
1456         Thank you to Roland Schwingel for reporting the issue.
1457
1458 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1459
1460         * include/winuser.h (HHOOK): Move definition from here...
1461         * include/windef.h: ...to here, as per MSDN.
1462
1463         Thank you to Samuel Thibault for reporting the issue.
1464
1465 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1466
1467         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1468         MSDN, change return type to LPCH.
1469         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1470
1471         Thank you to Emmanuel Stapf for reporting the issue.
1472
1473 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1474
1475         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1476         * include/windowsx.h (SNDMSG): Ditto.
1477
1478 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1479
1480         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1481
1482         Thank you to Ozkan Sezer for reporting the issue.
1483
1484 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1485
1486         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1487
1488         Thank you to Chris Oldwood for reporting the issue.
1489
1490 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1491
1492         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1493
1494         Thank you to Rick Walsh for reporting the issue.
1495
1496 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1497
1498         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1499
1500 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1501
1502         * include/winbase.h (OVERLAPPED): Correct definition.
1503
1504 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1505
1506         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1507         definition.
1508
1509         Thank you to Pasi Ruokola for reporting the issue.
1510
1511 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1512
1513         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1514
1515         Thank you to cheznonnon for reporting the issue.
1516
1517 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1518
1519         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1520
1521 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1522
1523         * winnt.h: Fix several SUBLANG ID errors (ref:
1524         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1525         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1526         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1527         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1528         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1529         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
1530         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
1531         (SUBLANG_LAO_LAO): ... this.
1532         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
1533         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
1534         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
1535         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
1536         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
1537         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
1538         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
1539         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
1540         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
1541         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
1542         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
1543
1544 2010-08-24  LRN  <lrn1986@gmail.com>
1545
1546         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
1547         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
1548         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
1549         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
1550         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
1551         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
1552         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
1553         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
1554         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
1555         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
1556         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
1557         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
1558         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
1559         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
1560         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
1561         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
1562         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
1563         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
1564         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
1565         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
1566         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
1567         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
1568         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
1569         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
1570         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
1571         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
1572         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
1573         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
1574         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
1575         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
1576         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
1577         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
1578         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
1579         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
1580         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
1581         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
1582         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
1583         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
1584         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
1585         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
1586         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
1587         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
1588         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
1589         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
1590         WAVE_FORMAT_DTS2): Define.
1591         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
1592         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
1593         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
1594         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
1595         Define.
1596
1597 2010-08-23  LRN  <lrn1986@gmail.com>
1598
1599         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
1600         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
1601         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
1602         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
1603         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
1604         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
1605         GetFinalPathNameByHandleW): Define.
1606
1607 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1608
1609         * lib/CheckConflicts.sh: New file.
1610
1611 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1612
1613         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
1614         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
1615         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
1616         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
1617         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
1618         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
1619         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
1620         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
1621         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
1622         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
1623         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
1624         conflicting definition.
1625         * lib/th32.def: Remove.
1626         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
1627         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
1628         definition.
1629
1630 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1631
1632         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
1633
1634 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1635
1636         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
1637
1638 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
1639
1640         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
1641         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
1642         * include/ddk/winddk.h: Ditto.
1643
1644 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
1645
1646         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
1647         CreateSymbolicLinkA, CreateSymbolicLink): Define
1648
1649 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1650
1651         * lib/kernel32.def(FatalExit): Correct definiton.
1652
1653 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1654
1655         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
1656         from 2010-07-17 since it breaks several applications.
1657
1658 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1659
1660         * lib/kernel32.def: Regenerate using gendef.
1661
1662 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
1663
1664         * include/commctrl.h (LVIF_GROUPID): Fix definition.
1665
1666 2010-07-20  Michael James  <james.me@gmail.com>
1667
1668         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
1669
1670 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1671
1672         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
1673         definition.
1674         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
1675         NdrMarshSCtxtHdl): Ditto.
1676         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
1677         definition in favour of typedef definition.
1678
1679         Thank you to Yuta Tomino for reporting the issues.
1680
1681 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
1682
1683         * include/gdiplus.h: New file.
1684         * include/gdiplus/gdiplus.h: New file.
1685         * include/gdiplus/gdiplusbase.h: New file.
1686         * include/gdiplus/gdiplusbrush.h: New file.
1687         * include/gdiplus/gdipluscolor.h: New file.
1688         * include/gdiplus/gdipluscolormatrix.h: New file.
1689         * include/gdiplus/gdipluseffects.h: New file.
1690         * include/gdiplus/gdiplusenums.h: New file.
1691         * include/gdiplus/gdiplusflat.h: New file.
1692         * include/gdiplus/gdiplusgpstubs.h: New file.
1693         * include/gdiplus/gdiplusgraphics.h: New file.
1694         * include/gdiplus/gdiplusheaders.h: New file.
1695         * include/gdiplus/gdiplusimageattributes.h: New file.
1696         * include/gdiplus/gdiplusimagecodec.h: New file.
1697         * include/gdiplus/gdiplusimaging.h: New file.
1698         * include/gdiplus/gdiplusimpl.h: New file.
1699         * include/gdiplus/gdiplusinit.h: New file.
1700         * include/gdiplus/gdipluslinecaps.h: New file.
1701         * include/gdiplus/gdiplusmatrix.h: New file.
1702         * include/gdiplus/gdiplusmem.h: New file.
1703         * include/gdiplus/gdiplusmetafile.h: New file.
1704         * include/gdiplus/gdiplusmetaheader.h: New file.
1705         * include/gdiplus/gdipluspath.h: New file.
1706         * include/gdiplus/gdipluspen.h: New file.
1707         * include/gdiplus/gdipluspixelformats.h: New file.
1708         * include/gdiplus/gdiplusstringformat.h: New file.
1709         * include/gdiplus/gdiplustypes.h: New file.
1710         * lib/gdiplus.c: New file containing GDI+ variable definitions
1711         and GUIDs.
1712         * lib/gdiplus.def: New file.
1713         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
1714         add gdiplus.c to SOURCES.
1715         * lib/test.c: Include gdiplus.h.
1716
1717 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
1718
1719         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
1720         GetPerformanceInfo): Define.
1721         * lib/psapi.def (GetPerformanceInfo): Define.
1722         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
1723         CryptEnumProviders): Define.
1724
1725 2010-02-17  LRN  <lrn1986@gmail.com>
1726
1727         * include/shlguid.h (IID_IFolderView): Define.
1728         * include/shlobj.h (IFolderView interface): Define.
1729         * lib/shell32.c (IID_IFolderView): Export.
1730
1731 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1732
1733         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
1734         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
1735
1736 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1737
1738         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
1739
1740 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1741
1742         * include/shlobj.h (SHParseDisplayName): Fix definition.
1743
1744 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1745
1746         * include/w32api.h: Increment version to 3.14.
1747         * Makefile.in: Ditto.
1748
1749 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1750
1751         * include/shlobj.h (SHParseDisplayName): Define.
1752
1753         Thanks to James Roberts-Thomson for the report.
1754
1755 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1756
1757         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
1758
1759         Thanks to Alexander Vassilev for the report.
1760
1761 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1762
1763         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
1764
1765         Thanks to Thomas Denk for the report.
1766
1767 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1768
1769         * include/winbase.h (UnmapViewOfFile): Correct definition.
1770
1771         Thanks to Dimitry Sibiryakov for the report.
1772
1773 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
1774
1775         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
1776
1777 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
1778
1779         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
1780         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
1781
1782 2009-20-10  Michael James  <james.me@gmail.com>
1783
1784         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
1785         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
1786         >= 0x0501.
1787         (WM_UNICHAR,UNICODE_NOCHAR): Define.
1788         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
1789         RemoveWindowSubclass@12): Add exports.
1790         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
1791
1792 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
1793
1794         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
1795         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
1796         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
1797         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
1798         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
1799         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
1800         RegisterTouchWindow, UnregisterTouchWindow): Define.
1801         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
1802         RegisterTouchWindow, UnregisterTouchWindow): Define.
1803
1804 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
1805
1806         * include/winver.h (VerQueryValue[AW]): Correct definition.
1807
1808 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1809
1810         * include/shlobj.h (SHARD): Add enum.
1811         (SHARD_PATH): Define based on UNICODE.
1812
1813         Thanks to Jacek Caban for the report.
1814
1815 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1816
1817         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
1818
1819         Thanks to Bruno Martinez for the report.
1820
1821 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1822
1823         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
1824         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
1825         SHGetIconOverlayIndex): Define.
1826
1827         Thanks to Tim Kosse for the report.
1828
1829 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1830
1831         * include/wincon.h (AttachConsole): Correct guard.
1832
1833         Thanks to Alexander Shaduri for the report.
1834
1835 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
1836
1837         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
1838         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
1839
1840 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
1841
1842         * include/winerror.h: Fix typos in macro names.
1843
1844 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
1845
1846         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
1847         definition.
1848
1849 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1850
1851         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
1852
1853 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
1854
1855         Honor DESTDIR for winsup/mingw and winsup/w32api.
1856         Detect and report error if installation paths are win32
1857         format, but DESTDIR is non-empty.
1858
1859         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
1860         when invoking make in subdirs.
1861         * lib/Makefile.in (DESTDIR): Honor per convention.
1862         (need-DESTDIR-compatibility): New macro; define it and a
1863         corresponding rule.
1864         (fail-DESTDIR-compatibility): New dependency goal.
1865         (install-libraries, install-headers, uninstall-libraries,
1866         uninstall-headers): Require need-DESTDIR-compatibility.
1867         * lib/ddk/Makefile.in: Ditto.
1868         * lib/directx/Makefile.in: Ditto.
1869
1870 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
1871
1872         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
1873         _WIN32_WINNT >= 0x0500.
1874         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
1875         WRITE_RESTRICTED): Define.
1876         (IsTokenRestricted): Declare for >= Win 2000.
1877
1878 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1879
1880         * include/wtsapi32.h (WTSQuerySessionInformationA,
1881         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
1882         Moved to (_WIN32_WINNT >= 0x0500) guard.
1883         (thanks to Pierre Ossman)
1884
1885 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
1886
1887         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
1888         IS_SURROGATE_PAIR): Define.
1889
1890 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
1891
1892         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
1893         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
1894         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
1895         * include/ddk/ntifs.h: Ditto.
1896         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
1897
1898 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
1899
1900         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
1901         from here...
1902         * lib/gdo32.dll: ...to here.
1903
1904 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
1905
1906         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
1907         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
1908         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
1909         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
1910         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
1911         entry points.
1912
1913 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
1914
1915         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
1916         WTSEnumerateSessionsA): Add function prototypes.
1917         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
1918         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
1919         defines dependent on UNICODE setting.
1920
1921 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
1922
1923         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
1924         and vice versa.
1925         * include/ddk/ntifs.h: Ditto.
1926         * include/ddk/winddk.h: Ditto.
1927         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
1928         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
1929         in header, but missing in lib.  Omit NT4-only entry points.
1930
1931 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1932
1933         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
1934         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
1935         * lib/shell32.def (SHGetImageList): Define.
1936
1937 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
1938
1939         * winnt.h: Add Vista token security extensions.
1940         (SID_HASH_SIZE): Define.
1941         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
1942         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
1943         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
1944         (SID_HASH_ENTRY): Define.
1945         (struct _SID_AND_ATTRIBUTES_HASH): Define.
1946         (struct _TOKEN_LINKED_TOKEN): Define.
1947         (struct _TOKEN_MANDATORY_LABEL): Define.
1948         (struct _TOKEN_MANDATORY_POLICY): Define.
1949         (struct _TOKEN_ELEVATION): Define.
1950         (struct _TOKEN_ACCESS_INFORMATION): Define.
1951         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
1952         information enumeration values.
1953
1954 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
1955
1956         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
1957         from ddk/ntifs.h.
1958
1959 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
1960
1961         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
1962
1963 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
1964
1965         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
1966
1967 2009-01-11  Henry Nestler  <henry@bigfoot.de>
1968
1969         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
1970         NtSetEaFile.
1971
1972 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
1973
1974         * include/winbase.h (SCS_64BIT_BINARY): Define.
1975
1976 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1977
1978         * include/w32api.h: Increment version to 3.13.
1979         * Makefile.in: Ditto.
1980
1981 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1982
1983         * lib/glut.def: remove.
1984         * lib/glut32.def: ditto.
1985
1986 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
1987
1988         * include/winbase.h (PROCESS_DEP_ENABLE,
1989         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
1990         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
1991         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
1992
1993 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1994
1995         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
1996
1997 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1998
1999         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
2000
2001 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2002
2003         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
2004
2005 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2006
2007         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2008         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2009         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2010         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2011         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2012         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2013         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2014         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2015         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2016         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2017         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2018         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2019         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2020         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2021         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2022         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2023         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2024         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2025         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2026         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2027         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2028         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2029         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2030         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
2031         (capSendMessage): Don't undef.
2032
2033 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2034
2035         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
2036         undefined.
2037
2038 2008-09-13  mega-squall  <mega-squall@users.sf.net>
2039
2040         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
2041         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
2042         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
2043         SUBLANG_ROMANIAN_MOLDOVA): Define.
2044
2045 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2046
2047         * include/shlwapi.h (ASSOCSTR): Update enum.
2048
2049 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2050
2051         * include/w32api.h: Increment version to 3.12.
2052         * Makefile.in: Ditto.
2053
2054 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
2055
2056         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
2057
2058 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
2059
2060         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
2061
2062 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2063
2064         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
2065         Thanks to Richard Hughes for report.
2066
2067 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2068
2069         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
2070         naming standard for Cygwin.
2071
2072 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
2073
2074         * include/sspi.h: Fix PSecurityFunctionTableW structure.
2075
2076 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2077
2078         * include/ddk/scsi.h: Define READ_TOC formats.
2079         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
2080
2081 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2082
2083         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
2084         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
2085         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
2086         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
2087         NdisMCancelTimer): Define.
2088         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
2089         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
2090         eliminate warnings.
2091         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
2092         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
2093         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
2094         Export.
2095
2096 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2097
2098         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
2099         RtlStringCbVPrintfA): define in terms of POSIX string functions.
2100
2101 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2102
2103         * include/ddk/winddk.h (KeRaiseIrql): Define.
2104         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
2105
2106 2008-08-29  Andy Grover  <andy.grover@oracle.com>
2107
2108         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
2109         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
2110         (InterlockedIncrement, InterlockedDecrement): fix warning.
2111         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
2112         (KeNumberProcessors): Export.
2113
2114 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2115
2116         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
2117         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
2118         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
2119         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
2120         ASSOCF_INIT_IGNOREUNKNOWN): Define.
2121
2122 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2123
2124         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
2125
2126         Thanks to Tim Kosse <botg at users dot sf dot net>.
2127
2128 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
2129
2130         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2131         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
2132         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
2133         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
2134         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
2135         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
2136         PROTECTED_DACL_SECURITY_INFORMATION): Define.
2137
2138 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2139
2140         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
2141         WTSQuerySessionInformation, WTSFreeMemory): Define.
2142
2143 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2144
2145         * lib/gdi32.def (SetLayout): Export.
2146
2147 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
2148
2149         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
2150         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
2151         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
2152         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
2153         CertSetCertificateContextProperty, CertCompareCertificateName,
2154         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
2155         CryptGetDefaultProviderW and many corresponding macroes): Define.
2156         * lib/crypt32.def (Export the above 11 functions): Export.
2157         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
2158         macroes): Define.
2159
2160
2161 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2162
2163         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
2164         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
2165
2166 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
2167
2168         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
2169
2170 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
2171
2172         * include/lmaccess.h (struct _USER_INFO_4): Define.
2173         (struct _USER_INFO_23): Define.
2174         (struct _GROUP_INFO_3): Define.
2175
2176 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
2177
2178         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
2179         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
2180         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
2181         MIB_TCP6TABLE_OWNER_PID): Define.
2182         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
2183
2184 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2185
2186         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
2187         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
2188         of 0x0502.
2189         Bug reported by Thomas Denk.
2190
2191 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
2192
2193         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
2194         InterlockedCompareExchange, InterlockedExchange,
2195         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
2196         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
2197         Bug reported by Erik Blake.
2198
2199 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
2200
2201         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
2202         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
2203         Bug reported by Brian Hawley.
2204
2205 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
2206
2207         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
2208         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
2209         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
2210         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
2211         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
2212         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
2213         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
2214         (DsGetDcNameW, DsGetDcNameA): Declare.
2215         (DsGetDcName): Define.
2216         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
2217
2218 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2219
2220         * include/commctrl.h (NMLVODSTATECHANGE): Define.
2221
2222         Thanks to Tim Kosse <botg at users dot sf dot net>.
2223
2224 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2225
2226         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
2227
2228         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
2229
2230 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
2231
2232         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
2233         (FILE_SUPPORTS_TRANSACTIONS): Define.
2234
2235 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
2236
2237         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
2238         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
2239
2240 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
2241
2242         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
2243         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
2244         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
2245         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
2246         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
2247         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
2248         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
2249         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
2250         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
2251         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
2252         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
2253         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
2254         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
2255         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
2256         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
2257         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
2258         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2259         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2260         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2261         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2262         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2263         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2264         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2265         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2266         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2267         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2268         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2269         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2270         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2271         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2272         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2273         capDriverConnect, capDriverDisconnect, capDriverGetName,
2274         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2275         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2276         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2277         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2278         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2279         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2280         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2281         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2282         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2283         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2284         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2285         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2286         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2287         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2288         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2289
2290 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2291
2292         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2293         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2294         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2295         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2296         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2297         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2298         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2299         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2300         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2301         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2302         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2303         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2304         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2305         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2306         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2307         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2308         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2309         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2310         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2311         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2312         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2313         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2314         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2315         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2316         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2317         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2318         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2319         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2320         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2321         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2322         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2323         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2324         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2325         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2326         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2327         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2328         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2329         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2330         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2331         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2332         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2333         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2334         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2335         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2336         *SpUserModeInitializeFn): Define.
2337         * include/sspi.h (SECURITY_STRING): Define.
2338
2339 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2340
2341         * include/specstrings.h: Add more dummy defines.
2342
2343 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2344
2345         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2346         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2347         (SECURITY_MANDATORY_LOW_RID): Define.
2348         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2349         (SECURITY_MANDATORY_HIGH_RID): Define.
2350         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2351         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2352         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2353         (SE_GROUP_INTEGRITY): Define.
2354         (SE_GROUP_INTEGRITY_ENABLED): Define.
2355
2356 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2357
2358         * include/sddl.h (ConvertStringSidToSidA): Declare.
2359         (ConvertStringSidToSidW): Declare.
2360         (ConvertStringSidToSid): Define.
2361
2362 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2363
2364         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2365         and MPR_INTERFACE_3 structure since they are available only in Windows
2366         Server 2008
2367
2368         Thanks to crackedmind  <crackedmind at sf dot net>.
2369
2370 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2371
2372         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2373         definitions.
2374         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2375
2376 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2377
2378         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2379
2380 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2381
2382         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2383         * include/windef.h (IN, OUT, OPTIONAL): Define.
2384
2385 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2386
2387         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2388         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2389         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2390         __out_bcount_opt): Move to specstrings.h.
2391
2392 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2393
2394         * lib/bthprops.def: new file, bluetooth imports.
2395
2396 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2397
2398         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2399         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2400         __out_bcount_opt): Defined additional pseudo-modifiers.
2401
2402 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2403         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2404         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2405         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2406         dwRedialPause.
2407
2408 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2409
2410         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2411         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2412         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2413         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2414         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2415         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2416         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2417         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2418         * include/winuser.h (RegisterPowerSettingNotification,
2419         UnregisterPowerSettingNotification): Add prototypes.
2420         * lib/user32.def: Added imports for the above prototypes.
2421         * lib/Makefile.in: Added build support for power-uuid.c.
2422         * lib/power-uuid.c: New file containing power GUID definitions.
2423
2424 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2425
2426         * include/ras.h (RAS_MaxDnsSuffix): define.
2427
2428 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2429
2430         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2431         Add prototypes.
2432         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2433         Add exports.
2434
2435 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2436
2437         * include/w32api.h: Increment version to 3.11.
2438         * Makefile.in: Ditto.
2439
2440 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2441
2442         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2443         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2444
2445 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2446
2447         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2448
2449 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2450
2451         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2452         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2453
2454 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2455
2456         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2457
2458 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2459
2460         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2461         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2462         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2463         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2464         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2465         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2466         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2467         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2468         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2469         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2470         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2471         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2472         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2473         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2474         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2475         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2476         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2477         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2478         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2479         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2480         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2481         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2482         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2483         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2484         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2485         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2486         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2487         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2488         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2489         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2490         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2491         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2492         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2493         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2494         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2495         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2496         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2497         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2498         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2499         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2500         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2501         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2502         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2503         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2504         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2505         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2506         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2507         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2508         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2509         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2510         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2511         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2512         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2513         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2514         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2515         CryptEncodeObjectEx): define.
2516
2517 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2518
2519         * include/winbase.h (CheckTokenMembership): define.
2520
2521 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2522
2523         * include/rpcndr.h: Missing NdrClientCall2 entry.
2524         * lib/rpcrt4.def: Ditto.
2525
2526 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2527         * lib/scnsave.c: Multi-monitor support.
2528
2529 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2530
2531         * include/w32api.h: Increment version to 3.10.
2532         * Makefile.in: Ditto.
2533
2534 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
2535
2536         * include/winbase.h (ReOpenFile): Add prototype.
2537         * lib/kernel32.def (ReOpenFile@16): Add export.
2538
2539 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2540
2541         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
2542
2543 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
2544
2545         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
2546         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
2547
2548 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2549
2550         * include/wtypes.h (LPDECIMAL): Define.
2551         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
2552
2553 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
2554
2555         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
2556
2557 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
2558
2559         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
2560         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
2561
2562 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2563
2564         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
2565         Define.
2566
2567 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2568
2569         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
2570         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
2571         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
2572         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
2573         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
2574         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
2575         Sync with include/pbt.h.
2576
2577 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2578
2579         [mingw-Bugs-1751518]
2580         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
2581         get_URL.
2582
2583         [mingw-Bugs-1751565]
2584         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
2585
2586         [mingw-Bugs-1751595]
2587         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
2588         methods.
2589
2590         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2591
2592 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
2593
2594         [mingw-Bugs-1750898]
2595         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
2596         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2597
2598 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
2599
2600         [mingw-Bugs-1749305]
2601         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
2602
2603 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
2604
2605         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
2606
2607 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
2608
2609         * include/oaidl.h: Include windows.h and ole2.h,
2610         unless COM_NO_WINDOWS_H.
2611
2612         [mingw-Bugs-1742130]
2613         * include/oaidl.h (struct tagVARIANT): Add union members
2614         LONGLONG  * pllVal and ULONGLONG * pullVal.
2615
2616 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
2617
2618         * include/ws2tcpip.h (s6_addr32): Correct definition.
2619         Thanks to Alfred E. Heggestad <aeh at db dot org>
2620
2621 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2622
2623         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
2624
2625         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
2626         supplying the information.
2627
2628 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2629
2630         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
2631
2632 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2633
2634         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
2635         Vista.
2636
2637 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
2638
2639          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
2640         CRYPTPROTECT_LOCAL_MACHINE): Define.
2641
2642 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
2643
2644         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
2645         Define.
2646
2647 2007-03-30  Brian Dessent  <brian@dessent.net>
2648
2649         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
2650
2651 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2652
2653         * include/w32api.h: Increment version to 3.9.
2654         * Makefile.in: Ditto.
2655
2656 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
2657
2658         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
2659
2660 2007-03-23  Matthew Gregan  <kinetik@flim.org>
2661
2662         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
2663
2664 2007-03-06  Brandon Sneed  <brandon@oqo.com>
2665
2666         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
2667         Added SetupConfigureWmiFromInfSectionW
2668         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
2669
2670         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
2671
2672         * include/winuser.h: Added PBT_APMQUERYSUSPEND
2673         Added PBT_APMQUERYSTANDBY
2674         Added PBT_APMQUERYSUSPENDFAILED
2675         Added PBT_APMQUERYSTANDBYFAILED
2676         Added PBT_APMSUSPEND
2677         Added PBT_APMSTANDBY
2678         Added PBT_APMRESUMECRITICAL
2679         Added PBT_APMRESUMESUSPEND
2680         Added PBT_APMRESUMESTANDBY
2681         Added PBT_APMBATTERYLOW
2682         Added PBT_APMPOWERSTATUSCHANGE
2683         Added PBT_APMOEMEVENT
2684         Added PBT_APMRESUMEAUTOMATIC
2685
2686         * include/wtsapi32.h: New file
2687
2688         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
2689
2690 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2691
2692         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
2693         argument to constant.
2694
2695 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
2696
2697         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
2698         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
2699         Add prototypes.
2700         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
2701
2702 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
2703
2704         * lib/user32.def (InternalGetWindowText): Add stub.
2705
2706 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
2707
2708         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
2709         LANG_BOSNIAN_NEUTRAL): Define.
2710
2711 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
2712
2713         * include/winuser.h: Add guards around TITLEBARINFO and
2714         GetTitleBarInfo().
2715
2716 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
2717
2718         * include/winbase.h (struct _OVERLAPPED): Change type of
2719         Internal, InternalHigh members to ULONG_PTR.
2720         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
2721         (CreateIoCompletionPort): Likewise.
2722         (PostQueuedCompletionStatus): Likewise.
2723         (QueueUserAPC): Likewise.
2724
2725 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
2726
2727         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
2728         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
2729         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
2730         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
2731         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
2732         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
2733         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
2734         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
2735         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
2736         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
2737
2738 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
2739
2740         * Makefile.in: Add aclocal.m4 to source release.
2741
2742 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2743
2744         * include/w32api.h: Increment version to 3.8.
2745         * Makefile.in: Ditto.
2746
2747 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
2748
2749         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
2750         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
2751
2752         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
2753
2754 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
2755
2756         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
2757
2758         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
2759         inline static.
2760         (GetFiberData): Likewise.
2761         * lib/kernel32.c: Remove.
2762         * lib/Makefile.in: Remove reference to kernel32.[co].
2763
2764 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2765
2766         * include/winnt.h (SE_RELABEL_NAME): Define.
2767         (SE_INCREASE_WORKING_SET_NAME): Define.
2768         (SE_TIME_ZONE_NAME): Define.
2769         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
2770
2771 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2772
2773         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
2774         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
2775         SymbolicLinkReparseBuffer substructure.
2776
2777 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
2778
2779         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
2780
2781 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2782
2783         * lib/Makefile.in: Fix order for 'all' rule.
2784
2785 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
2786
2787         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
2788
2789 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
2790
2791         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
2792         mappings.
2793         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
2794         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
2795
2796 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
2797
2798         * include/rpc.h: Add whitespace.
2799         * include/winnt.h (C_ASSERT): Define.
2800
2801 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
2802
2803         [mingw-Bugs-1568067]
2804         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
2805         * include/wingdi.h: (DM_POSITION): Define.
2806
2807 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
2808
2809         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
2810         * lib/user32.def: Likewise.
2811
2812 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2813
2814         * lib/Makefile.in: fix typo.
2815         * lib/ddk/Makefile.in: fix typo.
2816         * lib/directx/Makefile.in: fix typo.
2817
2818         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
2819         for pointing it out.
2820
2821 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2822
2823         * Makefile.in: Remove files from lib directory with distclean target
2824
2825 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2826
2827         * include/winuser.h (CS_DROPSHADOW): Define.
2828
2829 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
2830
2831         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
2832         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
2833         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
2834         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
2835
2836         Increase each constant by 1.
2837
2838 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2839
2840         [mingw-Bugs-1553275]
2841         * include/wingdi.h (SetLayout): Add prototype.
2842         (GetLayout): Likewise.
2843
2844 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
2845
2846         [mingw-Bugs-1550139]
2847         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
2848         Tanks to:  Samit Basu <samitbasu at sf dot net>
2849         (GetRecordInfoFromGuids): Add prototype.
2850
2851 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
2852
2853         * include/winbase.h: Add comment about 'missing' SEM flag.
2854
2855 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
2856
2857         * configure.in: Substitute with_cross_host in depending files.
2858         * configure: Regenerate.
2859         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
2860         Set installation directories accordingly.
2861         * lib/ddk/Makefile.in: Ditto.
2862         * lib/directx/Makefile.in: Ditto.
2863
2864 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
2865
2866         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
2867         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
2868         Bug reported by: <macleone at users dot sf dot net>
2869
2870 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
2871
2872         Update some more IMAGE relocation type indicators
2873         to PECOFF v8 (May, 2006) specs.
2874
2875         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
2876         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
2877         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
2878         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
2879         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
2880         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
2881         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
2882         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
2883         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
2884         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
2885         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
2886         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
2887         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
2888         IMAGE_REL_SHM_NOMODE): Add defines.
2889
2890         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
2891         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
2892         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
2893         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
2894         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
2895         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
2896         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
2897         IMAGE_REL_M32R_TOKEN): Add defines.
2898
2899         (IMAGE_REL_MIPS_JMPADDR16): Add define.
2900
2901 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
2902
2903         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
2904         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
2905         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
2906         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
2907         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
2908         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
2909         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
2910         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
2911         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
2912         Add defines.
2913
2914         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
2915         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
2916         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
2917         Add defines.
2918
2919         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
2920
2921         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
2922         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
2923         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
2924         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
2925         IMAGE_DLLCHARACTERISTICS_NO_BIND,
2926         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
2927
2928         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
2929
2930         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
2931         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
2932         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
2933         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
2934         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
2935         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
2936         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
2937         Add defines.
2938
2939         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
2940         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
2941         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
2942         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
2943         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
2944         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
2945         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
2946         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
2947         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
2948         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
2949         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
2950         IMAGE_REL_IA64_ADDEND): Add defines.
2951
2952         (IMAGE_SCN_GPREL): Add define.
2953
2954 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2955
2956         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
2957         * include/basetyps.h:  Likewise.
2958         (_COM_interface): New define.
2959         (interface): Define to _COM_interface, conditional on !__OBJC__.
2960         Replace 'interface' with '_COM_interface', throughout.
2961         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
2962         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
2963         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
2964         * include/mshtml.h: Likewise.
2965         * include/oaidl.h: Likewise.
2966         * include/objfwd.h: Likewise.
2967         * include/objidl.h: Likewise.
2968         * include/ocidl.h: Likwise.
2969         * include/olectl.h: Likewise.
2970         * include/oleidl.h: Likewise.
2971         * include/shlobj.h: Likewise.
2972         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
2973         * include/vfw.h: Likewise.
2974         * include/windows.h. Likewise. Add comment.
2975         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
2976         throughout.
2977
2978         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
2979         Add test for conflict with '@interface'
2980
2981 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
2982
2983         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
2984         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
2985         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
2986         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
2987         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
2988         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
2989         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
2990         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
2991         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
2992         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
2993         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
2994         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
2995         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
2996         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
2997         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
2998         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
2999         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
3000         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
3001         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
3002         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
3003         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
3004         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
3005         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
3006         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
3007         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
3008         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
3009         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
3010         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
3011         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
3012         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
3013         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
3014         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
3015         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
3016         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
3017         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
3018         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
3019         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
3020         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
3021         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
3022         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
3023         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
3024         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
3025         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
3026         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
3027         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
3028         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
3029         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
3030         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
3031         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
3032         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
3033         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
3034         CertDeleteCertificateFromStore): Define.
3035         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
3036         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
3037         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
3038         CertAddCertificateContextToStore, CertCompareCertificate,
3039         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
3040         Define.
3041
3042 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3043
3044         * lib/uuid.c: Remove.
3045
3046 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
3047
3048         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
3049         declarations. They were extracted from the registry with a script.
3050         * lib/devguid.c: Add new file with the implementation of the
3051         missing GUIDs.
3052         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
3053
3054 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
3055
3056         * include/winuser.h (WM_INPUT): Add missing Raw Input
3057         notification define.
3058         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
3059         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
3060
3061 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
3062
3063         [mingw-Bugs-1525021]
3064         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
3065         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
3066         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
3067         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
3068         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
3069         (IP_ADAPTER_ADDRESSES): Likewise.
3070
3071 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3072
3073         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3074         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3075         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
3076         extras-uuid.c.
3077         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
3078         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
3079         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
3080         * lib/hlguids-uuid.c: State source of CLSIDs.
3081
3082 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3083
3084         * lib/Makefile.in: Added extras-uuid as an object and source.
3085         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
3086         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
3087         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
3088         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
3089         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
3090         * lib/extras-uuid.c: New file.
3091         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3092         net).
3093
3094 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
3095
3096         [mingw-Bugs-1424461]
3097         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
3098         throughout.
3099         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
3100         _NO_W32_PSEUDO_MODIFIERS.
3101         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
3102         throughout.
3103         *include/rpcnsip.h: Likewise.
3104         *include/windef.h: Don't define IN, OUT or OPTIONAL
3105         if _NO_W32_PSEUDO_MODIFIERS.
3106         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
3107         throughout.
3108         *include/ddk/cfgmgr32.h: Likewise.
3109         *include/ddk/ddkmapi.h: Likewise.
3110         *include/ddk/hidclass.h: Likewise.
3111         *include/ddk/hidpi.h: Likewise.
3112         *include/ddk/kbdmou.h: Likewise.
3113         *include/ddk/mcd.h: Likewise.
3114         *include/ddk/miniport.h: Likewise.
3115         *include/ddk/minitape.h: Likewise.
3116         *include/ddk/ndis.h: Likewise.
3117         *include/ddk/ndistapi.h: Likewise.
3118         *include/ddk/ndiswan.h: Likewise.
3119         *include/ddk/ntapi.h: Likewise.
3120         *include/ddk/ntdd8042.h: Likewise.
3121         *include/ddk/ntddpcm.h: Likewise.
3122         *include/ddk/ntifs.h: Likewise.
3123         *include/ddk/ntpoapi.h: Likewise.
3124         *include/ddk/parallel.h: Likewise.
3125         *include/ddk/pfhook.h: Likewise.
3126         *include/ddk/scsiwmi.h: Likewise.
3127         *include/ddk/smbus.h: Likewise.
3128         *include/ddk/srb.h: Likewise.
3129         *include/ddk/storport.h: Likewise.
3130         *include/ddk/tdikrnl.h: Likewise.
3131         *include/ddk/upssvc.h: Likewise.
3132         *include/ddk/usbcamdi.h: Likewise.
3133         *include/ddk/usbscan.h: Likewise.
3134         *include/ddk/video.h: Likewise.
3135         *include/ddk/videoagp.h: Likewise.
3136         *include/ddk/win2k.h: Likewise.
3137         *include/ddk/winddi.h: Likewise.
3138         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
3139         if _NO_W32_PSEUDO_MODIFIERS.
3140         Comment out IN, OUT and OPTIONAL, throughout.
3141         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
3142         throughout.
3143         *include/ddk/ws2san.h: Likewise.
3144
3145 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3146
3147         * lib/Makefile.in:  Added hlguids-uuid as source and object.
3148
3149 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3150
3151         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
3152         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
3153         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
3154         * lib/hlguids-uuid.c: New file.
3155         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
3156         net).
3157
3158 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3159
3160         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
3161         objects.
3162         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
3163         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
3164         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
3165         IID_IHlinkTarget): Remove.  Moved to new files.
3166         * lib/urlmon-uuid.c: New file.
3167         * lib/hlink-uuid.c: New file.
3168
3169 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3170
3171         * lib/Makefile.in: Added ativscp-uuid as source and object.
3172         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
3173         IID_IActiveScriptParse, IID_IActiveScriptSite,
3174         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
3175         * lib/ativscp-uuid.c: New file.
3176
3177 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3178
3179         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
3180         Remove.  Moved to objidl-uuid.c
3181         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
3182         IID_IServerSecurity): Defined.
3183
3184 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3185
3186         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
3187         objects.
3188         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
3189         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
3190         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
3191         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
3192         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
3193         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
3194         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
3195         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
3196         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
3197         files.
3198         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
3199         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
3200         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
3201         * lib/cguid-uuid.c: New file.
3202         * lib/olectlid-uuid.c: New file.
3203
3204 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3205
3206         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
3207         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
3208         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
3209         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
3210         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
3211         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
3212         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
3213         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
3214         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
3215         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
3216         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
3217         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
3218         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
3219         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
3220         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
3221         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
3222         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
3223         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
3224         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
3225         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
3226         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
3227         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
3228         * lib/comcat-uuid.c: New file.
3229         * lib/docobj-uuid.c: New File.
3230         * lib/exdisp-uuid.c: New file.
3231         * lib/mlang-uuid.c: New file.
3232         * lib/oaidl-uuid.c: New file.
3233         * lib/objidl-uuid.c: New file.
3234         * lib/objsafe-uuid.c: New file.
3235
3236 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3237
3238         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
3239         objects.
3240         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
3241         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
3242         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
3243         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
3244         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
3245         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
3246         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
3247         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
3248         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
3249         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
3250         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
3251         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
3252         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
3253         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
3254         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
3255         IID_ISpecifyPropertyPages): Remove. Moved to new files.
3256         * lib/oleidl-uuid.c: New file.
3257         * lib/oleacc-uuid.c: New file.
3258         * lib/ocidl-uuid.c: New file.
3259
3260 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3261
3262         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3263         objects.
3264         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3265         Remove.  Moved to unknwn-uuid and servprov-uuid.
3266         * lib/unknwn-uuid.c: New file.
3267         * lib/servprov-uuid.c: New file.
3268
3269 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3270
3271         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3272         enum.
3273
3274 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3275
3276         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3277
3278 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3279
3280         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3281         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3282         wingdi.h defines.
3283
3284 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3285
3286         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3287         duplicate defines.
3288
3289         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3290         removal.
3291         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3292
3293 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3294
3295         * configure.in: Update to newer autoconf.
3296         (thanks to Steve Ellcey)
3297         * configure: Regenerate.
3298         * aclocal.m4: New file.
3299
3300 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3301
3302         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3303
3304 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3305
3306         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3307         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3308         as macros.
3309         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3310
3311 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3312
3313         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3314         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3315         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3316         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3317         (MprAdminMIBSetTrapInfo): Declare functions.
3318         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3319         (MIB_SERVER_HANDLE): New typedef.
3320         (MprConfigTransportSetInfo): Declare function.
3321         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3322         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3323
3324 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3325
3326         * lib/rtutils.def: New file. Generated on Windows XP.
3327         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3328         * include/rtutils.h: New file.
3329         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3330         Commented out, they're missing from rtutils.def.
3331
3332 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3333
3334         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3335         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3336         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3337         (MprInfoRemoveAll): Declare functions.
3338
3339 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3340
3341         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3342         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3343         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3344         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3345         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3346         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3347         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3348         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3349         (MprConfigServerConnect,MprConfigServerDisconnect)
3350         (MprConfigServerGetInfo,MprConfigServerInstall)
3351         (MprConfigServerRestore,MprConfigTransportCreate)
3352         (MprConfigTransportDelete,MprConfigTransportEnum)
3353         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3354         (MprConfigTransportSetInfo): Declare functions.
3355
3356 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3357
3358         * include/mprapi.h (MprAdminBufferFree)
3359         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3360         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3361         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3362         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3363         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3364         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3365         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3366         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3367         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3368         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3369         (MprAdminInterfaceTransportSetInfo)
3370         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3371         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3372         (MprAdminServerConnect,MprAdminServerDisconnect)
3373         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3374         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3375         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3376
3377 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3378
3379         * include/ipxtfflt.h: New file.
3380
3381 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3382
3383         * include/mprapi.h: Fix header guard. Cleanup.
3384         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3385         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3386         (MprAdminConnectionHangupNotification)
3387         (MprAdminConnectionHangupNotification2)
3388         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3389         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3390         (MprAdminReleaseIpAddress): Declare functions.
3391         * lib/mprapi.def: Regenerate on Windows XP.
3392
3393 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3394
3395         * include/ipifcons.h: Cleanup.
3396         * include/ipxconst.h: Fix header guard.
3397         * include/ipxrtdef.h: include <ipxconst.h>.
3398
3399 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3400
3401         * include/ipxrtdef.h: Cleanup.
3402         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3403         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3404         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3405         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3406         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3407         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3408         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3409         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3410         * include/routprot.h: Cleanup.
3411         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3412         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3413         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3414         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3415         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3416         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3417         * include/fltdefs.h: New file.
3418         * include/ipinfoid.h: New file.
3419
3420 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3421
3422         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3423         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3424         (IAMCertifiedOutputProtection): Add interfaces.
3425         * include/adsprop.h: New file.
3426         * include/cmnquery.h: New file.
3427         * include/dsadmin.h: New file.
3428         * include/dsclient.h: New file.
3429         * include/dsgetdc.h: New file.
3430         * include/dsquery.h: New file.
3431         * include/dsrole.h: New file.
3432         * include/ntdsapi.h: New file.
3433         * include/ntdsbcli.h: New file.
3434         * include/objsel.h: New file.
3435
3436 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3437
3438         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3439         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3440         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3441         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3442         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3443         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3444         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3445         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3446
3447 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3448
3449         * include/qedit.h: New file.
3450         * include/errors.h: Cleanup.
3451
3452 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3453
3454         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3455         avoid dependency on <string.h>.
3456         There's no Win32 equivalent for memcmp:
3457         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3458
3459 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3460
3461         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3462         instead of memset to avoid dependency on <string.h>.
3463         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3464         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3465         (AM_WST_STYLE): Add enums.
3466         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3467         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3468         structures.
3469         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3470         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3471         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3472         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3473         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3474         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3475         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3476         (VFW_E_DVD_NO_RESUME_INFORMATION)
3477         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3478         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3479         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3480         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3481         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3482         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3483         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3484         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3485         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3486         * include/strmif.h: ... to here. New file.
3487         * include/aviriff.h: New file.
3488         * include/bdatypes.h: New file.
3489         * include/control.h: New file.
3490         * include/dvdmedia.h: New file.
3491         * include/il21dec.h: New file.
3492         * include/ks.h: New file.
3493         * include/ksmedia.h: New file.
3494         * include/mmreg.h: New file.
3495         * include/mpegtype.h: New file.
3496         * include/vidcap.h: New file.
3497         * include/vmr9.h: New file.
3498         * include/vptype.h: New file.
3499         * include/xprtdefs.h: New file.
3500
3501 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3502
3503         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3504         Documented as defined on Windows 2000 or later.
3505         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3506         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3507         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3508         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3509         but values unknown, Windows Vista or later.
3510         (CAL_UMALQURA): Cleanup.
3511         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3512         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3513         (CAL_SSHORTESTDAYNAME7): Cleanup.
3514         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3515         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3516
3517 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3518
3519         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3520         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3521         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3522         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3523         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3524         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3525         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3526         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3527         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3528         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3529         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
3530         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
3531         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
3532         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
3533         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
3534         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
3535         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
3536         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
3537         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
3538         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
3539         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
3540         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
3541         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
3542         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
3543         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
3544         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
3545         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
3546         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
3547         (DMDFO_CENTER): Define.
3548         (GetDCBrushColor,GetDCPenColor): Declare.
3549         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
3550
3551 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3552
3553         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
3554         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
3555         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
3556         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
3557         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
3558         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
3559         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
3560         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
3561         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
3562         (LANG_DARI,LANG_MALAGASY)
3563         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
3564         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
3565         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
3566         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
3567         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
3568         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
3569         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
3570         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3571         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
3572         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
3573         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
3574         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
3575         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
3576         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
3577         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
3578         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
3579         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
3580         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
3581         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
3582         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
3583         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
3584         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
3585         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
3586         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
3587         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
3588         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
3589         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
3590         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
3591         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
3592         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
3593         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
3594         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
3595         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
3596         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
3597         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
3598         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
3599         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
3600         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
3601         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
3602         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
3603         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
3604         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
3605         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
3606         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
3607         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
3608         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
3609         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3610         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
3611         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
3612         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
3613         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
3614         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
3615         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
3616         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
3617         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
3618         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
3619         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
3620         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
3621         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
3622         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
3623         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
3624         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
3625         (SUBLANG_MARATHI_INDIA): Defined twice by error.
3626
3627 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3628
3629         * lib/directx/Makefile.in: Remove reference to libquartz.a since
3630         it was moved.
3631
3632 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
3633
3634         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
3635         SPI_SETSCREENSAVERUNNING.
3636         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
3637
3638 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3639
3640         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
3641         It had been removed because it's no documented, but Cygwin needs it.
3642
3643 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3644
3645         * include/amvideo.h (IFullScreenVideo): Define.
3646         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
3647         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
3648
3649 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3650
3651         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
3652         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
3653         as available on Windows 98 and better.
3654         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3655         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3656         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
3657
3658 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3659
3660         * include/amvideo.h: New file.
3661         * include/dshow.h: Include <amvideo.h>.
3662
3663 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3664
3665         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
3666         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
3667         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
3668         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
3669         (HWND_BROADCAST): Cleanup.
3670         (HWND_MESSAGE): Windows 2000 only.
3671         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
3672         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
3673         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
3674         (SIF_ALL): Cleanup.
3675         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
3676         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
3677         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
3678         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
3679         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
3680         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
3681         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
3682         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
3683         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
3684         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
3685         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
3686         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3687         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3688         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3689         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3690         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3691         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3692         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
3693         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
3694         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
3695         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
3696         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
3697         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
3698         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
3699         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
3700         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
3701         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
3702         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
3703         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
3704         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
3705         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
3706         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
3707         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
3708         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
3709         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
3710         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
3711         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
3712         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
3713         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
3714         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
3715         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
3716         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
3717         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
3718         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
3719         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
3720         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
3721         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
3722         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
3723         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
3724         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
3725         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
3726         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
3727         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
3728         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
3729         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
3730         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
3731         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
3732         (SPI_SCREENSAVERRUNNING): Removed.
3733         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
3734         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
3735         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
3736         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
3737
3738 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3739
3740         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
3741         (MprAdminGetPDCServer): Add prototype.
3742         (MprAdminSendUserMessage): Add prototype.
3743         (MprAdminUserGetInfo): Add prototype.
3744         (MprAdminUserSetInfo): Add prototype.
3745         * lib/mprapi.def: Add stubs for above functions.
3746
3747 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3748
3749         * lib/directx/quartz.def: Move from here...
3750         * lib/quartz.def: ... to here.
3751
3752 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3753
3754         * include/amaudio.h: New file.
3755         * include/dshow.h: Include <amaudio.h>.
3756
3757 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3758
3759         * include/errors.h: New file.
3760         * include/dshow.h: Include <errors.h>.
3761
3762 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3763
3764         * include/dshow.h: New file.
3765         * include/evcode.h: New file.
3766         * include/audevcod.h: New file.
3767         * include/dvdevcod.h: New file.
3768
3769 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3770
3771         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
3772         (MprAdminConnectionClearStats): Add prototype.
3773         (MprAdminConnectionEnum): Add  prototype.
3774         (MprAdminConnectionGetInfo): Add prototype.
3775         (MprAdminConnectionRemoveQuarantine): Add prototype.
3776         (MprAdminPortClearStats): Add prototype.
3777         (MprAdminPortDisconnect): Add prototype.
3778         (MprAdminPortEnum): Add prototype.
3779         (MprAdminPortGetInfo): Add prototype.
3780         (MprAdminPortReset): Add prototype.
3781         * lib/mprapi.def: New file.
3782
3783 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3784
3785         *  include/mprapi.h: #include <lmcons.h>
3786         (MAX_DEVICETYPE_NAME): Add define.
3787         (MAX_PHONE_NUMBER_LEN): Add define.
3788         (ATADDRESSLEN): Add define.
3789         (IPADDRESSLEN): Add define.
3790         (IPXADDRESSLEN): Add define.
3791         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
3792         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
3793         (RAS_FLAGS_PPP_CONNECTION): Add define.
3794         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
3795         (RAS_FLAGS_RAS_CONNECTION): Add define.
3796         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
3797         (RASCCPCA_STAC): Add define.
3798         (RASCCPCA_MPPC): Add define.
3799         (PPP_CCP_COMPRESSION): Add define.
3800         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
3801         (PPP_CCP_ENCRYPTION40BIT): Add define.
3802         (PPP_CCP_ENCRYPTION128BIT): Add define.
3803         (PPP_CCP_ENCRYPTION56BIT): Add define.
3804         (PPP_CCP_HISTORYLESS): Add define.
3805         (RASPRIV_NoCallback): Add define.
3806         (RASPRIV_AdminSetCallback): Add define.
3807         (RASPRIV_CallerSetCallback): Add define.
3808         (RASPRIV_DialinPrivilege): Add define.
3809         (RASPRIV_CallbackType): Add define.
3810         (RASPRIV2_DialinPolicy): Add define.
3811         (PPP_LCP_PAP): Add define.
3812         (PPP_LCP_SPAP): Add define.
3813         (PPP_LCP_CHAP): Add define.
3814         (PPP_LCP_EAP): Add define.
3815         (PPP_LCP_CHAP_MD5): Add define.
3816         (PPP_LCP_CHAP_MS): Add define.
3817         (PPP_LCP_CHAP_MSV2): Add define.
3818         (PPP_LCP_MULTILINK_FRAMING): Add define.
3819         (enum _RAS_HARDWARE_CONDITION): Add.
3820         (enum _RAS_PORT_CONDITION): Add.
3821         (struct _PPP_ATCP_INFO): Add.
3822         (struct _PPP_ATCP_INFO): Add.
3823         (struct _PPP_IPCP_INFO): Add.
3824         (struct _PPP_IPCP_INFO2): Add.
3825         (struct _PPP_IPXCP_INFO): Add.
3826         (struct _PPP_LCP_INFO): Add.
3827         (struct _PPP_NBFCP_INFO): Add.
3828         (struct _PPP_INFO): Add.
3829         (struct _PPP_INFO_2): Add.
3830         (struct _RAS_CONNECTION_0): Add.
3831         (struct RAS_CONNECTION_1): Add.
3832         (struct _RAS_CONNECTION_2): Add.
3833         (struct RAS_PORT_0): Add.
3834         (struct _RAS_PORT_1): Add.
3835         (struct _RAS_USER_0): Add.
3836         (struct _RAS_USER_1): Add.
3837
3838 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3839
3840         * include/mprapi.h: New file.
3841         * include/routprot.h: New file.
3842         * include/ipxrtdef.h: New file.
3843         * include/ipxconst.h: New file.
3844         * include/stm.h: New file.
3845
3846 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3847
3848         * include/ddk/winddk.h (KAFFINITY): Fix typo.
3849         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
3850
3851 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3852
3853         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
3854         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
3855         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
3856         versions.
3857         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
3858
3859 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3860
3861         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
3862         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
3863
3864 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3865
3866         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
3867
3868 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3869
3870         * include/basetyps.h (REFFMTID): Define properly.
3871
3872 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3873
3874         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
3875         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3876
3877 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3878
3879         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
3880         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
3881         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
3882         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
3883         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
3884         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
3885         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
3886         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
3887         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
3888         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
3889         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
3890         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
3891         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
3892         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
3893         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
3894         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
3895         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
3896         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
3897         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
3898         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
3899         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
3900         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
3901         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
3902         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
3903         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
3904         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
3905         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
3906         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
3907         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
3908         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
3909         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
3910         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
3911         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
3912         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
3913         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
3914         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
3915         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
3916         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
3917         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
3918         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
3919         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
3920         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
3921         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
3922         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
3923         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
3924         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
3925         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
3926         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
3927         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
3928         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
3929         (IF_OPER_STATUS_OPERATIONAL): Define.
3930         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
3931         Add function declaration.
3932         * include/mgm.h: New file.
3933         * lib/rtm.def: New file.
3934         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3935
3936 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3937
3938         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
3939         This function cannot be made thread-safe, the API would have to be
3940         changed for that, just like strerror() -> strerror_r() and similar
3941         ISO C or POSIX functions...
3942
3943 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3944
3945         * include/edevdefs.h: New file.
3946
3947 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3948
3949         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
3950         Use as guard for the WAVEFORMATEX structure instead of
3951         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
3952         _WAVEFORMATEX_ for compatibility.
3953         Thanks to:    Andrew Jones <guln at sf dot net>
3954
3955 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3956
3957         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
3958         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
3959         Thanks to:    David Golub <david_golub at sf dot net>
3960
3961 2006-04-18  Eric House  <ehouse@eehouse.org>
3962
3963         PocketPC support.
3964         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
3965         functions for using aygshell on PocketPC:
3966         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
3967         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
3968
3969         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
3970         command bar API on PocketPC:
3971         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
3972         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
3973         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
3974         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
3975         CommandBar_InsertButton, CommandBar_Destroy.
3976
3977         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
3978         fields not present on PocketPC.
3979         (GetCurrentThreadId): Conditionally declare as extern function
3980         without dllimport attribute on PocketPC.
3981         (ResetEvent): Likwise.
3982         (SetEvent): Likewise.
3983
3984         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
3985         Conditionally declare as extern function without dllimport
3986          attribute on PocketPC.
3987         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
3988         declare as extern function without dllimport attribute on PocketPC.
3989
3990 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
3991
3992         * lib/test.c: Include icm.h.
3993
3994 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
3995
3996         * include/wingdi.h (ColorCorrectPalette): Add declaration.
3997         (CreateColorSpace): Add UNICODE mappings.
3998         * lib/gdi32.def (ColorCorrectPalette): Add stub.
3999         * include/icm.h: New file.
4000         * lib/mscms.def: New file.
4001         * lib/icmui.def: New file.
4002
4003 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
4004
4005         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
4006         (IMAGE_FILE_MACHINE_AMD64): New define.
4007         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
4008         New defines.
4009         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
4010         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
4011         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
4012         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
4013         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
4014         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
4015         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
4016         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
4017         New defines.
4018         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
4019         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
4020         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
4021         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
4022         (IMAGE_DEBUG_TYPE_BORLAND): New define.
4023         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
4024         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
4025         definitions and typedefs.
4026         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
4027         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
4028         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
4029         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
4030         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
4031         New structure definition and typedefs.
4032         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
4033         Likewise.
4034         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
4035
4036 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
4037
4038         * lib/test.c: Fix typo in #inlcude.
4039         * include/aclui.h: INTERFACE should not remain
4040         defined at the end of the header.
4041         * include/servprov.h: Ditto.
4042
4043 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
4044
4045         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
4046
4047 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4048
4049         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
4050
4051 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4052
4053         * include/wsahelp.h (system_header): Add pragma.
4054         * include/ws2spi.h (system_header): Add pragma.
4055         * include/rasdlg.h (system_header): Add pragma.
4056         * include/rasdlg.h (_RASDLG_H): Define.
4057         Define instead of _RASDLG_H_, this is the w32api standard.
4058         * include/mlang.h (_MLANG_H): Define.
4059         Define instead of _MLANG_H_, this is the w32api standard.
4060         * include/setupapi.h (_SETUPAPI_H): Define.
4061         Define instead of _SETUPAPI_H_, this is the w32api standard.
4062
4063 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4064
4065         * include/rpcndr.h (boolean): Add typedef.
4066         Thanks to:    James du Russel <ephelon at users dot sf dot net>
4067         * include/rpcndr.h (_RPCNDR_H): Define.
4068         Define in addition to __RPCNDR_H__, this is the w32api standard.
4069
4070 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4071
4072         * include/w32api.h: Increment version to 3.7.
4073         * Makefile.in: Ditto.
4074
4075 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4076
4077         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
4078         GET_MODULE_HANDLE_EX_FLAG_PIN,
4079         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
4080         Thanks to:    Brandon Sneed <brandon at redf dot net>
4081
4082 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4083
4084         * include/secext.h: Enclose function declarations in extern "C"
4085         if __cplusplus.
4086
4087 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4088
4089         * include/comcat.h: INTERFACE should not remain defined
4090         at the end of the header.
4091         * include/docobj.h: Ditto.
4092         * include/exdisp.h: Ditto.
4093         * include/intshcut.h: Ditto.
4094         * include/mlang.h: Ditto.
4095         * include/mshtml.h: Ditto.
4096         * include/oaidl.h: Ditto.
4097         * include/objidl.h: Ditto.
4098         * include/objsafe.h: Ditto.
4099         * include/ocidl.h: Ditto.
4100         * include/oleacc.h: Ditto.
4101         * include/oledlg.h: Ditto.
4102         * include/oleidl.h: Ditto.
4103         * include/richole.h: Ditto.
4104         * include/shldisp.h: Ditto.
4105         * include/shlobj.h: Ditto.
4106         * include/unknwn.h: Ditto.
4107         * include/vfw.h: Ditto.
4108         Thanks to:    Brandon Sneed <brandon at redf dot net>
4109
4110 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4111
4112         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
4113         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
4114         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4115
4116 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
4117
4118         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
4119         here also.
4120
4121 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4122
4123         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
4124         We should probably remove PROV_MS_MAIL but I'm keeping it for
4125         now for compatibility reasons.
4126         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
4127
4128 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4129
4130         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
4131         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
4132         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
4133
4134 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4135
4136         * include/wingdi.h [WINVER >= 0x0410]
4137         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
4138         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
4139
4140 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4141
4142         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
4143         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
4144         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
4145         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
4146         (L_MAX_URL_LENGTH): Define.
4147         (LITEM,LHITTESTINFO,NMLINK): Add structures.
4148         Thanks to:    Brandon Sneed <brandon at redf dot net>
4149
4150 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4151
4152         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
4153
4154 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4155
4156         * include/w32api.h (_W32API_H): Define.
4157         Define in addition to _W32API_H_, this is the w32api standard.
4158
4159 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4160
4161         * include/w32api.h (WindowsVista): Define.
4162
4163 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4164
4165         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
4166         on SOCKET_ADDRESS only if winsock2.h has already been included.
4167
4168 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4169
4170         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
4171
4172 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4173
4174         * include/iphlpapi.h (GAA_FLAG_*): Define.
4175         (GetAdaptersAddresses): Add function declaration.
4176         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
4177         Thanks to:    ross <rossboulet at users dot sf dot net>
4178
4179 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4180
4181         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
4182         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
4183         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
4184         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
4185         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
4186         SCOPE_LEVEL): Add enums.
4187         (IP_ADAPTER_*): Define.
4188
4189 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4190
4191         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
4192         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
4193
4194 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4195
4196         * include/objidl.h (PIDSI_*): Define.
4197         (PRSPEC_*): Define.
4198         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4199
4200 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4201
4202         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
4203         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
4204         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
4205         LOGON32_LOGON_NEW_CREDENTIALS): Define.
4206         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4207
4208 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4209
4210         * include/mq.h: New file.
4211         * lib/mqrt.def (MQ*): Define a few missing functions.
4212
4213 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4214
4215         * lib/mqrt.def: New file.
4216         Needs the mq.h file to work properly, working on it.
4217         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
4218
4219 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4220
4221         * include/winerror.h (STG_E_*):  Define.
4222         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
4223         * include/winerror.h (STG_S_*): Define.
4224         (CO_S_MACHINENAMENOTFOUND): Define.
4225         (RPC_E_*): Define.
4226         (NTE_*): Define.
4227
4228 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4229
4230         * include/commctrl.h (ListView_*):  Define and correct.
4231         (LVM_*): Define.
4232
4233 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4234
4235         * include/winuser.h (WM_IME_*): Define (DWORD type).
4236         (EM_*IMESTATUS): Define.
4237         (WM_*): Define.
4238         (XBUTTON*): Define.
4239         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
4240
4241 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
4242
4243         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
4244         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
4245
4246 2006-03-29  Christopher Faylor  <cgf@timesys.com>
4247
4248         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
4249         version conditional.
4250
4251 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4252
4253         * include/winspool.h (JOB_INFO_3): Add structure.
4254         (PROVIDOR_INFO_*{AW}): Add structure.
4255         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4256         (PRINTER_ENUM_VALUES{AW}): Add structure.
4257         (PRINTPROCESSOR_CAPS): Add structure.
4258
4259 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4260
4261         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4262         (PRINTER_INFO_7A): Correct definition.
4263
4264 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4265
4266         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4267         (DRIVER_INFO_*{AW}): Add structure.
4268         (PRINTER_INFO_*{AW}): Add structure.
4269         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4270
4271 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4272
4273         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4274         (DRIVER_*MODE): Define (DWORD type).
4275         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4276
4277 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4278
4279         * include/wincon.h (GetConsoleProcessList): Declare.
4280
4281 2006-03-27  Hansres Engel  <engel@node.ch>
4282
4283         * include/mlang.h: New file.
4284
4285 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4286
4287         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4288
4289 2006-03-26  Hansres Engel  <engel@node.ch>
4290
4291          Add Uniscribe API for typography and for complex scripts.
4292         * include/usp10.h: New file.
4293         * lib/usp10.def: New file.
4294
4295         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4296
4297         * include/imm.h (IMECHARPOSITION): Add structure.
4298         (RECONVERTSTRING): Likwise.
4299
4300         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4301
4302         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4303         (IMLangFontLink2): Likewise.
4304         (IMultiLanguage): Likewise.
4305
4306 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4307
4308         * include/wincon.h  (ENABLE_*): Add more defines.
4309
4310 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4311
4312         * include/winnt.h (INHERITED_ACE): Define.
4313         (VALID_INHERIT_FLAGS): Correct definition.
4314
4315 2006-03-18  Peter Ã…strand  <astrand@cendio.se>
4316
4317          * lib/wtsapi32.def: New file.
4318
4319 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4320
4321         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4322         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4323
4324 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4325
4326         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4327         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4328         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4329         (DSPRINT_*): Define (DWORD type).
4330         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4331
4332 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4333
4334         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4335         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4336
4337 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4338
4339         * include/shellapi.h [_WIN32_IE >= 0x0600]
4340         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4341         Windows XP SP1 and Windows XP respectively.
4342
4343 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4344
4345         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4346         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4347         * include/shellapi.h [_WIN32_IE >= 0x0500]
4348         (NIS_*): Introduced in Version 5.0.
4349
4350 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4351
4352         * include/wingdi.h (CS_*): Correct WINVER guard on
4353         Image Color Matching colour definitions.
4354
4355 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4356
4357         * include/shlobj.h (SFGAO_ISSLOW): Define.
4358         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4359         attribute constants.
4360
4361 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4362
4363         * include/wingdi.h [WINVER >= 0x0500]
4364         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4365         Thanks to: David A. Capello <dacap at users dot sf dot net>
4366
4367 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4368
4369         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4370         (INTERNET_STATE_*): Define flags.
4371         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4372
4373 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4374
4375         * include/sddl.h: New file.
4376
4377 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4378
4379         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4380         last change.
4381         Remove file level #pragma pack(push,4)/#pragma pop.
4382
4383 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4384
4385         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4386         value to force correct alignment.
4387
4388 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4389
4390         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4391         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4392         (PNM_CACHEHINT): Add backward compatibilty define.
4393         (LPNM_CACHEHINT): Likewise.
4394
4395 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4396
4397         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4398
4399 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4400
4401         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4402         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4403         * lib/shell32.def (PathResolve): Define.
4404
4405 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4406
4407         * include/shlobj.h (PathResolve): Fix typo.
4408
4409 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4410
4411         * include/shlobj.h (PathResolve): Define.
4412         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4413         PRF_DONTFINDLNK): Ditto.
4414         * lib/shell32.def (PathResolve): Define.
4415
4416 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4417
4418         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4419
4420 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4421
4422         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4423         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4424         (NotifyRouteChange@8): Define.
4425
4426 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4427
4428         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4429         prototypes.
4430
4431 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4432
4433         * include/winnt.h (FORCEINLINE): Define.
4434
4435 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4436
4437         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4438
4439 2006-01-26  Filip Navara  <xnavara@volny.cz>
4440
4441         * include/winnt.h (DECLSPEC_ALIGN): Define.
4442
4443 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4444
4445         * include/commctrl.h: Correct spelling of 'compatibility' in
4446         comments.
4447         * include/setupapi.h: Likewise.
4448         * include/ws2tcpip.h: Likewise.
4449
4450 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4451
4452         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4453
4454 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4455
4456         WATCOM compatibility changes.
4457         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4458         rather than __attribute__.
4459         (DECL_EXPORT): Likewise.
4460         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4461         (DDKFASTAPI): Likewise.
4462         (DDKCDECLAPI): Likwise.
4463         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4464
4465 2006-01-23  Brandon Sneed  <brandon@redf.net>
4466
4467         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4468         to exports.
4469
4470 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4471
4472         * include/w32api.h: Increment version to 3.6.
4473         * Makefile.in: Ditto.
4474
4475 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4476
4477         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4478         advapi32.dll functions.
4479
4480 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4481
4482         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4483         names for padding size constants.
4484
4485 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4486
4487         * include/aclapi.h (WINADVAPI): Add to prototypes.
4488         * include/winreg.h (WINADVAPI): Likewise.
4489         * include/winsvc.h (WINADVAPI): Likewise.
4490
4491 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4492
4493         * include/winbase.h (WINADVAPI): Define.
4494
4495 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4496
4497         * include/winuser.h (CreateWindowStation): Correctly identify first
4498         argument as constant.
4499         (CreateWindowStation@): Ditto.
4500
4501 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4502
4503         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4504         (TMT_*, BT_*): Add constants.
4505
4506 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4507
4508         * include/winsock2.h: Don't define struct sockaddr_storage when
4509         building Cygwin.
4510
4511 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4512
4513         * lib/ws2_32.c: New file, defining IPv6 constants.
4514         * lib/Makefile.in (SOURCES): Add ws2_32.c
4515         (EXTRA_OBJS): Add ws2_32.o.
4516
4517 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4518
4519         * lib/user32.def (PrivateExtractIconsA@32,
4520         PrivateExtractIconsW@32): Define.
4521         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4522
4523 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4524
4525         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4526
4527 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4528
4529         * lib/kernel32.def (CreateFiberEx): Correct suffix.
4530
4531 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
4532             Danny Smith <dannysmith@users.sourceforge.net>
4533
4534         * lib/msxml-uuid.c: New file to generate UUIDs for
4535         MSXML interfaces.
4536         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
4537
4538 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4539
4540         * include/winbase.h (GetDevicePowerState): Add prototype.
4541         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
4542
4543 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
4544
4545         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
4546         Define as macro if !_WIN64.
4547         (SetClassLongPtr{AW}): Likewise.
4548         (GCLP_*): Add GetClassLongPtr defines.
4549         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
4550         (SetClassLongPtr{AW}): Likewise.
4551
4552 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
4553
4554         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
4555         (SetClassLongPtr{AW}): Likewise.
4556         (GCLP_*): Add GetClassLongPtr defines.
4557         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
4558         (SetClassLongPtr{AW}): Likewise.
4559
4560 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4561
4562         * include/commdlg.h (OPENFILENAMEW): Add members for
4563         _WIN32_WINNT >= 0x0500.
4564         Thanks to Ricardo Dalcorsso Fodra.
4565         (OPENFILENAMEA): Modify whitespace. Ansify comment.
4566
4567 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4568
4569         * include/wingdi.h (GetICMProfileA): Correct prototype.
4570         (GetICMProfileW): Likewise.
4571         Thanks to: Paul J Lucas
4572
4573 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
4574
4575         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
4576
4577 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
4578
4579         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
4580         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
4581         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
4582         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
4583
4584 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4585
4586         * include/objbase.h: Fix typo.
4587         * include/w32api.h: Increment version to 3.5.
4588         * Makefile.in: Ditto.
4589
4590 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4591
4592         * include/w32api.h: Increment version to 3.4.
4593         * Makefile.in: Ditto.
4594
4595 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
4596
4597         * include/winbase.h (GetProcessId): Remove duplicate declaration.
4598         Use _WIN32_WINNT >= 0x0501 guard.
4599
4600 2005-10-11  Christopher Faylor  <cgf@timesys.com>
4601
4602         * include/winbase.h (GetProcessId): Declare.
4603
4604 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4605
4606         * lib/ddk/newdev.def: Added.
4607         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
4608
4609 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4610
4611         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
4612         component.
4613         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
4614
4615 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4616
4617         * lib/shell32.def (SHILCreateFromPath): Add stub.
4618         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
4619
4620 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4621
4622         * include/winbase.h (RegisterWaitForSingleObject,
4623         RegisterWaitForSingleObjectEx): Define.
4624         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
4625         (RegisterWaitForSingleObject@16): Changed to
4626         RegisterWaitForSingleObject@24.
4627         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
4628
4629 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
4630
4631         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
4632         Thanks to: Gisle Vanem  <giva at bgnett dot no>
4633
4634 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4635
4636         * include/reason.h [_WIN32_WINNT >= 0x0501]
4637         (SHTDN_REASON_*): New file.
4638         * include/objbase.h: Avoid double header guard.
4639
4640 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
4641
4642         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
4643         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
4644         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
4645
4646 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4647
4648         * include/shlobj.h (IContextMenu3): Define.
4649         * include/shlguid.h (IID_IContextMenu3): Declare.
4650         * lib/shell32.c (IID_IContextMenu3): Define.
4651
4652 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4653
4654         * include/shlobj.h (SHFormatDrive): Declaration of function
4655         and associated constants.
4656
4657 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4658
4659         * include/ddk/hidsdi.h:  New file.
4660         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
4661         functions declared in hidsdi.h.
4662         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
4663
4664 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4665
4666         * lib/imm32.def (ImmDisableIME): Add stub.
4667         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
4668
4669 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4670
4671         * include/w32api.h: Increment version to 3.3.
4672         * Makefile.in: Ditto.
4673
4674 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
4675
4676         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
4677         Correct their values.
4678         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
4679
4680 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4681
4682         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
4683
4684 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4685
4686         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
4687         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
4688
4689 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4690
4691         * include/richedit.h (SETTEXTEX): Define structure and
4692         associated constants.
4693         (GT_SELECTION): Define GETTEXTEX flag constant.
4694
4695 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4696
4697         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
4698
4699 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4700
4701         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
4702         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
4703         prototypes.
4704
4705 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4706
4707         * include/commctrl.h (RBBS_USECHEVRON): Define.
4708         (RBBS_*): Use hex notation, group together.
4709
4710 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4711
4712         * lib/kernel32.def (GetUserGeoID): Correct suffix.
4713         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
4714
4715 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4716
4717         * include/commctrl.h (TreeView_SetItemState): Initilise
4718         _tvi.hItem.
4719         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
4720
4721 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
4722
4723         * include/commctrl.h (NMLVFINDITEM): Add structure.
4724
4725 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4726
4727         * include/wininet.h (WININET_API_FLAG_*): Add defines.
4728
4729 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
4730
4731         * include/winnt.h (VER_SET_CONDITION): Define.
4732
4733 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4734
4735         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
4736         (ATTACH_PARENT_PROCESS): Define.
4737         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
4738         documentation.
4739
4740 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4741
4742         * include/winbase.h (QueueUserWorkItem): Add prototype.
4743
4744 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4745
4746         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
4747         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
4748         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
4749         CM_CMYK_COLOR): Define.
4750
4751 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
4752
4753         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
4754         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
4755         Thanks to: Christian  <chhd at users dot sf dot net>
4756
4757 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4758
4759         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
4760         field.
4761         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
4762
4763 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4764
4765         * include/winbase.h (GlobalDiscard): Define as macro.
4766         Thanks to: David Golub  <david_golub  at users dot sf dot net>
4767
4768 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
4769
4770         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
4771         (WNetGetResourceParentW): Ditto.
4772         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
4773         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
4774
4775 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
4776
4777         * include/wininet.h (FtpGetFileSize): Add prototype.
4778         (FtpCommand[AW]): Correct prototypes.
4779         Reported by: <siger at users dot sf dot net>
4780
4781 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
4782
4783         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
4784         (capGetDriverDescription[AW]): Likewise.
4785
4786 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
4787
4788         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
4789         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
4790         (SE_IMPERSONATE_NAME TEXT): Ditto.
4791         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
4792         (SE_SYNC_AGENT_NAME TEXT): Ditto.
4793
4794 2005-03-16  Christopher Faylor  <cgf@timesys.com>
4795
4796         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
4797         change.
4798
4799 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
4800
4801         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
4802         Thanks to:
4803         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
4804
4805 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
4806
4807         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
4808         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
4809         (gai_strerror[AW]): Put into #if 0 block.
4810
4811 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
4812
4813         * include/basetyps.h (__int16): Correct define.
4814
4815 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
4816             Danny Smith  <dannysmith@users.sourceforge.net>
4817
4818         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
4819         define for Open Watcom portability.
4820         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
4821         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
4822         of local c_rgodfDI* objects. Replace .rdata section attribute
4823         with 'const' keyword in definition of global c_dfDI* objects.
4824
4825 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
4826
4827         * include/winioctl.h (IOCTL_VOLUME_BASE,
4828         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
4829         Copy defines from include/ddk/ntdddvol.h.
4830         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
4831
4832 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
4833
4834         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
4835
4836 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4837
4838         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
4839         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
4840
4841 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4842
4843         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
4844
4845 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
4846
4847         * lib/user32.def (MonitorFromPoint): Correct suffix.
4848
4849 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4850
4851         * include/wininet.h (InternetCheckConnectionA,
4852         InternetCheckConnectionW) Add prototypes.
4853         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
4854         INTERNET_CONNECTION_CONFIGURED): Add defines.
4855
4856 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4857
4858         * include/commctrl.h (ComboBox_SetMinVisible,
4859         ComboBox_GetMinVisible): Added Macros.
4860         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
4861         Added definitions.
4862
4863 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
4864
4865         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
4866         assembly code conditional on _X86_.
4867
4868 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
4869
4870         * include/w32api.h: Increment version to 3.2.
4871         * Makefile.in: Ditto.
4872         * include/afxres.h: Remove the \r from the line ending.
4873         * include/errorrep.h: Ditto.
4874         * include/shldisp.h: Ditto.
4875         * include/tschema.h: Ditto.
4876         * lib/dhcpcsvc.def: Ditto.
4877         * lib/uxtheme.def: Ditto.
4878         * lib/wldap32.def: Ditto.
4879
4880 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
4881
4882         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
4883         Correct typo.
4884         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
4885
4886 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4887
4888         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
4889         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
4890         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
4891         SPI_GETFOREGROUNDLOCKTIMEOUT,
4892         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
4893         *include/imm.h (WM_IME_REQUEST): Added definition.
4894         *include/shlobj.h (SLGP_RAWPATH,
4895         SLGP_UNCPRIORITY): Added definition.
4896
4897 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4898
4899         *include/winuser.h (HSHELL_FLASH): Added definition.
4900
4901 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4902
4903         * include/shldisp.h (IAutoComplete): Added interface definiton.
4904         * include/shldisp.h (IAutoComplete2): Added interface definiton.
4905         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
4906         * include/shlobj.h (IObjMgr): Added interface definiton.
4907         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
4908         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
4909         CLSID_ACListISF, IID_IACList): Added GUIDs.
4910         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
4911         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
4912         CLSID_ACListISF, IID_IACList): Added GUIDs.
4913
4914 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
4915
4916         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
4917         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
4918         (CDRF_*): Use hex notation for constants.
4919
4920 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
4921
4922         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
4923         Reported by Eric Sharkey <sharkey at netrics dot com>
4924
4925 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4926
4927         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
4928         TokenGroupsAndPrivileges, TokenSessionReference,
4929         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
4930         Reformat.
4931         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
4932         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
4933
4934 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
4935
4936         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
4937         ImageList_Duplicate): Add stubs.
4938
4939 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
4940
4941         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
4942         Thanks to "Pete" <pross@xvid.org>
4943
4944 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
4945
4946         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
4947         AC_DST_NO_ALPHA, ...): Add defines.
4948         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
4949         ULW_OPAQUE): Add defines.
4950
4951 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
4952
4953         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
4954         guard.
4955         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
4956         suffix.
4957         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
4958
4959 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
4960
4961         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
4962         (CreateProcessWithLogonW): Declare.
4963         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
4964         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
4965
4966 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
4967
4968         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
4969         Thanks to: David Leonard  <leonard@users.sourceforge.net>
4970
4971 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
4972
4973         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
4974         Thanks to: David Leonard  <leonard@users.sourceforge.net>
4975
4976 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
4977
4978         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
4979
4980 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
4981
4982         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
4983         Add defines.
4984         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
4985
4986 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4987
4988         * include/shellapi.h (NIF_GUID): Add another define.
4989
4990 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
4991
4992         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
4993         Changed it twice due to inconsistent MSDN documentation.
4994         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
4995
4996 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
4997
4998         * include/shlobj.h (SHGFP_TYPE): Add enum.
4999
5000 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
5001
5002         * include/winuser.h (WM_THEMECHANGED): Add define.
5003
5004 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5005
5006         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
5007         ExFreeToPagedLookasideList): Guard inline versions with
5008         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
5009         external functions for earlier _WIN32_WINNT.
5010
5011 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
5012
5013         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
5014
5015 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
5016
5017         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
5018         if  undefined and __W32API_USE_DLLIMPORT__.
5019         Add WINBASEAPI token to prototypes, throughout.
5020
5021 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
5022
5023         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
5024         (GetFiberData): Likewise.
5025         (NtCurrentTeb): Likewise.
5026
5027 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
5028
5029         * include/shellapi.h (NIF_INFO): Add define.
5030         (NIIF_*) Add defines..
5031         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
5032         (NIF_*): Convert constants to hex.
5033
5034 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
5035
5036         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
5037         GetGlyphIndicesW): Declare.
5038         (GGI_MARK_NONEXISTING_GLYPHS): Define
5039         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
5040         GetGlyphIndicesW): Add stubs.
5041
5042 2004-10-24  Dan Aloni  <da-x@colinux.org>
5043
5044         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
5045         ZwQueryFullAttributesFile): Declare.
5046         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
5047         Declare.
5048         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
5049         ZwQueryVolumeInformationFile): Add stubs.
5050
5051 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
5052
5053         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
5054         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
5055
5056 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
5057             Danny Smith  <dannysmith@users.sourceforge.net>
5058
5059         * include/winbase.h (InitializeSListHead, Interlocked*):
5060         Guard with !__USE_NTOSKRNL__.
5061
5062         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
5063         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
5064         Guard with  __USE_NTOSKRNL__.
5065         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
5066         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
5067         && _WIN32_WINNT >= 0x0501
5068         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
5069         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
5070         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
5071         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
5072
5073         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
5074         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
5075         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
5076         ExWindowStationObjectType, IoAdapterObjectType,
5077         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
5078         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
5079         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
5080         Uncomment stubs.
5081
5082 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
5083
5084         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
5085         definition
5086         (IoReleaseRemoveLock): Add definition.
5087
5088 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
5089
5090         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
5091         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
5092         Add prototypes.
5093         * include/winddk.h (ExInterlockedAddUlong,
5094         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5095         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5096         ExInterlockedPushEntryList): Change calling convention to
5097         DDKAPI.
5098         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
5099         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
5100         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
5101         Add prototypes for DDKFASTAPI versions.
5102         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
5103         * lib/ntoskrnl.def (ExInterlockedAddUlong,
5104         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
5105         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
5106         ExInterlockedPushEntryList): Remove lead '@' from stubs.
5107         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
5108         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
5109         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
5110         Add fastcall stubs.
5111         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
5112         Exi386InterlockedIncrementLong); Add stdcall stubs.
5113
5114 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
5115
5116         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
5117          if __W32API_USE_DLLIMPORT__ is defined.
5118         * include/winuser.h (WINUSERAPI): Likewise.
5119
5120 2004-09-29  Filip Navara  <xnavara@volny.cz>
5121
5122         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
5123         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
5124         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
5125         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
5126         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
5127         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
5128         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
5129         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
5130         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
5131         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
5132         winnt4.h, ws2san.h): Fixed packing.
5133         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
5134         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
5135         HID_INTERFACE_NOTIFY_PNP): Likewise.
5136         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
5137         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
5138         <ayerkes@speakeasy.net>.
5139         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
5140         declaration.
5141         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
5142         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
5143         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
5144         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
5145         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
5146         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
5147         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
5148         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
5149         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
5150         (SYNCH_LEVEL): Added definition.
5151         (KPCR, KPCR_TIB): Fixed declaration.
5152         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
5153         included and _WIN32_WINNT >= 0x0501.
5154         (RtlEqualLuid): Fixed macro definition.
5155         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
5156         KeRaiseIrql on i386 architectures.
5157
5158 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
5159
5160         * include/mshtml.h (IHTMLDocument2): Correct get_selection
5161         declaration.
5162         (IHTMLSelectionObject): Correct get_type declaration.
5163         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
5164         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
5165         IHTMLBodyElement2): Add interfaces.
5166         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
5167         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
5168         typedefs.
5169         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
5170         Add IIDs.
5171
5172 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
5173
5174         * include/w32api.h: Increment version to 3.1.
5175         * Makefile.in: Ditto.
5176
5177 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5178
5179         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
5180         MonitorFromWindow): Add prototypes.
5181         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
5182         MonitorFromWindowMonitorFromWindow): Add stubs.
5183         * include/shellapi.h (DuplicateIcon): Add prototype.
5184
5185 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
5186
5187         * include/winuser.h (WINUSERAPI): New define.
5188         Use it to mark user32.dll imports, throughout.
5189
5190 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
5191
5192         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
5193         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
5194         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
5195         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
5196         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
5197         HidD_GetPreparsedData, HidD_GetProductString,
5198         HidD_GetSerialNumberString, HidD_SetConfiguration,
5199         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
5200         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
5201
5202 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
5203
5204         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
5205         Add XP defines.
5206         (PCOORD): Add typedef.
5207         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
5208
5209 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5210
5211         * include/winldap.h: Don't check value of UNICODE.
5212         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
5213
5214 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
5215
5216         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
5217
5218 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
5219
5220         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
5221         guard.
5222
5223 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
5224
5225         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
5226
5227 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
5228
5229         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
5230
5231 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
5232
5233         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
5234
5235 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
5236
5237         * include/wincrypt.h: Correct _WIN32_WINNT typo.
5238
5239 2004-08-10  Ed Schaller  <schallee@darkmist.net>
5240
5241         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
5242         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
5243         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
5244         Add defines.
5245         (CALG_SHA1): Add define.
5246         (HP_HMAC_INFO): Add define.
5247         (HMAC_INFO): Add struct.
5248         (BLOBHEADER): Add typedef.
5249
5250 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5251
5252         * include/commctrl.h (TreeView_SetItemState): Define macro.
5253
5254 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
5255
5256         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
5257         macros together.
5258
5259 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5260
5261         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5262         (FILEGROUPDESCRIPTOR): LIkewise.
5263
5264 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5265
5266         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5267
5268 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5269
5270         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5271         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5272         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5273         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5274         (IMAGE_ORDINAL): Map to ...
5275         (IMAGE_ORDINAL{32,64}: New defines.
5276         (IMAGE_THUNK_DATA):  Map to ...
5277         (IMAGE_THUNK_DATA{32,64}: New structures.
5278         (IMAGE_THUNK_DATA): Map to ...
5279         (IMAGE_THUNK_DATA{32,64}: New structures.
5280         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5281         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5282         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5283         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5284
5285 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5286
5287         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5288         _WIN32_WINNT >= 0x0500.
5289
5290 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5291
5292         * include/winbase.h (GetWriteWatch): Correct prototype.
5293         (WRITE_WATCH_FLAG_RESET): Define.
5294         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5295
5296 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5297
5298         * include/commctrl.h (Animate_OpenEx): Define.
5299         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5300         (ListView_GetNumberOfWorkAreas): Correct macro.
5301         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5302         ListView_SetItemCountEx, ListView_GetISearchString,
5303         TreeView_GetLastVisible, Header_CreateDragImage,
5304         Header_SetImageList, Header_GetImageList): Define.
5305         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5306         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5307         TBSTATE_ELLIPSES): Define.
5308         (MonthCal_SetRange): Correct macro.
5309         (ImageList_Duplicate): Declare.
5310
5311 2004-05-29  Filip Navara  <xnavara@volny.cz>
5312
5313         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5314
5315 2004-05-25  Al Slater  <al.slater@scluk.com>
5316
5317         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5318         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5319
5320 2004-05-15  Filip Navara  <xnavara@volny.cz>
5321
5322         * include/ddk/kbdmou.h: New file.
5323         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5324         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5325         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5326         _vsnwprintf, sprintf, swprintf): Export.
5327
5328 2004-05-15  Filip Navara  <xnavara@volny.cz>
5329
5330         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5331         headers.
5332
5333 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5334
5335         * include/wingdi.h: Correct non-unicode typedefs of
5336         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5337
5338 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5339
5340         * include/winsock.h (IN_CLASSA): Fix macro.
5341         * include/winsock2.h (IN_CLASSA): Fix macro.
5342
5343 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5344
5345         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5346         * include/aclui.h: Remove '\r', throughout.
5347         * include/msacm.h: Likewise.
5348         * lib/aclui.def: Likewise.
5349
5350 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5351
5352         * lib/comctl32.def (SetWindowSubclass): Add stub.
5353         Thanks to Eugene <egladysh@users.sourceforge.net>.
5354
5355 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5356
5357         * include/winbase.h (EXECUTION_STATE): Add typedef.
5358         (SetThreadExecutionState): Declare.
5359         * include/wingdi.h (_WINGDI_): Define.
5360         * include/objbase.h (_OBJBASE_H_): Define.
5361
5362 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5363
5364         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5365         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5366         (SM_CMETRICS): Adjust value.
5367         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5368         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5369         Add defines.
5370         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5371
5372 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5373
5374         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5375         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5376         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5377         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5378         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5379         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5380
5381 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5382
5383         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5384         DNSREC_ADDITIONAL): Add defines.
5385
5386 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5387
5388         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5389
5390 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5391
5392         * include/aclui.h: New file.
5393         * lib/aclui.def: New file.
5394         * lib/test.c: Add aclui.h to includes.
5395
5396 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5397
5398         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5399         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5400         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5401
5402 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5403
5404         * include/wingdi.h: Protect non-unicode case of below.
5405
5406 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5407
5408         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5409         LPENUMLOGFONTEXDV with appropriate version check.
5410
5411 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5412
5413         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5414         DSPROPSETID_DirectSoundDevice): Add defines.
5415
5416 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5417
5418         * include/msacm.h: New file.
5419
5420 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5421
5422         * include/objbase.h (STGFMT): Declare enum.
5423         (STGOPTIONS): Declare structure.
5424         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5425         (STGOPTIONS_VERSION): Define.
5426         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5427
5428 2004-04-13  Filip Navara  <xnavara@volny.cz>
5429
5430         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5431         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5432         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5433         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5434         HELP_SETWINPOS): Define.
5435         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5436         (SPI_*): Add new definitions for WINVER >= 0x500.
5437         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5438         (InternalGetWindowText, SetWindowsHookW): Declare.
5439         * include/winbase.h (InitializeSListHead): Avoid conflicting
5440         definition with DDK headers.
5441
5442 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5443
5444         * include/winuser.h (GetLastError): Move from here...
5445         * include/winbase.h: ... to here.
5446
5447 2004-04-13  Filip Navara  <xnavara@volny.cz>
5448
5449         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5450
5451 2004-04-13  Filip Navara  <xnavara@volny.cz>
5452
5453         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5454         WINVER >= 0x400.
5455         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5456         (ENUMLOGFONTEXW): Fix definition.
5457         (ENUMLOGFONTEXDV[AW]): Declare.
5458
5459 2004-04-13  Filip Navara  <xnavara@volny.cz>
5460
5461         * include/wingdi.h: Declare the DirectDraw structures only if
5462         the DirectDraw kernel mode headers aren't included.
5463         (EMFINFO): Declare.
5464         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5465         STROBJ_bEnumPositionsOnly): Correct prototypes.
5466
5467 2004-04-13  Filip Navara  <xnavara@volny.cz>
5468
5469         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5470         * include/rpc.h (RPCRTAPI): Define.
5471         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5472         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5473         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5474         (I_RpcBindingSetAsync): Correct prototype.
5475         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5476         to w2kReserved.
5477         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5478         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5479         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5480         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5481         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5482         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5483         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5484         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5485         NdrUserMarshalFree): Declare.
5486         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5487         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5488
5489 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5490
5491         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5492         LPC_MESSAGE_BASE_SIZE): Define.
5493         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5494
5495 2004-04-13  Filip Navara  <xnavara@volny.cz>
5496
5497         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5498         Declare.
5499
5500 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5501
5502         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5503         MONITORINFO when compiling as C++.
5504
5505 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5506
5507         * README.w32api: List separate copyright conditions for some headers.
5508         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5509
5510 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5511
5512         * include/wingdi.h (RGB): Correct macro.
5513
5514 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5515
5516         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5517
5518 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5519
5520         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5521
5522 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5523
5524         * lib/Makefile.in: Add directx to .PHONY target.
5525         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5526         Don't include stdio.h or tchar.h.
5527         Replace _T() macro with TEXT() macro, throughout.
5528         Replace _stprintf with wsprintf, throughout.
5529
5530 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
5531
5532         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
5533         Add define.
5534         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
5535         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
5536         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
5537
5538 2004-03-27  Filip Navara  <xnavara@volny.cz>
5539
5540         * include/directx: New subdir.
5541         * lib/directx: Ditto.
5542         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
5543         dxerr9.h): New files.
5544         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
5545         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
5546         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
5547         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
5548         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
5549         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
5550         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
5551         strmiids.c, test.c): Ditto.
5552         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
5553         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
5554
5555 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5556
5557         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
5558         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
5559         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
5560
5561 2004-03-24  Filip Navara  <xnavara@volny.cz>
5562
5563         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
5564         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
5565
5566 2004-03-24  Filip Navara  <xnavara@volny.cz>
5567
5568         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
5569         TaggedQueueing to TaggedQueuing.
5570         (_HW_INITIALIZATION_DATA): Likewise.
5571
5572 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5573
5574         * include/docobj.h (IOleDocumentView::GetDocument): Correct
5575         prototype.
5576         Thanks to Buster Copley  <consequent@users.sourceforge.net>
5577
5578 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5579
5580         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
5581         (MmMapIoSpace): Likewise.
5582         Thanks to Dan Aloni  <da-x@colinux.org>
5583
5584 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
5585
5586         * include/shellapi.h (NIM_* NIS_*): Define constants for
5587         notification icons with _WIN32_IE >= 0x0500.
5588         (NOTIFYICONDATA): Add new structure members for notification
5589         icons with _WIN32_IE >= 0x0500.
5590
5591 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
5592
5593         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
5594         Add defines.
5595         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
5596         (GROUPID) Add typedef.
5597         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
5598         (CreateUrlCacheGroup): Add prototype.
5599         (DeleteUrlCacheGroup): Add prototype.
5600         (FindFirstUrlCacheGroup): Add prototype.
5601         (FindNextUrlCacheGroup): Add prototype.
5602         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
5603         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
5604
5605 2004-03-10  Al Slater  <al.slater@scluk.com>
5606
5607         * include/winsock2.h: Add missing LPFN_ typdefs for
5608         function pointers.
5609         Clean up whitespace.
5610
5611 2004-03-05  Filip Navara  <xnavara@volny.cz>
5612
5613         * include/ddk/scsi.h: Replace assert with ASSERT.
5614         * include/ddk/video.h: Ditto.
5615         * include/ddk/winddk.h: Ditto. Remove the assert macro.
5616         * include/ddk/tdi.h: Correct packing.
5617
5618 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
5619
5620         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
5621         NONAMELESSUNION case.
5622
5623 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
5624
5625         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
5626         __VARIANT_NAME_ constants.
5627
5628 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5629
5630         * include/uxtheme.h: Include <commctrl.h>
5631
5632 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5633
5634         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
5635
5636 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
5637
5638         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
5639         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
5640         together.
5641         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
5642         (V_I8, V_I8REF): Correct macros.
5643         (V_DECIMAL): Correct macro definitions.
5644         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
5645         constants.
5646         (VTBIT_*): Define constants.
5647         (UDATE): Add structure definition.
5648         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
5649         functions.
5650         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
5651         (SafeArrayCreateVectorEx): Declare function.
5652         (Var*): declare VARIANT manipulation functions.
5653         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
5654         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
5655         macros.
5656
5657 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
5658
5659         * include/oaidl.h (FADF_*): Define missing constants.
5660         (IDispatch_*): Define COBJ macros.
5661         (VARIANT): Add missing union members llVal and ullVal.
5662         (wireVARIANT): Likewise.
5663         (ITypeinfo_*): Define COBJ macros.
5664         * include/oleauto.h (Var*FromDisp): Correct parameter type from
5665         LPDISPATCH* to LPDISPATCH.
5666         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
5667         VAR_CALENDAR_*): Add missing constants.
5668         (SafeArray[Get/Set]*): Add prototypes.
5669         (Var*From*):  Add missing prototypes.
5670         (NUMPRS_*): Add defines.
5671         (NUMPARSE): Define structure.
5672         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
5673         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
5674         * include/winuser.h (COLOR_*): Define missing constants.
5675         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
5676         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
5677
5678 2004-02-23  Filip Navara  <xnavara@volny.cz>
5679
5680         * include/ddk/video.h: Corrected packing.
5681
5682 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5683
5684         * include/GL/glu.h (GLU_ERROR): Define.
5685         Thanks to Philip Lamb  <phil at rave dot co dot nz>
5686
5687 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5688
5689         * include/GL/glu.h: Include <stddef.h>.
5690         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
5691
5692 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
5693
5694         * include/w32api.h: Increment version to 3.0.
5695         * Makefile.in: Ditto.
5696         * README.win32api: Modify license to Public Domain per agreement as
5697         found in the mingw-dvlpr list archive.
5698
5699 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
5700
5701         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
5702         (DIRECTORY_TRAVERSE): Ditto.
5703         (DIRECTORY_CREATE_OBJECT): Ditto.
5704         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
5705         (DIRECTORY_ALL_ACCESS): Ditto.
5706         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
5707
5708 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
5709
5710         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
5711
5712         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
5713         Thanks to Mike Nordell <tamlin at algonet dot se>.
5714
5715 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5716
5717         * lib/dnsapi.def: New file.
5718         * lib/test.c: Include windns.h.
5719
5720 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
5721
5722         * include/windns.h: New file.
5723
5724 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5725
5726         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
5727         defines.
5728         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
5729         (SQLSetDescFieldW): Correct prototype.
5730         (SQLSetDescFieldA): Add prototype.
5731         (SQLGetDescFieldW): Add prototype.
5732
5733 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
5734
5735         * include/winuser.h (DFC_POPUPMENU): Add define.
5736
5737 2004-02-07  Dan Aloni  <da-x@gmx.net>
5738
5739         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
5740         suffix.
5741
5742 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5743
5744         * include/oleacc.h (LIBID_Accessibility): Declare.
5745         * lib/uuid.c (LIBID_Accessibility): Define.
5746
5747 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5748
5749         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
5750         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
5751
5752 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5753
5754         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
5755         defines.
5756
5757 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
5758
5759         * include/winuser.h (RT_MANIFEST): Make conditional on
5760         RC_INVOKED.
5761         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
5762         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
5763         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
5764         defines.
5765
5766 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
5767
5768         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
5769
5770 2004-01-15  Filip Navara  <xnavara@volny.cz>
5771
5772         * include/ddk/mcd.h: Don't care about value of DBG define.
5773         * include/ddk/srb.h: Ditto.
5774         * include/ddk/storport.h: Ditto.
5775         * include/ddk/video.h: Ditto.
5776         * include/nspapi.h (SetServiceW, GetAddressByNameA,
5777         GetAddressByNameW): Correct protoype.
5778         * include/ntsecapi.h (PCUNICODE_STRING): Define.
5779
5780 2004-01-05  Filip Navara  <xnavara@volny.cz>
5781
5782         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
5783         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
5784         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
5785         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
5786         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
5787         FOF_NOCOPYSECURITYATTRIBS): Add defines.
5788         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
5789         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
5790         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
5791         SSF_*): Add defines.
5792         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
5793         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
5794         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
5795         Correct.
5796         (IEnumIDList): Add COBJMACROS.
5797         * include/winuser.h (MIM_*): Add define.
5798
5799 2004-01-04  Filip Navara  <xnavara@volny.cz>
5800
5801         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
5802         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
5803         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
5804         PERSIST_FOLDER_TARGET_INFO): Define structures.
5805         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
5806         IPersistFolder2, IPersistFolder3): Add COM interface
5807         definitions.
5808         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
5809         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
5810         Add COBJMACROS.
5811         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
5812         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
5813         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
5814
5815 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
5816
5817         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
5818         declarations.
5819         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
5820
5821 2004-01-03  Filip Navara  <xnavara@volny.cz>
5822
5823         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
5824         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
5825         declare IID's.
5826         (IErrorInfo): Add COBJMACROS.
5827         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
5828         (CoGetPSClsid): Add protototype,
5829         (CoRegisterPSClsid): Likewise.
5830         * include/objidl.h (IMarshal): Correct methods.
5831         (IMallocSpy): Likewise,
5832         (LPPSFACTORYBUFFER): Add typedef.
5833         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
5834         IID.
5835         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
5836         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
5837         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
5838         structures.
5839         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
5840         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
5841         IQuickActivate): Define interfaces. Declare IID's.
5842         (IPersistPropertyBag2): Add COBJMACROS.
5843         (LPOLEUNDOMANAGER): Add typedef.
5844         (LPPROPERTYBAG2): Likewise.
5845         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
5846         (BINDSPEED): Add definition.
5847         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
5848         IDropTarget): Add COBJMACROS.
5849         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
5850         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
5851         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
5852         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
5853         Add IID definitions.
5854
5855 2004-01-02  Filip Navara  <xnavara@volny.cz>
5856
5857         * include/ddk/winddk.h: Don't care about value of
5858         DBG define.
5859
5860 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
5861             Filip Navara  <xnavara@volny.cz>
5862
5863         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
5864         _DDK_DUMMYUNION_N_MEMBER): New macros.
5865         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
5866         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
5867         Use them.
5868
5869 2004-01-01  Filip Navara  <xnavara@volny.cz>
5870
5871         * include/objbase.h: Don't care about value of DBG define.
5872         * include/objidl.h: Add some COBJMACROS.
5873         * include/ocidl.h: Ditto.
5874         * include/oleidl.h: Ditto.
5875         * include/servprov.h: Ditto.
5876         * include/shlobj.h: Ditto.
5877         * include/shlobj.h (IContextMenu2): Correct parent in
5878         DECLARE_INTERFACE.
5879         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
5880         Define interfaces.
5881         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
5882         Add new constants for _SETUPAPI_VER >= 0x501.
5883
5884 2004-01-01  Filip Navara  <xnavara@volny.cz>
5885
5886         * include/winnt.h (NtCurrentTeb): Add inline definition.
5887
5888 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
5889
5890         * include/shlobj.h (SHCoCreateInstance): Add prototype.
5891         * lib/shell32.def (SHCoCreateInstance): Add export stub.
5892
5893 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
5894
5895         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
5896         (CM_Request_Device_Eject_Ex[AW]): Likwise.
5897         * include/ddk/cfg.h (DN_*): Add defines.
5898
5899 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5900
5901         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
5902
5903 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
5904
5905         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
5906         (NMTVGETINFOTIP): Add structure.
5907
5908 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5909
5910         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
5911         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
5912         DISPLAY_DEVICE_MODESPRUNED): Add defines.
5913
5914 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5915
5916         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
5917         Add macros.
5918         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
5919         constants.
5920         * include/shlobj.h (SHCOLUMNINIT): Add structure.
5921         (SHCOLUMNDAT): Likwise.
5922         (SHCOLUMNID): Likewise.
5923         (SHCOLUMNINFO): Likewise.
5924         (SHCOLSTATE): Add enum.
5925         (IColumnProvider): Add COM interface.
5926         (IQueryInfo): Likewise.
5927         (IShellIconOverlayIdentifier): Likewise.
5928         * include/shlguid.h (IID_IColumnProvider) Declare.
5929         (IID_IQueryInfo): Likweise.
5930         (IID_IShellIconOverlayIdentifier): Likwise.
5931         * lib/shell32.c (IID_IColumnProvider) Define.
5932         (IID_IQueryInfo): Likweise.
5933         (IID_IShellIconOverlayIdentifier): Likwise.
5934
5935 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
5936
5937         * include/winuser.h (RT_MANIFEST): Add define.
5938
5939 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
5940
5941         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
5942
5943 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
5944
5945         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
5946         (GetFiberData): Likewise.
5947         (GetCurrentFiber): Change volatile to __volatile__.
5948         (GetFiberData): Likewise.
5949
5950 2003-11-27  Christopher Faylor  <cgf@redhat.com>
5951
5952         * lib/Makefile.in: Use make function to locate .mri file to allow
5953         building in directory other than source directory.
5954
5955 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
5956
5957         * lib/vfw32.def: Remove, replacing with ...
5958         * lib/msvfw32.def: New file.
5959         * lib/avicap32.def: New file.
5960         * lib/avifil32.def: New file.
5961         * lib/vfw32.mri: New file.
5962         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
5963         import libs with multiple dll's.
5964         (LIBS): Add MIMPLIBS.
5965         (DISTFILES): Add MRI_FILES.
5966         (libvfw32.a): Build using mri script.
5967
5968 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
5969
5970         * include/winnt.h (PAGE_*): Group defines together. Change
5971         constants to hex notation.
5972
5973 2003-11-15  Manu B  <manubee@users.sourceforge.net>
5974
5975         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
5976
5977 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
5978
5979         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
5980         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
5981         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
5982         Add prototypes.
5983         * lib/shell32.def: Add stubs.
5984
5985         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
5986         compiler warnings.
5987
5988 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
5989
5990         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
5991
5992 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
5993
5994         * include/windows.h (CopyCursor): Define as macro.
5995
5996 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
5997
5998         * include/winnt.h (CONTAINING_RECORD): Add macro.
5999
6000 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6001
6002         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
6003         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
6004         defines.
6005
6006 2003-10-13  Filip Navara  <xnavara@volny.cz>
6007
6008         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
6009         defines for Dynamic Storage Arrays.
6010         (DPA_*): Likewise, for Dynamic Pointer Arrays.
6011         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
6012         and defines for Flat ScrollBars.
6013         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
6014         DefSubclassProc): Add prototypes for subclassing.
6015         (DrawShadowText): Add prototype.
6016         (COMCTL32_VERSION): Define.
6017
6018 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
6019
6020         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
6021         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
6022
6023 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
6024
6025         * include/winnt.h (SM_REMOTESESSION): Add define.
6026         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
6027
6028 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
6029
6030         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
6031         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
6032         duplicate definitions.
6033         (KP_X, KP_Y): Correct typos.
6034
6035 2003-10-11  Manu B  <manubee@users.sourceforge.net>
6036
6037         * include/afxres.h: New file.
6038
6039         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
6040         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
6041         ENM_SCROLLEVENTS): Add constants.
6042
6043         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
6044
6045 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6046
6047         * include/errorep.h: New file.
6048
6049         * lib/faultrep.def: New file.
6050
6051 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6052
6053         * include/winbase.h (AddVectoredExceptionHandler): Define if
6054         _WIN32_WINNT >= 0x0500.
6055
6056         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
6057         _WIN32_WINNT >= 0x0500.
6058
6059 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
6060
6061         * include/winbase.h (AddVectoredExceptionHandler): Only define if
6062         _WIN32_WINNT >= 0x0501.
6063
6064 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6065
6066         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
6067         UnregisterWaitEx): Add functions.
6068
6069         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6070         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
6071         or guard function. The MSDN says it is available on Windows XP and
6072         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
6073         Huh?
6074
6075         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
6076         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
6077         ZombifyActCtx, QueryActCtxW): Add functions.
6078
6079         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6080         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
6081         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
6082         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
6083
6084         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
6085         SetFirmwareEnvironmentVariable[AW]): Add functions.
6086
6087         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
6088         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
6089         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
6090         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
6091         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
6092
6093         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6094         (PVECTORED_EXCEPTION_HANDLER): Add callback.
6095
6096         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6097         (ACTIVATION_CONTEXT_INFO_CLASS,
6098         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
6099         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
6100         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
6101         Add structures.
6102
6103         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
6104         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
6105         SetFileShortName[AW], SetFileValidData,
6106         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
6107         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
6108
6109 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6110
6111         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
6112         ResetWriteWatch): Add function.
6113
6114         * include/winbase.h [_WIN32_WINNT >= 0x0500]
6115         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
6116         Add functions.
6117
6118         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6119         (GetSystemWow64Directory[AW], HeapQueryInformation,
6120         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
6121         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
6122         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
6123         RemoveVectoredExceptionHandler): Add functions.
6124
6125         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
6126         Add enumeration.
6127
6128         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
6129         Add function.
6130
6131         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
6132         Add function. The MSDN Magazine of June 2003 reads:
6133                 RestoreLastError is an enigma. It's code is identical to
6134                 SetLastError. It's unclear to me why it was made into a
6135                 separate API.
6136
6137         * lib/user32.def (GetSystemWindowsDirectory[AW],
6138         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
6139         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
6140         InterlockedFlushSList, InterlockedPopEntrySList,
6141         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
6142         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
6143         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
6144         RestoreLastError): Add functions.
6145
6146 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6147
6148         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
6149         GetProcessIoCounters): Add functions.
6150
6151         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
6152         Move around, needed by GetComputerNameEx.
6153
6154         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
6155         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
6156         Add functions.
6157
6158         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6159         (ACTCTX_SECTION_KEYED_DATA): Add structure.
6160
6161         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
6162         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
6163         GetProcessId, GetSystemRegistryQuota): Add functions, available on
6164         Windows XP SP1 and better.
6165
6166         * include/winnt.h [_WIN32_WINNT >= 0x0501]
6167         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
6168         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
6169         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
6170         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
6171         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
6172         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
6173         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
6174         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
6175
6176         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
6177         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
6178         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
6179         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
6180         Add functions.
6181
6182 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6183
6184         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6185         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
6186         DebugSetProcessKillOnExit): Add functions.
6187
6188         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
6189         DeleteTimerQueueEx, DeleteTimerQueueTimer,
6190         DnsHostnameToComputerName[AW]): Add functions.
6191
6192         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
6193         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
6194         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
6195
6196 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
6197
6198         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
6199         on Windows XP and later.
6200
6201 2003-10-07  Manu B  <manubee@users.sourceforge.net>
6202
6203         * include/commctrl.h (TreeView_Select): Returns BOOL.
6204
6205 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6206
6207         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
6208
6209         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6210         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
6211
6212         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
6213         CreateTimerQueueTimer): Add function.
6214
6215         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6216         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
6217
6218         * include/winbase.h [_WIN32_WINNT >= 0x0501]
6219         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
6220
6221         * include/winnt.h (WT_*): Add constants.
6222
6223         * lib/user32.def (CancelDeviceWakeupRequest,
6224         CreateMemoryResourceNotification, CreateTimerQueueTimer,
6225         DeactivateActCtx): Add functions.
6226
6227 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6228
6229         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
6230         Add function. Sometimes I don't understand MSDN. This function is
6231         available on Windows XP and Server 2003, but the SDK is supposed to
6232         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
6233         Mmmh...
6234
6235         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
6236         Guard function. Same remark as above.
6237
6238         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
6239         Add functions.
6240
6241 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6242
6243         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
6244         Add constants.
6245
6246         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
6247         structures.
6248
6249         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
6250         function. MSDN says the first argument is HACTCTX but I'm not sure
6251         where such a specialized handle is defined, so use HANDLE instead.
6252
6253         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
6254         CheckNameLegalDOS8Dot3[AW]): Add functions.
6255
6256         * lib/user32.def (ActivateActCtx, AttachConsole,
6257         CheckNameLegalDOS8Dot3[AW]): Add functions.
6258
6259         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6260         Unfortunately I don't know which header to put the declarations in.
6261
6262 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6263
6264         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6265         Add constants.
6266
6267         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6268         constants for National Language Support.
6269
6270         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6271         Language Support.
6272
6273         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6274         Language Support.
6275
6276         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6277         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6278         Add functions.
6279
6280         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6281         functions. Strange... I am unable to find which library contains
6282         these functions. Can't find anything with pexports. Any clue?
6283
6284         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6285         SetUserGeoID): Add functions.
6286
6287 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6288
6289         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6290         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6291
6292         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6293         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6294         value for constants.
6295
6296 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6297
6298         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6299         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6300         the algorithms.
6301
6302 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6303
6304         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6305
6306 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6307
6308         * include/wincrypt.h (KP_*): Add constants. Needed by
6309         CryptSetKeyParam() and other functions.
6310
6311 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6312
6313         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6314         Add constants, related to Console Accessibility.
6315
6316 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6317
6318         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6319         wrong value for constant.
6320
6321 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6322
6323         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6324
6325         * include/uxtheme.h: Cleanup.
6326         * include/tmschema.h: Cleanup.
6327
6328 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6329
6330         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6331         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6332
6333 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6334
6335         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6336
6337 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6338
6339         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6340         both winuser.h and dbt.h.
6341         * include/dbt.h (BSF_*, BSM_*): Likewise.
6342
6343         * include/winuser.h (struct tagRAWINPUT): Remove
6344         _ANONYMOUS_UNION tag from named union.
6345         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6346
6347 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6348
6349         * include/dhcpcdsk.h: New file.
6350         Note that MSDN is confused about whether it should start constant
6351         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6352         experience suggests it's DHCPCAPI with `C'.
6353
6354         * lib/dhcpcsvc.def: New file.
6355
6356 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6357
6358         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6359         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6360
6361         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6362         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6363         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6364         for use in RAWINPUTDEVICE.
6365
6366         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6367         (GetRawInputDeviceInfo[AW]): Ooops... there are
6368         ANSI/Unicode versions of this function.
6369
6370         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6371         are ANSI/Unicode versions of this function.
6372
6373 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6374
6375         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6376         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6377         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6378         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6379         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6380         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6381         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6382         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6383         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6384         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6385         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6386         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6387         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6388         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6389         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6390         RIDI_DEVICEINFO): Add constants.
6391
6392         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6393         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6394         RAWINPUTDEVICELIST): Add structures.
6395
6396         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6397         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6398         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6399
6400         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6401         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6402         GetRegisteredRawInputDevices): Add functions.
6403
6404 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6405
6406         * include/winable.h (BlockInput): Add function.
6407
6408         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6409         For use with WINDOWINFO structure.
6410
6411         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6412         Add function.
6413
6414         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6415         Add function.
6416
6417         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6418         Add function...
6419
6420         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6421         ...and duplicate.
6422
6423         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6424         Guard function...
6425
6426         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6427         ...and duplicate.
6428
6429         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6430         Guard function...
6431
6432         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6433         ...and duplicate.
6434
6435         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6436         HARDWAREINPUT, INPUT): Guard structures...
6437
6438         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6439         HARDWAREINPUT, INPUT): ...and duplicate.
6440
6441         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6442         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6443
6444         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6445         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6446
6447         * include/winuser.h: Move around some lines. Reformat according
6448         to recommended or dominant style. Remove FAR keyword.
6449
6450         * include/winable.h: Move around some lines.
6451
6452         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6453         LockWorkStation, UnhookWinEvent): Add functions.
6454
6455 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6456
6457         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6458         PW_CLIENTONLY): Add function and constant.
6459
6460         * lib/user32.def (PrintWindow): Add function.
6461
6462 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6463
6464         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6465
6466         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6467
6468 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6469
6470         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6471         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6472         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6473
6474         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6475
6476 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6477
6478         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6479         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6480         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6481
6482         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6483         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6484         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6485
6486         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6487         Add function.
6488
6489         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6490         Add functions.
6491
6492 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6493
6494         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6495         ACE_OBJECT_TYPE_PRESENT): Add constants.
6496         For use with OBJECTS_AND_NAME structure.
6497
6498 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6499
6500         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6501         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6502         void* instead.
6503
6504         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6505         PINHERITED_FROM[AW]): Add structures.
6506
6507         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6508
6509 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6510
6511         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6512
6513 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6514
6515         * lib/version.def (LIBRARY): Quote name.
6516
6517 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6518
6519         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6520         and constants.
6521
6522         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6523         GR_USEROBJECTS): Add functions and constants.
6524
6525         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6526         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6527
6528         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6529         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
6530         constants.
6531
6532         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
6533         GetMouseMovePointsEx, InSendMessageEx): Add functions.
6534
6535 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6536
6537         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
6538         BroadcastSystemMessageW, BroadcastSystemMessageEx,
6539         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6540         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
6541         BSF_RETURNHDESK): Add functions and constants.
6542
6543         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
6544         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
6545
6546         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
6547         GetProcessDefaultLayout, SetProcessDefaultLayout,
6548         RealChildWindowFromPoint, SetProcessDefaultLayout,
6549         SwitchToThisWindow): Add functions.
6550
6551         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
6552         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6553         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
6554         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
6555         RealChildWindowFromPoint, SetProcessDefaultLayout,
6556         SwitchToThisWindow): Add function.
6557
6558 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6559
6560         * include/winuser.h (DeregisterShellHookWindow): Add function.
6561
6562         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
6563
6564         * lib/user32.def (EndTask): Add function.
6565
6566         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
6567         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
6568
6569         * include/winable.h: Reorder target macros.
6570
6571         * lib/*.def: Cleanup.
6572
6573 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6574
6575         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
6576         function.
6577
6578         * lib/user32.def (AnimateWindow): Add function. By the way
6579         there are ~ 140 symbols missing from this file when comparing
6580         to user32.dll on Windows XP.
6581
6582 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6583
6584         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
6585         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
6586         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
6587         AnimateWindow().
6588
6589 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6590
6591         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
6592         LPGUITHREADINFO): Add function and associated typedef...
6593
6594         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
6595         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
6596         seems to be required on older versions of Windows.
6597
6598 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6599
6600         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
6601         function. MSDN suggests using gluErrorUnicodeStringWIN
6602         instead of gluErrorString, as it allows both ANSI and Unicode
6603         error strings.
6604
6605         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
6606         returned pointer const for consistency reasons.
6607
6608 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6609
6610         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
6611         Function exists in glu32.def but is undocumented on MSDN.
6612         A Google search came up with this declaration.
6613
6614 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6615
6616         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
6617         headers from OpenGL Sample Implementation. Windows ships with
6618         GLU 1.2 so some constants and functions were removed. Then some
6619         typedef's and function declarations were reworked to look like
6620         the previous GL/glu.h.
6621
6622 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6623
6624         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
6625         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
6626         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
6627
6628         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
6629         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
6630         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
6631         and `enum THEMESIZE'.
6632
6633 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6634
6635         * include/uxtheme.h: New file.
6636         * include/tmschema.h: New file.
6637         * include/uxtheme.def: New file.
6638         * lib/test.c: Include uxtheme.h, tmschema.h.
6639
6640 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6641
6642         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
6643         Add defines.
6644
6645 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6646
6647         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6648         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
6649         <winable.h> as seems to be required on older versions of
6650         Windows.
6651
6652 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6653
6654         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
6655         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6656         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
6657         Add defines, the last one only on Windows XP...
6658
6659         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
6660         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6661         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
6662         them in <winable.h> as seems to be required on older
6663         versions of Windows.
6664
6665 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6666
6667         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
6668         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6669         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6670         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
6671         back into <winuser.h>...
6672
6673         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
6674         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6675         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6676         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
6677         comment out in <winable.h>. MSDN may say <winable.h> but this
6678         breaks many programs. It seems it used to be <winable.h> on
6679         older versions of Windows.
6680
6681 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
6682
6683         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
6684         Thanks to Will Levine  <willll@users.sourceforge.net>
6685
6686 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6687
6688         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
6689         const struct sockaddr*.
6690         (LPWSPCONNECT): Likewise.
6691         (LPWSPJOINLEAF): Likewise.
6692         (LPWSPSENDTO): Likewise.
6693         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
6694
6695 2003-09-15  Filip Navara  <xnavara@volny.cz>
6696
6697         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
6698         Add definitions.
6699
6700 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
6701
6702         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
6703         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
6704         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
6705         DISPLAY_DEVICE_MODESPRUNED): Define constants.
6706         (ChangeDisplaySettingsEx[A,W]): Add prototype.
6707
6708         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
6709         (EnumDisplayDevices[A,W]): Likewise.
6710
6711 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6712
6713         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
6714         throughout.
6715
6716 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6717
6718         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6719         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6720         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6721         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6722         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
6723         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6724         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6725         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
6726         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6727         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6728         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6729         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6730         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
6731         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6732         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6733         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
6734         with documentation.
6735         * include/olectl.h: Do #include <ocidl.h>.
6736         * include/ocidl.h: Don't #include <olectl.h>.
6737
6738 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6739
6740         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
6741         Change guards to use numeric constants, throughout.
6742
6743 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
6744
6745         * include/w32api.h: Increment version to 2.5.
6746         * Makefile.in: Ditto.
6747
6748 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
6749
6750         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
6751         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
6752
6753 2003-09-08  Filip Navara  <xnavara@volny.cz>
6754
6755         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
6756         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
6757
6758 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
6759
6760         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
6761         * include/winbase.h (_NT5, etc): Ditto.
6762
6763 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
6764
6765         * lib/snmpapi.def (LIBRARY) Add library name.
6766         Remove '\r', throughout.
6767         * lib/wsnmp32.def: Remove '\r', throughout.
6768         * lib/igmpagnt.def: Likewise.
6769
6770 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
6771
6772         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
6773         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
6774         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
6775         (MWMO_*): Add flags.
6776
6777         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
6778         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
6779         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
6780         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
6781
6782 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
6783
6784         * lib/test.c: Add vfw.h to includes.
6785         * include/mmsystem.h: Add #ifndef guard to definition of
6786         mmioFOURCC macro.
6787         * include/vfw.h: Protect __OBJC__ from COM declarations.
6788
6789 2003-08-26  Filip Navara  <xnavara@volny.cz>
6790
6791         * include/vfw.h: New file.
6792
6793 2003-08-26  Filip Navara  <xnavara@volny.cz>
6794
6795         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
6796         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
6797         PIO_COMPLETION_ROUTINE.
6798
6799 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
6800
6801         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
6802         includes.
6803
6804 2003-08-26  Filip Navara  <xnavara@volny.cz>
6805
6806         * include/snmp.h: New file.
6807         * include/winsnmp.h: New file.
6808         * include/mgmtapi.h: New file.
6809         * lib/snmpapi.def: New file.
6810         * lib/wsnmp32.def: New file.
6811         * lib/igmpagnt.def: New file.
6812         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
6813         (SnmpMgrGetTrapEx): Ditto.
6814         (SnmpMgrMIB2Disk): Remove.
6815         (dbginit): Remove.
6816
6817 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
6818
6819         * include/ddk/ntifs.h: Change all C++ style comments to C.
6820         * include/GL/gl.h: Ditto.
6821
6822 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
6823
6824         * include/shlobj.h (SFGAO_GHOSTED): Correct.
6825         (SFGAO_HIDDEN): Add define.
6826
6827 2003-08-25  Filip Navara  <xnavara@volny.cz>
6828
6829         * include/commctrl.h (ILCF_*): Add defines.
6830         (ILD_*): Ditto.
6831         (HDS_*): Ditto.
6832         (IPN_FIRST, IPN_LAST): Cast to UINT.
6833         (SBN_FIRST, SBN_LAST): Add defines.
6834         (PGN_*): Ditto.
6835         (HDF_JUSTIFYMASK): Fix typo.
6836         (HDM_*): Add defines.
6837         (HICF_*): Ditto.
6838         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
6839         (TBSTATE_MARKED): Add define.
6840         (TBSTYLE_EX_*): Add defines.
6841         (TBCDRF_*): Ditto.
6842         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
6843         (TB_*): Ditto.
6844         (TBN_*): Ditto.
6845         (TBNRF_*): Ditto.
6846         (TTF_*): Ditto.
6847         (TBCD_*): Ditto.
6848         (TBDDRET_*): Ditto.
6849         (TBIMHT_*): Ditto.
6850         (TTM_*): Ditto.
6851         (UDM_*): Ditto.
6852         (TBIF_BYINDEX): Define as hex constant.
6853         (CDIS_*): Add defines.
6854         (CDDS_SUBITEM): Add define.
6855         (LVIF_*): Add defines.
6856         (LVM_*): Ditto.
6857         (LVGIT_UNFOLDED): Add define.
6858         (TVM_): Add defines.
6859         (TVE_EXPANDPARTIAL): Add define.
6860         (TVGN_LASTVISIBLE): Ditto.
6861         (TVN_*): Add defines.
6862         (TVNRET_*): Add defines.
6863         (TCIF_STATE): Add define.
6864         (NM_TOOLTIPSCREATED): Ditto.
6865         (CCM_*): Add defines.
6866         (INFOTIPSIZE): Add numeric value.
6867         (ODT_LISTVIEW): Ditto.
6868         (MCM_GETMAXTODAYWIDTH): Ditto.
6869         (MCHT_*): Add defines.
6870         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
6871         (PGF_*): Add defines.
6872         (PGM_*): Ditto.
6873         (TBINSERTMARK): Add structure.
6874         (LPIMAGEINFO) Add typedef.
6875         (LPHDHITTESTINFO): Ditto.
6876         (NMLVGETINFOTIP[AW]: Add structures.
6877         (NMTBCUSTOMDRAW): Add structure.
6878         (TTTOOLINFOA_V*_SIZE): Add macros.
6879         (TTTOOLINFOW_V1_SIZE): Ditto.
6880         (IMAGELISTDRAWPARAMS): Add new members for WXP.
6881         (LVITEM[AW]: Ditto.
6882         (TCITEM[AW]):Ditto.
6883         (CCSIZEOF_STRUCT): Correct macro definition.
6884         (ListView_*): Add new macros.
6885         (HIMAGELIST): Correct typedef.
6886         (HTREEITEM): Ditto.
6887
6888 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
6889
6890         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
6891         TCHITTESTINFO for backward compatibility.
6892         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
6893         compatibility.
6894
6895 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
6896
6897         * include/objidl.h (COBJMACROS): Define macros only
6898         if using C interace.
6899         * include/unknwn.h: Ditto.
6900         * include/comcat.h: Ditto.
6901
6902 2003-08-24  Filip Navara  <xnavara@volny.cz>
6903
6904         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
6905         PSH_NOCONTEXTHELP): Define.
6906         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
6907         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
6908         (LPDLGTEMPLATE[AW]): Add typedefs.
6909
6910 2003-08-22  Filip Navara  <xnavara@volny.cz>
6911
6912         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
6913         Add prototypes.
6914         BuildImpersonateTrustee[AW]): Add prototypes.
6915         GetMultipleTrustee[AW]): Add prototypes.
6916         GetMultipleTrusteeOperation[AW]): Add prototypes.
6917
6918 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
6919
6920         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
6921
6922 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
6923
6924         * include/shlobj.h (IPersistFolder::GetClassID):
6925         Correct declaration.
6926         (CMF_*) Add missing defines.
6927
6928 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
6929
6930         * include/winuser.h (DC_BUTTONS): Add define.
6931
6932 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
6933
6934         * include/winuser.h (DC_GRADIENT): Add define.
6935
6936 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
6937
6938         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
6939         older TBSTYLE_* constants.
6940
6941 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
6942
6943         * include/commctrl.h (TB_*) Group defines together.
6944
6945 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
6946
6947         * include/winuser.h (ICON_SMALL2): Define.
6948         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
6949         Define.
6950         * include/shlobj.h (SHDRAGIMAGE): Define structure.
6951         (IDragSourceHelper) Define interface.
6952         (IDropTargetHelper): Likewise.
6953         (IExtractIcon): Unicode it.
6954         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
6955         OnStateChange and IncludeObject methods.
6956
6957 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
6958
6959         * include/commctrl.h (TreeView_GetScrollTime,
6960         TreeView_SetScrollTime): Define macros.
6961         * include/winuser.h (GetShellWindow): Add prototype.
6962         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
6963
6964 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
6965
6966         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
6967         IID_IDragSourceHelper): Declare.
6968         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
6969         IID_IDragSourceHelper): Define.
6970
6971 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
6972
6973         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
6974         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
6975         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
6976
6977 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
6978
6979         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
6980         CGID_ShellServiceObject): Remove definitions.
6981         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
6982
6983 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
6984
6985         * include/shlobj.h (SHELLSTATE): Add structure.
6986         (SHGetSetSettings): Add prototype.
6987         (SHGetSettings): Add prototype.
6988         * lib/shell32.def (SHGetSetSettings): Add stub.
6989
6990 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
6991
6992         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
6993         (Header_OrderToIndex): Add macro.
6994         (Header_GetOrderArray): Add macro.
6995
6996         * include/commdlg.h (FR_MATCHALEFHAMZA,
6997         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
6998
6999 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
7000
7001         * include/commctrl.h (TVM_GETSCROLLTIME,
7002         TVM_SETSCROLLTIME): Add defines.
7003
7004 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7005
7006         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
7007         (SHGetInstanceExplorer): Correct return type.
7008         (SHGetFolderPath[AW]): Likewise.
7009         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
7010         for report.
7011
7012 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7013
7014         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
7015
7016 2003-08-01  Filip Navara  <xnavara@volny.cz>
7017
7018         * include/winldap.h: New file.
7019         * include/ntldap.h: New file.
7020         * include/winber.h: New file.
7021         * lib/winldap32.def: New file.
7022
7023 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
7024
7025         * include/ddk/atm.h: Remove stray '.';
7026
7027 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
7028
7029         * include/ddk/winddk.h: Remove trailing ';' from macros,
7030         throughout. Add () around defines with cast returns, throughout.
7031
7032 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
7033
7034         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
7035         (SFGAOF, SHGDNF): Add typedef's.
7036         (SHCONTF): Extend enum.
7037
7038 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
7039
7040         * include/shellapi.h: Include all structs within pshpack2.h/
7041         poppack.h block.
7042
7043 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
7044
7045         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
7046         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
7047         _WIN32_WINDOWS, not WINVER.
7048         (AllowSetForegroundWindow,LockSetForegroundWindow,
7049         SetLayeredWindowAttributes): Likewise.
7050         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
7051         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
7052         Add stubs.
7053
7054 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
7055
7056         * include/objidl.h (IMalloc): Fix typo.
7057
7058 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
7059
7060         * include/dkk/ntifs.h: Fix typo in guard for
7061         #pragma GCC system_header.
7062
7063 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7064
7065         * include/objidl.h (PropVariant): Add CHAR cVal field
7066         to union.
7067         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
7068         FMTID_UserDefinedProperties): Declare.
7069
7070 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7071
7072         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
7073
7074 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
7075
7076         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
7077         DUPLICATE_SAME_ACCESS): Remove defines.
7078         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
7079         ddk/ntapi.h defines.
7080         (SEM_*) : Likewise.
7081         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
7082         ddk/ntifs.h defines.
7083         (FILE_*): Likewise.
7084         (MEM_IMAGE, SEC_*): Likewise.
7085         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
7086         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
7087         (TOKEN_*): Sync with ddk/ntifs.h defines.
7088         * include/ddk/ntapi.h: Add comments noting definitions in
7089         winbase.h.
7090         * include/ddk/ntifs.h: Add comments noting definitions in
7091         winnt.h.
7092         * include/ddk/winddk.h: Add comments noting definitions in
7093         winnt.h.
7094
7095 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
7096
7097         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
7098         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
7099
7100 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
7101
7102         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
7103
7104 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
7105
7106         Clean up warnings in ddk.
7107
7108         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
7109         conditional on  __cplusplus.
7110         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7111         defines, throughout.
7112         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
7113         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
7114         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
7115         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
7116         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7117         defines, throughout.
7118         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
7119         defines, throughout. Remove trailing semicolon from *_S 'structure'
7120         macro expansion, throughout. Remove trailing semicolon from
7121         DECLARE_UNKNOWN_STRUCT macro expansion.
7122         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
7123         _ANONYMOUS_UNION.
7124         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
7125         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
7126         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
7127         Add _ANONYMOUS_UNION.
7128         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
7129         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
7130         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
7131         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
7132         match proto in ntapi.h.
7133         (ZwSetInformationObject): Likewise.
7134         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
7135         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
7136         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
7137         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
7138         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
7139         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
7140         last comma.
7141         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
7142         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
7143         trailing semicolon when expanding macro.
7144         (GENERAL_LOOKASIDE_S): Likewise.
7145         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
7146         Change inline to __inline, throughout.
7147         * include/ddk/winnt4.h: Change inline to __inline, throughout.
7148
7149 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7150
7151         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
7152         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
7153         KPRIORITY.
7154         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
7155         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
7156         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
7157         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
7158         to anonymous structs.
7159
7160 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
7161
7162         * include/winnt.h (PVOID): Move to before HANDLE typedef.
7163
7164         * include/winuser.h (mouse_event): Correct type of fifth param,
7165         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
7166
7167 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
7168
7169         * include/winnt.h (HANDLE): Define based on STRICT filter.
7170         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
7171         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
7172
7173 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
7174
7175         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
7176         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
7177         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
7178         for report.
7179
7180 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
7181
7182         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
7183
7184 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
7185
7186         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
7187         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
7188         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
7189         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
7190         (TPM_RECURSE): Add guard for Win98/Win2K.
7191         Thanks to Magnus Olsen <greatlord@users.sf.net>.
7192
7193 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7194
7195         * include/basetyps.h (small, hyper): Change to __small and __hyper to
7196         avoid user namespace conflicts.
7197
7198 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
7199
7200         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
7201         _IE3, _IE4, _IE5, _IE6): Add definitions.
7202         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
7203         >= Win98.
7204         Change existing guards to use the above macro names as appropriate.
7205         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
7206         Note: Also added to mingw/include/_mingw.h.
7207
7208 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
7209
7210         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
7211         PathFindSuffixArrayA, PathFindSuffixArrayW,
7212         PathFindExtensionA, PathFindExtensionW, StrStrW
7213         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
7214         explicit type.
7215
7216 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
7217
7218         * include/richedit.h (PARAFORMAT2): Add definition.
7219         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
7220         missing constants.
7221
7222 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7223
7224         * include/shellapi.h (SHQUERYRBINFO): Add structure,
7225         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
7226         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
7227         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
7228
7229 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
7230
7231         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
7232         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
7233         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
7234         that these are obsolete no-ops.
7235
7236 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
7237
7238         * include/winbase.h (GetProcessWorkingSetSize,
7239         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
7240         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
7241         Correct prototypes.
7242
7243 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
7244
7245         * include/winuser.h (TPM_RECURSE): Add define.
7246
7247 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7248
7249         * lib/test.c: #include <powrprof.h>.
7250
7251 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
7252
7253         * include/powerprof.h: New file.
7254         * lib/powerprof.def: New file.
7255
7256 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
7257
7258         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7259         protection.
7260
7261 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7262
7263         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7264         hInstance members to HINSTANCE.
7265         Thanks to: Brenden T. <brenden@rcsis.com>
7266
7267 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7268
7269         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7270         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7271
7272 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7273
7274         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7275         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7276         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7277         Remove.
7278         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7279
7280 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7281
7282         * lib/oleacc.def: New file.
7283         * include/winable.h: New file.
7284         * include/oleacc.h: Add extern "C" guard.
7285         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7286         (AccessibleChildren, AccessibleObjectFromEvent,
7287         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7288         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7289         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7290         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7291         * include/winuser.h (NotifyWinEvent): Add prototype.
7292         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7293         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7294         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7295         OBJID_SOUND): Move from here to...
7296         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7297         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7298         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7299         OBJID_SOUND): Here, as per documentation.
7300         * lib/test.c: Include winable.h.
7301         * lib/user32.def (NotifyWinEvent): Add missing export.
7302
7303 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7304
7305         * include/winbase.h (HeapCompact): Correct prototype.
7306         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7307         SLIST_HEADER): Add.
7308
7309 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7310
7311         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7312
7313 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7314
7315         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7316
7317 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7318
7319         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7320         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7321
7322 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7323
7324         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7325         lpGlyphs field to LPWSTR.
7326
7327 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7328
7329         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7330         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7331         (PP_*): Add defines.
7332         (CryptContextAddRef): Add prototype.
7333         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7334
7335 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7336
7337         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7338
7339 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7340
7341         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7342         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7343         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7344         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7345         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7346         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7347         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7348         readability.
7349         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7350         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7351
7352 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7353
7354         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7355         Unname anonymous unions if NONAMELESSUNION not defined.
7356
7357 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7358
7359         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7360
7361 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7362
7363         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7364         anonymous unions as GCC extension.
7365
7366 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7367
7368         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7369         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7370         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7371         commented out).
7372         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7373
7374 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7375
7376         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7377         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7378         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7379
7380 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7381
7382         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7383         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7384         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7385         IProvideClassInfo2,IConnectionPointContainer,
7386         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7387         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7388         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7389         IPicture,IPictureDisp): Move from here to...
7390         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7391         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7392         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7393         IProvideClassInfo2,IConnectionPointContainer,
7394         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7395         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7396         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7397         IPicture,IPictureDisp): Here, as per documentation.
7398
7399 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7400
7401         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7402         * include/winbase.h (TerminateJobObject,
7403         AssignProcessToJobObject): Likewise.
7404         * include/servprov.h: New header.
7405         * lib/test.c: Include servprov.h.
7406
7407 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7408
7409         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7410         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7411         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7412         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7413         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7414         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7415
7416 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7417
7418         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7419         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7420         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7421
7422 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7423
7424         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7425         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7426         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7427         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7428         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7429         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7430         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7431
7432 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7433
7434         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7435
7436 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7437
7438         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7439         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7440
7441 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7442
7443         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7444         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7445         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7446
7447 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7448
7449         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7450
7451 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7452
7453         * include/oaidl.h (ITypeMarshal): Add interface.
7454
7455 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7456
7457         * include/winioctl.h: Clean up formatting.
7458         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7459         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7460         (DISK_CACHE_INFORMATION): Likewise.
7461         (DISK_DETECTION_INFO): Likewise.
7462         (DISK_PARTITION_INFO): Likewise.
7463         (PARTITION_INFORMATION_EX): Likewise.
7464         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7465
7466 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7467
7468         * include/winbase.h (DeleteVolumeMountPoint[AW],
7469         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7470         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7471         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7472         SetVolumeMountPoint[AW]): Add prototypes.
7473         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7474         IOCTL_DISK_SET_PARTITION_INFO_EX,
7475         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7476         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7477         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7478         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7479         IOCTL_DISK_GET_CACHE_INFORMATION,
7480         IOCTL_DISK_SET_CACHE_INFORMATION,
7481         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7482         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7483         FSCTL_MOVE_FILE): Define.
7484         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7485         DISK_CACHE_INFORMATION,
7486         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7487         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7488         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7489         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7490         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7491         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7492         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7493         MOVE_FILE_DATA,
7494         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7495         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7496         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7497         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7498         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7499         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7500         F3_240M_512, and F3_32M_512.
7501         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7502         stubs.
7503
7504 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7505
7506         * include/wingdi.h (DM_SPECVERSION): Define.
7507         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7508         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7509         appropriate _WIN32_WINNT values.
7510
7511 2003-04-15  Chris January  <chris@atomice.net>
7512
7513         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7514         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7515
7516 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7517
7518         * include/winuser.h (VK_*): Add missing defines.
7519
7520 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7521
7522         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7523         documented typedefs for struct _NM_UPDOWN.
7524         Add defines for backward comapatibility.
7525         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7526         * include/wininet.h (IRF_*): Add missing defines.
7527
7528 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7529
7530         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
7531
7532 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
7533
7534         * include/sspi.h: Add comment for FreeCredentialsHandle.
7535
7536 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
7537
7538         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
7539
7540 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
7541
7542         * include/olectl.h (OleLoadPicturePath): Correct prototype.
7543
7544 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
7545
7546         * lib/uuid.c (IID_IHTML*): Move definitions to...
7547         * lib/mshtml-uuid.c: New file.
7548         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
7549
7550 2003-03-30  Michael Sazonov  <traip@comset.net>
7551
7552         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
7553         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
7554         IHTMLImgElement): Add interface definitions.
7555
7556 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
7557
7558         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
7559         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
7560         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
7561         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
7562         RC_INVOKED guard.
7563         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
7564         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
7565
7566 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
7567
7568         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
7569
7570 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
7571
7572         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
7573         TranslateName[AW]): Add prototypes.
7574         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
7575         TranslateName[AW]): Add stubs.
7576         * lib/test.c: Include secext.h.
7577
7578 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
7579
7580         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
7581         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
7582         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
7583         _SpinLock.
7584
7585 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
7586
7587         * include/w32api.h: Increment version to 2.4.
7588         * Makefile.in: Ditto.
7589
7590 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
7591
7592         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
7593         Move structure from here...
7594         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
7595
7596         * include/ddk/ntapi.h (JOBOBJECT_*):
7597         Remove structures and enums definitions.
7598         (JOB_OBJECT*): Move defines from here...
7599         * include/winnt.h (JOB_OBJECT* ): To here.
7600
7601         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
7602         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7603         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7604         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7605         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7606         SYSTEM_POWER_CAPABILITIES): Move enums, structures
7607         and associated defines from here ...
7608         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
7609         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7610         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7611         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7612         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7613         SYSTEM_POWER_CAPABILITIES):To here.
7614
7615         * include/ddk/winddk.h (DEVICE_POWER_STATE,
7616         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
7617         from here...
7618         * include/winnt.h (DEVICE_POWER_STATE,
7619         SYSTEM_POWER_STATE, POWER_ACTION): To here.
7620
7621 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
7622
7623         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
7624         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
7625         (NdisUpdateSharedMemory): Likewise.
7626         (NdisMFreeSharedMemory: Likewise.
7627         (NdisMMapIoSpace: Likewise.
7628
7629 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
7630
7631         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
7632         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
7633         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
7634
7635 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
7636
7637         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
7638         (EnumResourceNames[AW]): Ditto.
7639         (EnumResourceTypes[AW]): Ditto.
7640         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
7641
7642 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
7643
7644         * include/winuser.h (SendInput): Add prototype.
7645         * lib/user32.def (SendInput): Add stub.
7646
7647 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
7648
7649         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
7650         (FSCTL_DELETE_REPARSE_POINT): Likewise.
7651
7652 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
7653
7654         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
7655         (JOBOBJECT_*): Define corresponding structures.
7656
7657 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
7658
7659         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
7660         typedef.
7661
7662 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
7663
7664         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
7665         (Process32{First,Next}{,W}): Ditto.
7666         (Thread32{First,Next}): Ditto.
7667         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
7668
7669 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
7670
7671         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
7672         Thanks to Jim Barton <jmbarton@users.sf.net>.
7673
7674 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
7675
7676         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
7677         member SectionAlignment.
7678
7679 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
7680
7681         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
7682         warnings.
7683         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
7684         * Makefile.in (bindist): Correct process.
7685         * lib/Makefile.in (install): Ditto.
7686         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
7687
7688 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
7689
7690         * include/rasdlg.h: New file.
7691         * lib/rasdlg.def: New file.
7692         * lib/test.c: Include rasdlg.h.
7693
7694 2003-03-06  Christopher January  <chris@atomice.net>
7695
7696         * include/winbase.h (FindFirstVolume): Add declaration.
7697         (FindNextVolume): Add declaration.
7698         (FindVolumeClose): Add declaration.
7699         (GetSystemTimes): Add declaration.
7700         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
7701
7702 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
7703
7704         *lib/kernel32.def (GetSystemTimes): Add stub.
7705
7706 2003-03-04  Heiko Gerdau  <hg@technosis.de>
7707
7708         * oleidl.h (IOleObject): Correct GetUserType prototype.
7709         (IViewObject2): Correct GetExtent prototype.
7710         * olectl.h (DISPIP_): Add new defines
7711         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
7712
7713 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7714
7715         * include/olectl.h (OleLoadPictureEx) Add prototype.
7716         (OleLoadPictureFile): Ditto.
7717         (OleLoadPictureFileEx): Ditto.
7718         (OleLoadPicturePath): Ditto.
7719         (OleSavePictureFile): Ditto.
7720
7721 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7722
7723         * include/objbase.h (CoAddRefServerProcess): Add prototype.
7724         (CoAddReleaseServerProcess): Ditto.
7725         (CoResumeClassObjects): Ditto.
7726         (CoSuspendClassObjects): Ditto.
7727         * include/oleauto.h (V_I1): Define.
7728         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
7729
7730 2003-03-01  Heiko Gerdau  <hg@technosis.de>
7731
7732         * include/oleidl.h (USERCLASSTYPE): Add enum.
7733         * include/ocidl.h (IObjectWithSite): Add interface.
7734
7735 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
7736
7737         Fixup UNICODE thinko in 2003-02-22 patch.
7738         * include/wingdi.h (AddFontMemResourceEx): Add.
7739         (RemoveFontMemResourceEx): Ditto.
7740         (AddFontMemResourceEx[AW]): Remove.
7741         (RemoveFontMemResourceEx[AW]): Ditto
7742         * lib/gdi32.def: (AddFontResourceEx): Add.
7743         (RemoveFontMemResourceEx): Ditto.
7744         (AddFontMemResourceEx[AW]): Remove.
7745         (RemoveFontResourceEx[AW]): Ditto.
7746
7747 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
7748
7749         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
7750         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
7751
7752 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
7753
7754         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
7755         (RemoveFontMemResourceEx[AW]): Ditto
7756         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
7757         (RemoveFontMemResourceEx[AW]): Ditto.
7758
7759 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
7760
7761         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
7762         (NtCurrentTeb): Remove.
7763
7764 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7765
7766         * include/wsahelp.h: Remove ';' after closing
7767         #ifdef __cplusplus brace.
7768         * include/ws2spi.h: Likewise.
7769
7770 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7771
7772         * include/winbase.h (MEMORYSTATUSEX): Add structure.
7773         (GlobalMemoryStatusEx): Add prototype.
7774         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
7775
7776 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
7777
7778         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
7779
7780 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
7781
7782         * include/wingdi.h (AddFontResourceEx[AW]): Add.
7783         (RemoveFontResourceEx[AW]): Ditto
7784         (FR_PRIVATE): Define.
7785         (FR_NOT_ENUM): Define.
7786         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
7787         (RemoveFontResourceEx[AW]): Ditto.
7788
7789 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
7790
7791         * include/w32api.h: Increment version to 2.3.
7792         * Makefile.in: Ditto.
7793
7794 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
7795
7796         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
7797         (Ke386QueryToAccessMap): Ditto.
7798         (Ke386SetIoAccessMap): Ditto.
7799         Thanks to Marcel Telka <telka@users.sf.net>
7800         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
7801         * include/security.h: Include secext.h.
7802         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
7803         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
7804         * include/GL/gl.h: Remove include of glext.h.
7805         Thanks to Greg Couch <gregcouch@users.sf.net>
7806
7807 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
7808
7809         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
7810         using GUID_DEFINED instead.
7811         * include/sqltypes.h: Ditto.
7812         * include/winnt.h: Ditto.
7813         * include/ddk/scsiwmi.h: Ditto.
7814
7815 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
7816
7817         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
7818         prototypes.
7819         Thanks to: John Dallaway  <jld@ecoscentric.com>.
7820
7821 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
7822
7823         * include/commctrl.h (TCM_*): Add missing defines.
7824
7825 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
7826             Danny Smith  <dannysmith@users.sourceforge.net>
7827
7828         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
7829         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
7830         for (_WIN32_IE >= 0x0400).
7831         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
7832         fields for (_WIN32_IE >= 0x0400).
7833
7834 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
7835
7836         * include/winbase.h (CreateFiber): Change first parameter
7837         to SIZE_T.
7838         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
7839         if (_WIN32_WINNT >= 0x0500).
7840
7841 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
7842
7843         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
7844         Add missing typedefs.
7845         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
7846         prototypes.
7847         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
7848
7849 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
7850
7851         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
7852         define.
7853         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
7854
7855 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
7856
7857         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
7858         define.
7859         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
7860         definition.
7861         (WAIT_FAILED): Cast to DWORD.
7862         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
7863         definition.
7864
7865 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
7866
7867         * include/winerror.h: Protect against multiple
7868         definition of WSA* error codes.
7869         * include/winsock.h: Likewise.
7870         * include/winsock2.h: Likewise.
7871
7872 2003-01-27  Bang Dong-Heui
7873             Bang Jun-Young  <junyoung@netbsd.org>
7874
7875         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
7876         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
7877         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
7878
7879
7880 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
7881
7882         * include/ras.h (RASCONN[AW]): Add dwSessionId for
7883         (WINVER >= 0x501).
7884
7885 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
7886
7887         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
7888         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
7889         fields for (WINVER >= 0x501).
7890
7891 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
7892
7893         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
7894         Add stubs.
7895         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
7896         options.
7897
7898 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
7899
7900         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
7901         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
7902
7903 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
7904
7905         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
7906         SE_REGISTRY_WOW64_32KEY.
7907         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
7908
7909 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
7910
7911         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
7912         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
7913         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
7914
7915 2003-01-10  Christopher Faylor  <cgf@redhat.com>
7916
7917         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
7918
7919 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
7920
7921         * lib/dxguid.c: Don't #include <objbase.h>.
7922         * include/unknwn.h: Partially revert change of 2002-12-26.
7923         Don't include <ole2.h>.
7924
7925 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
7926
7927         * lib/dinput.c: Don't #include <objbase.h>.
7928
7929 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7930
7931         * include/windows.h (ole2.h):Do #include for
7932         __WATCOMC__.
7933
7934 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
7935
7936         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
7937         * include/zmouse.h (WHEEL_DELTA): Guard against prior
7938         definition.
7939         (WHEEL_PAGESCROLL): Likewise.
7940         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
7941
7942 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
7943
7944         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
7945         (WHEEL_PAGESCROLL): Add define.
7946
7947 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
7948
7949         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
7950         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
7951         compatability. Add RECT field. Add UNICODE mappings for new
7952         names.
7953         (tagNMREBARCHEVRON): Add struct and typedefs for
7954         _WIN32_IE >= 0x0500.
7955
7956 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
7957
7958         * include/commctrl.h (TOOLINFO[AW]): Update structures.
7959         (LVHITTESTINFO): Likewise.
7960
7961         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
7962         (GRADIENT_RECT): Likewise.
7963
7964 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
7965
7966         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
7967         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
7968         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
7969         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
7970         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
7971         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
7972         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
7973         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
7974         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
7975         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
7976         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
7977         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
7978         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
7979         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
7980         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
7981         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
7982         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
7983         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
7984         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
7985         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
7986         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
7987         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
7988         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
7989         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
7990         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
7991         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
7992         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
7993         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
7994         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
7995         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
7996         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
7997         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
7998         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
7999         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
8000         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
8001         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
8002         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
8003         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
8004         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
8005         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
8006         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
8007         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
8008         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
8009         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
8010         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
8011         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
8012         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
8013         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
8014         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
8015         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
8016         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
8017         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
8018         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
8019         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
8020         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
8021         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
8022         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
8023         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
8024         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
8025         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
8026         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
8027         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
8028         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
8029         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
8030         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
8031         Add missing error codes.
8032
8033 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8034
8035         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
8036         asm code.
8037         (GetFiberData): Likewise.
8038
8039 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8040
8041         * include/winnt.h (GetCurrentFiber): Remove blank input field in
8042         asm code.
8043         (GetFiberData): Likewise.
8044
8045 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8046
8047         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
8048         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
8049         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
8050         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
8051         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
8052         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
8053         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
8054         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
8055         error codes.
8056         Re-sort codes.
8057
8058 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
8059
8060         * include/winspool.h (PRINTER_INFO_6): Add.
8061         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
8062
8063 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
8064
8065         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
8066
8067         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
8068         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
8069         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
8070         Add stubs.
8071
8072 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
8073
8074         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
8075         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
8076
8077 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8078
8079         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
8080
8081 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8082
8083         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
8084         VIETNAMESE_CHARSET): Remove duplicate defines.
8085         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
8086
8087 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8088
8089         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
8090         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8091
8092 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8093
8094         * include/unknwn.h: Include windows.h and ole2.h before header
8095         guard to avoid circular inclusion of COM headers.
8096
8097 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8098
8099         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
8100         ReuseDDElParam): Use __WIN64 compatible typedefs.
8101
8102 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8103
8104         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
8105         lpInheritProperty member const.
8106         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
8107         const.
8108
8109 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8110
8111         * include/commcat.h: Don't include windows.h or ole2.h ifdef
8112         COM_NO_WINDOWS_H.
8113         * include/unknwn.h: Ditto.
8114
8115 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
8116
8117         * include/imm.h (ImmGetCompositionFont[AW],
8118         ImmSetCompositionFont[AW]): Add NOGDI guard.
8119
8120 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
8121
8122         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
8123         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
8124         before using.
8125         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8126         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
8127         definition.
8128         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
8129         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
8130         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
8131         definition.
8132         * include/ddk/scsiwmi.h (GUID): Define if not already done.
8133         (LPCGUID): Likewise.
8134         * include/ddk/tdi.h: Close "Listen flags" comment.
8135         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
8136         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
8137         (VIDEO_ACCESS_RANGE): Guard against prior definition.
8138         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
8139         * include/ddk/win2k.h: Likewise.
8140         * include/ddk/winddi.h: Likewise.
8141         * include/ddk/winddk.h: Likewise.
8142         * include/ddk/winnt4.h: Likewise.
8143         * include/ddk/ws2san.h: Likewise.
8144         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
8145         * include/ddk/video.h: Don't process rest of file ifdef
8146         __WINDDI_H.
8147         * include/ddk/winddi.h: Don't process rest of file ifdef
8148         __VIDEO_H.
8149         * include/ddk/usb.h: Don't process rest of file ifdef
8150         __USBDI_H.
8151         * include/ddk/usbdi.h: Don't process rest of file ifdef
8152         __USB_H.
8153         * include/ddk/usbcamdi.h: Don't process rest of file if
8154         !defined(__USB_H) && !defined(__USBDI_H)
8155
8156 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
8157
8158         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
8159         prototypes.
8160         * include/winuser.h (GetAncestor) Add prototype.
8161         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
8162         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
8163         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
8164         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
8165         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
8166         defines.
8167         * lib/user32.def (GetAncestor@8): Add stub.
8168
8169 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
8170
8171         * include/windows.h: Guard inclusion of wingdi.h,
8172         commdlg.h, winspool.h, ole2.h with NOGDI.
8173         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
8174         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
8175         Guard with NOGDI.
8176
8177 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
8178
8179         * include/oleacc.h (SELFLAG_*): Change to enum.
8180
8181 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
8182
8183         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
8184         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8185
8186 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
8187
8188         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
8189         to UINT.
8190         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
8191
8192 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
8193
8194         * include/winuser.h (AllowSetForegroundWindow,
8195         LockSetForegroundWindow): Add prototypes.
8196         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
8197         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
8198         * lib/winuser.def (AllowSetForegroundWindow,
8199         LockSetForegroundWindow): Add stubs.
8200
8201 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8202
8203         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
8204         UNICODE mappings.
8205         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
8206         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
8207         compatability. Add lParam field. Add UNICODE mappings for new
8208         names.
8209
8210 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
8211
8212         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
8213         Wrap with pshpack2.h/poppack.h to correct alignment.
8214
8215 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
8216
8217         * include/commctrl.h (LVBKIF_*): Add defines.
8218         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
8219         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
8220         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
8221         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
8222         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
8223         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
8224         (ListView_GetBkImage): Add define.
8225         (ListView_SetBkImage): Add define.
8226         (LVBKIMAGE): Add structures and typedefs.
8227
8228 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8229
8230         * include/w32api.h: Increment to version 2.2
8231         * Makefile.in: Ditto.
8232
8233 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
8234
8235         * lib/Makefile.in (dist, install): Correct the install destinations.
8236         * lib/ddk/Makefile.in (dist, install): Ditto.
8237
8238 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
8239
8240         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
8241         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
8242         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
8243         in definitions.
8244         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
8245         IID_IOleControlSite89): Remove.
8246
8247 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8248
8249         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
8250         (IID_IStdMarshalInfo): Ditto.
8251
8252 2002-11-15  Christopher Faylor  <cgf@redhat.com>
8253
8254         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
8255         (IID_IPersistStorage): Ditto.
8256
8257 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
8258
8259         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8260         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8261         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8262         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8263         Correct definitions.
8264
8265 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8266
8267         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8268         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8269         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8270         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8271         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8272         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8273         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8274         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8275         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8276         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8277         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8278         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8279         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8280         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8281         xfilter.h): Change comment to refer w32api package, not MinGW.
8282
8283 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8284
8285         * include/ddk/ntddk.h: Include winnt.h as system header.
8286
8287 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8288
8289         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8290         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8291         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8292         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8293         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8294         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8295         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8296         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8297         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8298         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8299         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8300         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8301         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8302         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8303         xfilter.h): Fix typo in disclaimer comment.
8304
8305 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8306
8307         * include/exdisp.h: Include oaidl.h as system header.
8308
8309 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8310
8311         * include/w32api.h (__W32API_VERSION): Fix.
8312
8313 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8314
8315         * lib/uuid.c (IID_ICatInformation): Correct definition.
8316
8317 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8318
8319         * include/oleauto.h (DeregisterTypeLib): Remove.
8320         (UnRegisterTypeLib): Add prototype.
8321
8322 2002-11-07  Christopher January  <chris@atomice.net>
8323
8324         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8325
8326 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8327
8328         * include/winnt.h (VerSetConditionMask): Add prototype.
8329         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8330
8331 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8332
8333         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8334         definitions and ANSI/UNICODE mappings.
8335         Cleanup whitespace.
8336
8337 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8338
8339         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8340         * configure.in: Ditto.
8341         * lib/Makefile.in: Ditto.
8342         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8343         autoconf-2.53.
8344         * configure: Regenerate.
8345
8346 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8347
8348         * include/windows.h: Don't include basetyps.h.
8349         * include/objfwd.h: Do include basetyps.h.
8350
8351 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8352
8353         * include/objbase.h: Include rpc.h and rpcndr.h
8354         before header guard.
8355
8356 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8357
8358         * include/olectl.h (PROPPAGEINFO): Change type of
8359         field cb to ULONG.
8360
8361 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8362
8363         * lib/ntdll.def (RtlAcquireResourceExclusive,
8364         RtlAcquireResourceShared, RtlDeleteResource,
8365         RtlInitializeResource, RtlReleaseResource,
8366         RtlTimeToSecondsSince1970) : Added missing exports.
8367
8368 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8369
8370         * include/oleacc.h: New file.
8371         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8372         (OBJID_*) Add defines.
8373         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8374         * lib/test.c: Include oleacc.h.
8375
8376 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8377
8378         * include/ddk: New subdir.
8379         * lib/ddk: Ditto.
8380         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8381         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8382         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8383         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8384         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8385         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8386         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8387         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8388         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8389         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8390         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8391         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8392         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8393         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8394         xfilter.h): New files.
8395         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8396         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8397         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8398         win32k.def): Ditto.
8399
8400 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8401
8402         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8403         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8404         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8405         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8406         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8407         RtlAddAccessAllowedAce, RtlCreateAcl,
8408         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8409         RtlGetAce, RtlGetControlSecurityDescriptor,
8410         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8411         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8412         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8413         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8414         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8415         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8416         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8417         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8418         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8419         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8420         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8421         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8422         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8423
8424 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8425
8426         *include/windef.h (WPARAM): Update typedef.
8427         (LPARAM): Ditto.
8428         (LRESULT): Ditto.
8429
8430 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8431
8432         * include/shlobj.h (CSIDL_*): Add defines.
8433
8434 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8435
8436         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8437         has been included first.
8438
8439 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8440
8441         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8442         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8443         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8444
8445 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8446
8447         * include/winuser.h (DS_SHELLFONT): Define.
8448
8449 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8450
8451         * include/winnt.h (VER_SUITE_BLADE): Define.
8452
8453 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8454
8455         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8456         Add _WIN32_IE guard. Correct prototype for wide version.
8457         (SHGetFolderPath): Add comment on shfolder.dll.
8458         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8459         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8460
8461 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8462
8463         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8464         * lib/shfolder.def: New file.
8465
8466 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8467
8468         * include/winsock.h (timeval): Guard struct and associated
8469         macros with _TIMEVAL_DEFINED.
8470         * include/winsock2.h (timeval): Likewise.
8471
8472 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8473
8474         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8475         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8476         SHCreateShellItem,SHEmptyRecycleBin[AW],
8477         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8478         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8479         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8480         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8481         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8482         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8483         SHLoadNonloadedIconOverlayIdentifiers,
8484         SHOpenFolderAndSelectItems,SHParseDisplayName,
8485         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8486         SHSetLocalizedName,SHSetUnreadMailCountW,
8487         SHUpdateRecycleBinIcon: Add missing stubs.
8488
8489 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8490
8491         * include/windef.h (WINVER): Add documentation.
8492         (_WIN32_WINNT): Ditto.
8493         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8494
8495 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8496
8497         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8498
8499 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8500
8501         * include/winbase.h (AllocateUserPhysicalPages,
8502         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8503         FreeUserPhysicalPages): Add prototypes.
8504         * lib/kernel32.def: Add function stubs for above.
8505
8506 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8507
8508         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8509         Add WINVER guards for dialog box command id defines.
8510
8511 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8512
8513         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8514
8515 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8516
8517         * include/wincon.h: Define GetConsoleWindow(void).
8518
8519 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8520
8521         * include/w32api.h: Increment version to 2.1.
8522         * Makefile.in: Ditto.
8523
8524 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8525
8526         * include/winsock2.h (SOCKET_ADDRESS): Define if
8527         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8528         (CSADDR_INFO): Ditto.
8529         (nspapi.h) : Don't include. Removed FIXME comment.
8530         * include/nspapi.h (SOCKET_ADDRESS) Only define if
8531         __CSADDR_T_DEFINED is not defined.
8532         (CSADDR_INFO): Ditto.
8533         (BLOB): Add structure and typedef if not already defined.
8534         (NS_*): Add defines.
8535         (SERVICE_*): Ditto.
8536         (SERVICE_ADDRESS): Add structure and typedefs.
8537         (SERVICE_ADDRESSES): Ditto.
8538         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
8539         (LPSERVICE_ASYNC_INFO): Add typedef.
8540         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
8541         mappings.
8542         * include/wsipx.h: New file.
8543         * include/svcguid.h: New file.
8544         * lib/test.c: Include wspix.h and svcguid.h.
8545
8546 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8547
8548         * include/wsahelp.h: New file.
8549         * lib/test.c: Include wsahelp.h.
8550
8551 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
8552
8553         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
8554         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
8555
8556 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8557
8558         * include/ws2spi.h: Modify comment about being part of
8559         mingw32 package.
8560         (winsock2.h): Change "" to <>.
8561
8562 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8563
8564         * include/ws2spi.h: New file.
8565         * lib/test.c: Include ws2spi.h.
8566
8567 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8568
8569         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
8570         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
8571         functions.
8572
8573 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8574
8575         * include/winuser.h (CURSOR_SHOWING) Add define.
8576         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
8577
8578 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8579
8580         * include/winerror.h: Cast OLE error codes to HRESULT.
8581         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
8582
8583 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
8584
8585         * include/wincrypt.h (ALG_*): Add defines.
8586         (CALG_*): Ditto.
8587         (CRYPT_*): Ditto.
8588         (PP_*): Ditto.
8589         (PROV_*): Ditto.
8590         (PRIVATEKEYBLOB): Add define.
8591
8592 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
8593
8594         * include/shlobj.h (SHGetFolderPath): Add define.
8595         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
8596         (SHGetFolderPath): Ditto.
8597
8598 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8599
8600         * include/commdlg.h: Don't include COM headers or use
8601         COM-dependent symbols if __OBJC__.
8602
8603 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8604
8605         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
8606         Add prototypes.
8607
8608 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
8609
8610         * include/shellapi.h (FOF_NOERRORUI): Add define.
8611
8612 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
8613
8614         * include/objidl.h (IEnumMoniker): Put 'interface' back.
8615
8616 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
8617
8618         * include/objidl.h (IEnumMoniker): Correct declaration.
8619
8620 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
8621
8622         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
8623
8624 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
8625
8626         * include/commctrl.h: Whitespace change.
8627
8628 2002-08-09  Lars Munch  <lars@segv.dk>
8629
8630         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
8631         struct name _TVHITTESTINFO and typedefs and add defines for
8632         backward compatability.
8633         (ListView_SetExtendedListViewStyleEx): Add macro.
8634
8635 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
8636
8637         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
8638         Add prototypes.
8639         * lib/msimg32.def: New file, with stubs for above.
8640
8641 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
8642
8643         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
8644         GetFileSizeEx, SetFilePointerEx): Add prototypes.
8645         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
8646         and UNICODE mappings.
8647
8648 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
8649
8650         * include/winbase.h (ReadFileScatter, WriteFileGather):
8651         Change second parameter to pointer.
8652
8653 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
8654
8655         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
8656         UNICODE mappings.
8657         * lib/wininet.def: Regenerate.
8658
8659 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
8660
8661         * include/windef.h (PVOID): Move typedef to...
8662         * include/winnt: ...here.
8663         (PVOID64): New typedef.
8664
8665         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
8666         * include/winbase.h (ReadFileScatter, WriteFileGather):
8667         Add prototypes.
8668
8669         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
8670         (PROCESSOR_INTEL_IA64): Add define.
8671
8672 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8673
8674         * include/oleidl.h (MK_ALT): Define.
8675
8676 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8677
8678         * include/exdisp.h: New file.
8679         * include/exdispid.h: New file.
8680         * include/mshtml.h: New file.
8681         * lib/test.c: #include exdisp.h and mshtml.h
8682         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
8683         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
8684         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
8685         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
8686         New GUIDs.
8687
8688 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8689
8690         * include/docobj.h: New file.
8691         * include/idispids.h: New file.
8692         * include/objidl.h (IID_IMoniker): Declare.
8693         * include/ocidl.h (READYSTATE): New enum.
8694         (IOleInPlaceSiteEx): New interface.
8695         * include/olectlid.h (IID_IEnumSTATSTG): New interface
8696         identifier.
8697         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
8698         IOleInPlaceSite): New interfaces.
8699         * lib/test.c: #include docobj.h,idispids.h,
8700
8701 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8702
8703         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
8704         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
8705
8706 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
8707
8708         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
8709         * include/commdlg.h: Likewise.
8710
8711 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
8712
8713         * include/oleauto.h (V_UNION): Correct definition for case of
8714         NONAMELESSUNION:
8715         (V_VT): Likewise.
8716
8717 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
8718
8719         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
8720         not bool, for C as well as C++.
8721
8722 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
8723
8724         * include/shlwapi.h: New file.
8725         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
8726         Victor Porton  <porton@narod.ru> for contributions.
8727         * lib/shlwapi.def: New file.
8728         * lib/test.c: #include shlwapi.h.
8729
8730 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
8731
8732         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
8733         character.
8734         * include/winsock2.h (struct sockaddr): Use __int64 instead of
8735         long long.
8736         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
8737         does not need external *Fiber library functions.
8738
8739 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8740
8741         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
8742         definition.
8743         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
8744         avoid compile error when already defined.
8745
8746 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
8747
8748         * include/winuser.h (WM_MENURBUTTONUP): Add define.
8749
8750 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8751
8752         * include/commdlg.h: Define CDN_* notification message constants
8753         as UINT.
8754
8755 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
8756
8757         * include/commctrl.h: Define notification message constants for
8758         NMHDR.code as UINT.
8759
8760 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
8761
8762         * include/ddeml.h (MH_*) Add defines.
8763         (MONHSZSTRUCT): Add structure and typedefs.
8764         (MONLINKSTRUCT): Ditto.
8765         (MONCONVSTRUCT): Ditto.
8766         (MONCBSTRUCT): Ditto.
8767         (MONERRSTRUCT): Ditto.
8768         (MONMSGSTRUCT): Ditto.
8769         * include/windef.h: Don't define __cdecl or _cdecl for
8770         __WATCOM__.
8771         Don't define _export or __export for __WATCOM__.
8772         * include/windows.h (imm.h): #include.
8773         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
8774
8775 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8776
8777         * include/wtypes.h: Remove duplicate #includes of rpc.h and
8778         rpcndr.h.
8779
8780 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
8781
8782         * include/winbase.h (OpenThread): Add prototype.
8783         * lib/kernel32.def (OpenThread): Add symbol.
8784
8785 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
8786
8787         * include/wtypes.h (HMETAFILEPICT): Add typedef.
8788
8789 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
8790
8791         * include/rpc.h: Conditionally include <windows.h> before
8792         header guard.
8793         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
8794         header guard.
8795
8796 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
8797
8798         * include/commctrl.h (WC_*): Remove some duplicate defines.
8799
8800 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
8801
8802         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
8803         UNICODE mappings.
8804         (IPM*): Add defines.
8805         (IPN_*): Add defines.
8806         (NMIPADDRESS): Add structure and typedefs.
8807         (MAKEIPADDRESS): Add macro.
8808         (MAKEIPRANGE): Add macro.
8809         (FIRST_IPADDRESS): Add macro.
8810         (SECOND_IPADDRESS): Add macro.
8811         (THIRD_IPADDRESS): Add macro.
8812         (FOURTH_IPADDRESS): Add macro.
8813
8814 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
8815
8816         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
8817
8818 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8819
8820         * include/winbase.h (WINBASEAPI): Don't define if prior
8821         definition.
8822
8823         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
8824         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
8825         PARTITION_UNIX): Add defines.
8826         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
8827         (IsRecognizedPartition): Also check for PARTITION_FAT32,
8828         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
8829         (IsContainerPartition): Add macro.
8830
8831 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
8832
8833         * include/commctrl.h: (CBEIF_*): Add defines.
8834         (CBEN_*): Add defines and UNICODE mappings
8835         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
8836         (CBEMAXSTRLEN): Add define.
8837         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
8838         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
8839         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
8840         (NMCBEENDEDIT[AW]): Add structure and typedefs.
8841
8842 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
8843
8844         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
8845         union member _VARIANT_BOOL bool.
8846
8847 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
8848
8849         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
8850
8851 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8852
8853         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
8854         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
8855         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
8856         Add typedefs.
8857         (CCHAR): Correct typedef.
8858         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
8859         Add defines.
8860
8861 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8862
8863         * README.w32api: Correct spelling error.
8864
8865 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8866
8867         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
8868         INPUT_HARDWARE): Add defines.
8869         (HDEVNOTIFY): Add typedef.
8870         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
8871         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
8872         typedefs.
8873         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
8874         GetClassInfoEx[AW],GetKeyboardLayoutList,
8875         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
8876         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
8877         RegisterClassEx[AW]): Correct prototypes.
8878
8879 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8880
8881         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
8882         prototypes.
8883         * include/winsvc.h (StartServiceW): Correct prototype.
8884         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
8885         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
8886         GetTickCount,InterlockedExchangeAdd,
8887         WritePrivateProfileStruct[AW]: Correct prototypes.
8888         (GetEnvironmentStrings): Correct mapping to
8889         GetEnvironmentStringsA.
8890         * include/winver.h (VerQueryValueA,VerQueryValueW):
8891         Correct prototypes.
8892         * include/wincon.h (CreateConsoleScreenBuffer): Correct
8893         prototype.
8894         * include/winreg.h (RegQueryMultipleValues[AW],
8895         RegQueryValueEx[AW]):Correct prototypes.
8896         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
8897         PPOLYTEXTW): Add typedefs.
8898         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
8899         structures and typedefs.
8900         (MM_MAX_NUMAXES): Add define.
8901         (EnumFontsW,GetEnhMetaFilePixelFormat,
8902         wglGetLayerPaletteEntries): Correct prototypes.
8903         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
8904         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
8905         RPC_S_SEND_INCOMPLETE): Add defines.
8906
8907 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8908
8909         * include/windef.h (_fastcall, __fastcall, FASTCALL):
8910         Add defines.
8911
8912 2002-06-16  Egor Duda  <deo@logos-m.ru>
8913
8914         * include/ntdll.h: New file.
8915         * lib/ntdll.def: Add NtShutdownSystem.
8916
8917 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
8918
8919         * lib/dinput.def (DirectInputCreateEx): Add stub.
8920         * lib/ntdll.def: New file.
8921
8922 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
8923
8924         * include/w32api.h: Change to version 2.0 to reflect the change
8925         in the license.
8926         * README: Renamed.
8927         * README.w32api: Renamed from README.  Modified license to remove
8928         the restriction of notifying the author based on the fact that the
8929         author is unreachable at the notified address.
8930         * Makefile.in (VERSION): Change to 2.0.
8931
8932 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
8933
8934         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
8935         * Makefile.in (bindist): Correct the MinGW distribution.
8936
8937 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
8938
8939         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
8940         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
8941
8942 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
8943
8944         * lib/test.c: #include comcat.h.
8945
8946 2002-06-13  John K. Hohm  <jhohm@acm.org>
8947
8948         * include/comcat.h: New file.
8949
8950 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
8951
8952         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
8953         (GETTEXTEX): Add structure definition.
8954
8955 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
8956
8957         * include/windows.h (ole2.h): #include if !__OBJC__ and
8958         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
8959
8960 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
8961
8962         * include/mapi.h: Change LPTSTR to LPSTR throughout.
8963
8964 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
8965
8966         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
8967         PACCESS_DENIED_ACE): Add typedefs.
8968
8969 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
8970
8971         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
8972
8973 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
8974
8975         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
8976
8977 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
8978
8979         * include/windef.h: Fix typo in last change.
8980
8981 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
8982
8983         * include/windef.h: Add no-op __try, __except, __finally
8984         defines from ...
8985         * include/excpt.h: Remove file.
8986         * include/windows.h: Don't include excpt.h.
8987
8988 2002-05-30  Christopher January  <chris@atomice.net>
8989
8990         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
8991         Add missing typedefs.
8992
8993 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
8994
8995         * include/w32api.h: Increment version to 1.5
8996         * Makefile.in: Ditto.
8997
8998
8999 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
9000
9001         * include/winreg.h: (RegConnectRegistry[AW]): Replace
9002         LP[W]STR with LPC[W]STR.
9003         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
9004         Clean up whitespace.
9005
9006 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
9007
9008         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
9009
9010 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
9011
9012         * Makefile.in: Increment VERSION to 1.4.
9013         (conf_prefix): New variable.
9014         (bindist): Modify target to use $(conf_prefix).
9015
9016 2002-05-20  Philip Aston  <philipa@mail.com>
9017
9018         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
9019
9020 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
9021
9022         * include/lmaccess.h: (NetAccess*, NetGroup*,
9023         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
9024         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
9025
9026 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
9027
9028         * include/commctrl.h (ImageList_DragShowNolock): Remove
9029         conflicting redeclaration.
9030
9031 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
9032
9033         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
9034         STRICT and related defines to ...
9035         * include/windef.h: Here.
9036
9037 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
9038
9039         * include/winsock2.h (int32): Remove typedef.
9040         (SERVICETYPE): Add typedef.
9041         (struct _flowspec):Revise struct definition,  Comment
9042         on types used for members.
9043
9044 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9045
9046         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
9047         more defines added in earlier change.
9048         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
9049
9050 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9051
9052         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
9053         added in last change.
9054
9055 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
9056
9057         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
9058         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
9059
9060 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
9061
9062         * include/commctrl.h (SNDMSG): Define and use throughout
9063         in other macros instead of SendMessage.
9064         * include/commdlg.h (SNDMSG): Ditto.
9065
9066 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
9067
9068         * include/GL/gl.h: New file.
9069         * include/GL/glext.h: Ditto.
9070         * include/GL/glu.h: Ditto.
9071
9072 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9073
9074         * include/w32api.h: Increment version.
9075         * Makefile.in: Ditto.
9076
9077 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
9078
9079         * Makefile.in (bindist): Use * instead of . for file list for tar
9080         command.
9081
9082 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
9083
9084         * include/wtypes.h (enum tagCLSCTX): Change formatting.
9085
9086 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
9087
9088         * include/objidl.h (IRunningObjectTable.Register): Correct
9089         prototype.
9090         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
9091         ROTFLAGS_ALLOWANYCLIENT): Add defines.
9092
9093 2002-03-31  Victor Porton  <porton@narod.ru>
9094
9095         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
9096
9097 2002-03-29  David Robinow  <drobinow@yahoo.com>
9098
9099         * include/wingdi.h (SetPixelFormat): Correct prototype.
9100
9101 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
9102
9103         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
9104
9105 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
9106
9107         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
9108         Add defines.
9109
9110 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
9111
9112         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
9113         * include/shlobj.h (IContextMenu2): Put methods in right order.
9114         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
9115         CINTERFACE before defining.
9116
9117 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
9118
9119         * include/accctrl.h: Add #pragma GCC system_header
9120         if __GNUC__ >= 3.
9121         * include/aclapi.h: Same.
9122         * include/basetsd.h: Same.
9123         * include/basetyps.h: Same.
9124         * include/cderr.h: Same.
9125         * include/cguid.h: Same.
9126         * include/commctrl.h: Same.
9127         * include/commdlg.h: Same.
9128         * include/cpl.h: Same.
9129         * include/cplext.h: Same.
9130         * include/custcntl.h: Same.
9131         * include/dbt.h: Same.
9132         * include/dde.h: Same.
9133         * include/ddeml.h: Same.
9134         * include/dlgs.h: Same.
9135         * include/excpt.h: Same.
9136         * include/httpext.h: Same.
9137         * include/imagehlp.h: Same.
9138         * include/imm.h: Same.
9139         * include/initguid.h: Same.
9140         * include/intshcut.h: Same.
9141         * include/ipexport.h: Same.
9142         * include/iphlpapi.h: Same.
9143         * include/ipifcons.h: Same.
9144         * include/iprtrmib.h: Same.
9145         * include/iptypes.h: Same.
9146         * include/isguids.h: Same.
9147         * include/largeint.h: Same.
9148         * include/lm.h: Same.
9149         * include/lmaccess.h: Same.
9150         * include/lmalert.h: Same.
9151         * include/lmapibuf.h: Same.
9152         * include/lmat.h: Same.
9153         * include/lmaudit.h: Same.
9154         * include/lmbrowsr.h: Same.
9155         * include/lmchdev.h: Same.
9156         * include/lmconfig.h: Same.
9157         * include/lmcons.h: Same.
9158         * include/lmerr.h: Same.
9159         * include/lmerrlog.h: Same.
9160         * include/lmmsg.h: Same.
9161         * include/lmremutl.h: Same.
9162         * include/lmrepl.h: Same.
9163         * include/lmserver.h: Same.
9164         * include/lmshare.h: Same.
9165         * include/lmsname.h: Same.
9166         * include/lmstats.h: Same.
9167         * include/lmsvc.h: Same.
9168         * include/lmuse.h: Same.
9169         * include/lmuseflg.h: Same.
9170         * include/lmwksta.h: Same.
9171         * include/lzexpand.h: Same.
9172         * include/mapi.h: Same.
9173         * include/mciavi.h: Same.
9174         * include/mcx.h: Same.
9175         * include/mmsystem.h: Same.
9176         * include/mswsock.h: Same.
9177         * include/nb30.h: Same.
9178         * include/nddeapi.h: Same.
9179         * include/nspapi.h: Same.
9180         * include/ntdef.h: Same.
9181         * include/ntsecapi.h: Same.
9182         * include/ntsecpkg.h: Same.
9183         * include/oaidl.h: Same.
9184         * include/objbase.h: Same.
9185         * include/objfwd.h: Same.
9186         * include/objidl.h: Same.
9187         * include/odbcinst.h: Same.
9188         * include/ole.h: Same.
9189         * include/ole2.h: Same.
9190         * include/ole2ver.h: Same.
9191         * include/oleauto.h: Same.
9192         * include/olectl.h: Same.
9193         * include/olectlid.h: Same.
9194         * include/oledlg.h: Same.
9195         * include/oleidl.h: Same.
9196         * include/pbt.h: Same.
9197         * include/prsht.h: Same.
9198         * include/psapi.h: Same.
9199         * include/rapi.h: Same.
9200         * include/ras.h: Same.
9201         * include/raserror.h: Same.
9202         * include/rassapi.h: Same.
9203         * include/regstr.h: Same.
9204         * include/richedit.h: Same.
9205         * include/richole.h: Same.
9206         * include/rpc.h: Same.
9207         * include/rpcdce.h: Same.
9208         * include/rpcdce2.h: Same.
9209         * include/rpcdcep.h: Same.
9210         * include/rpcndr.h: Same.
9211         * include/rpcnsi.h: Same.
9212         * include/rpcnsip.h: Same.
9213         * include/rpcnterr.h: Same.
9214         * include/rpcproxy.h: Same.
9215         * include/schannel.h: Same.
9216         * include/schnlsp.h: Same.
9217         * include/scrnsave.h: Same.
9218         * include/security.h: Same.
9219         * include/setupapi.h: Same.
9220         * include/shellapi.h: Same.
9221         * include/shlguid.h: Same.
9222         * include/shlobj.h: Same.
9223         * include/sql.h: Same.
9224         * include/sqlext.h: Same.
9225         * include/sqltypes.h: Same.
9226         * include/sqlucode.h: Same.
9227         * include/sspi.h: Same.
9228         * include/subauth.h: Same.
9229         * include/tlhelp32.h: Same.
9230         * include/unknwn.h: Same.
9231         * include/userenv.h: Same.
9232         * include/w32api.h: Same.
9233         * include/winbase.h: Same.
9234         * include/wincon.h: Same.
9235         * include/wincrypt.h: Same.
9236         * include/windef.h: Same.
9237         * include/windows.h: Same.
9238         * include/windowsx.h: Same.
9239         * include/winerror.h: Same
9240         * include/wingdi.h: Same.
9241         * include/wininet.h: Same.
9242         * include/winioctl.h: Same.
9243         * include/winnetwk.h: Same.
9244         * include/winnls.h: Same.
9245         * include/winnt.h: Same.
9246         * include/winperf.h: Same.
9247         * include/winreg.h: Same.
9248         * include/winresrc.h: Same.
9249         * include/winsock.h: Same.
9250         * include/winsock2.h: Same.
9251         * include/winspool.h: Same.
9252         * include/winsvc.h: Same.
9253         * include/winuser.h: Same.
9254         * include/winver.h: Same.
9255         * include/ws2tcpip.h: Same.
9256         * include/wsnetbs.h: Same.
9257         * include/wtypes.h: Same.
9258         * include/zmouse.h: Same.
9259         * include/mapi.h: Change header guard name to _MAPI_H  for
9260         consistency.
9261
9262 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9263
9264         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9265         Remove unnecessary inclusion of <wtypes.h>.
9266         * ChangeLog: Fix omission of name in recent entries.
9267
9268 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9269
9270         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9271
9272 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9273
9274         * include/mswsock.h: Group winsock2 dependants
9275         together and protect with #ifdef _WINSOCK2_H.
9276         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9277         has been included.
9278
9279 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9280
9281         * include/mswsock.h (TP_*): Add new defines.
9282         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9283         (WSAMSG): Likewise.
9284         (WSACMSGHDR): Likewise.
9285         (DisconnectEx): Add new prototype.
9286         (WSARecvMsg): Likewise.
9287         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9288
9289 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9290
9291         * ChangeLog: Fix typo in last entry.
9292         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9293         * include/ws2tcpip.h: (IP_*): Add new defines.
9294         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9295         (NI_*): Add getnameinfo constants and bitmasks.
9296         (AI_*): Add getaddrinfo flags.
9297         (EAI_*): Add getaddrinfo error codes.
9298         (ip_mreq_source): Add new structure.
9299         (ip_msfilter): Add new structure.
9300         (IP_MSFILTER_SIZE): Add new macro.
9301         (in_pktinfo): Add new structure.
9302         Add preliminary IPv6 support.
9303         (in6_addr): Add new structure and some defines.
9304         (sockaddr_in6): Add new structure.
9305         (in6addr_any, in6addr_loopback): Declare extern structures.
9306         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9307         initialization macros for above.
9308         (IN6_ARE_ADDR_EQUAL): Define macro.
9309         (IN6_IS_ADDR_*): Define address testing macros.
9310         (socklen_t) Add new typedef.
9311         (ipv6_mreq): Add new structure.
9312         (in6_pktinfo): Same.
9313         (addrinfo): Same.
9314         (freeaddrinfo):Add new prototype.
9315         (getaddrinfo): Same.
9316         (gai_strerror[AW]): Same.
9317         (getnameinfo): Same.
9318         (sockaddr_in6_old): Add structure.
9319         (sockaddr_gen): Add union definition.
9320         (INTERFACE_INFO): Use sockaddr_gen as members.
9321         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9322         with INTERFACE_INFO on NT4 prior to sp4.
9323
9324 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9325
9326         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9327         when selecting winsock interface.
9328         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9329         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9330         Expand FIXME comment.
9331         (WSACOMPLETIONTYPE): Add enum.
9332         (WSACOMPLETION): Add structure and typedefs.
9333         (WSANSPIoctl): Add function prototpe and callback typedef.
9334         (SIO_NSP_NOTIFY_CHANGE): Add define.
9335         (sockaddr_storage): Add structure and typedefs.
9336
9337 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9338
9339         * include/winuser.h (OIC_*): Add resource constants.
9340
9341 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9342
9343         * include/ntsecpkg.h: New file.
9344         * include/schannel.h: New file.
9345         * include/schnlsp.h: New file.
9346         * include/security.h: New file.
9347         * include/sspi.h: New file.
9348         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9349         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9350         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9351         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9352         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9353         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9354         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9355         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9356         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9357         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9358         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9359         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9360         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9361         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9362         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9363         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9364         CERT_CHAIN_CONTEXT): Add missing structures.
9365         (CertCloseStore, CertGetCertificateChain,
9366         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9367         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9368         CertFindCertificateInStore, CertFreeCertificateContext,
9369         CertGetIssuerCertificateFromStore,
9370         CertFindChainInStore): Add missing functions.
9371         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9372         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9373         * lib/crypt32.def: New file.
9374         * lib/secur32.def: Add mising stubs.
9375         * lib/test.c: Include new headers.
9376
9377 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9378
9379         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9380         parameter.
9381
9382 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9383
9384         * lib/test.c: Include mapi.h.
9385         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9386         Thanks to: "Ron"  <ron@debian.org>
9387
9388 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9389
9390         * include/mapi.h: New file.
9391         * lib/mapi.def: Add missing function stubs.
9392
9393 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9394
9395         * include/winuser.h (GetWindowLongPtr[AW],
9396         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9397
9398 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9399
9400         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9401         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9402         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9403         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9404
9405 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9406
9407         * lib/test.c: Include wsnetbs.h.
9408
9409 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9410
9411         * include/wsnetbs.h: New file.
9412
9413 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9414
9415         * include/winnt.h: Remove merge conflict.
9416
9417 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9418
9419         * include/winnt.h (_TCHAR): Add typedefs.
9420
9421 2002-01-25  Tim Hughes  <tjh@delcam.com>
9422
9423         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9424         defines.
9425
9426 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9427
9428         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9429         Add defines.
9430         (LPACCESSTIMEOUT): Add typedef.
9431
9432 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9433
9434         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9435
9436 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9437
9438         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9439         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9440         backward compatability with old names. Update UNICODE mappings.
9441         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9442         for struct _HD_LAYOUT and add defines for backward
9443         compatability with old names.
9444         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9445         parallel chages to typedefs. Add defines for backward
9446         compatability with old names.
9447         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9448
9449 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9450
9451         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9452         hex for readability.
9453
9454 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9455
9456         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9457         and typedefs.
9458         (SPI_SETSCREENSAVERRUNNING): Add define.
9459         (LLKHF_ALTDOWN): Add define.
9460         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9461         PFD_DEPTH_DONTCARE): Add defines.
9462
9463 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9464
9465         * include/objbase.h (CoGetObject): Add prototype.
9466
9467 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9468
9469         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9470         ENUM_REGISTRY_SETTINGS): Add defines.
9471
9472 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9473
9474         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9475         (FILE_ATTRIBUTE_DEVICE): Add define.
9476
9477 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9478
9479         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9480
9481 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9482
9483         * ChangeLog: correct date in last entry.
9484
9485 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9486
9487         * include/winuser.h (MONITORENUMPROC): Add typedef.
9488         (EnumDisplayMonitors): Add prototype.
9489         * lib/user32.def (EnumDisplayMonitors): Add stub.
9490
9491 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9492
9493         * include/ntsecapi.h:  Fixed missing void parameter type in some
9494         prototypes.
9495         * include/objbase.h: Ditto.
9496         * include/rapi.h: Ditto.
9497         * include/rpc.h: Ditto.
9498         * include/rpcdce.h: Ditto.
9499         * include/rpcdcep.h: Ditto.
9500         * include/rpcndr.h: Ditto.
9501         * include/rpcnsip.h: Ditto.
9502         * include/rpcproxy.h: Ditto.
9503         * include/windef.h: Ditto.
9504
9505 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9506
9507         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9508
9509 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9510
9511         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9512          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9513         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9514         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9515         WS_EX_NOINHERITLAYOUT): Add defines.
9516         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9517         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9518         MEM_WRITE_WATCH): Add defines.
9519
9520
9521 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9522
9523         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9524         Add prototype.
9525         (SetCriticalSectionSpinCount): Likewise.
9526
9527 2001-12-30  Guido Serassio  <serassio@libero.it>
9528
9529         * include/winsvc.h: Add EnumServiceStatusEx(),
9530         QueryServiceStatusEx()
9531         & RegisterServiceCtrlHandlerEx()
9532
9533 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
9534
9535         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
9536
9537 2001-12-20  Christopher Faylor  <cgf@redhat.com>
9538
9539         * lib/Makefile.in: Revert inst_installdir definitions to working
9540         versions.
9541
9542 2001-12-17  Guido Serassio  <serassio@libero.it>
9543
9544         * include/winsvc.h: Add ChangeServiceConfig2() &
9545         QueryServiceConfig2() definition
9546
9547 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
9548
9549         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
9550         on MSDN documentation for XP.
9551
9552 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
9553
9554         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
9555         mappings.
9556
9557 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
9558
9559         * include/commctrl.h (ACS_*): Add new defines.
9560         (PGS_*): Ditto.
9561         (CBES_*): Ditto.
9562         (TBSTYLE_*): Ditto.
9563         (TB_*): Ditto.
9564         (TTS_*): Ditto.
9565         (UDS_HOTTRACK): Add define.
9566         (SBT_TOOLTIPS): Ditto.
9567         (TBS_*): Add new defines.
9568         (HDS_*): Ditto.
9569         (LVS_EX_*) Ditto.
9570         (LVKF_*): Ditto.
9571         (TCM_GETEXTENDEDSTYLE): Add define.
9572         (TVS_NOHSCROLL): Ditto.
9573         (TVIF_INTEGRAL): Ditto.
9574         (DTS_SHORTDATECENTURYFORMAT): Ditto.
9575         (TCS_*): Add new defines.
9576         (CBEM_*): Add defines.
9577         (tagNMITEMACTIVATE): Add structure definition and typedefs.
9578         (tagTVITEMEX[AW]: Ditto.
9579         (tagTVINSERTSTRUCT[AW]: Add union member.
9580         * include/winbase.h (VirtualAllocEx): Add prototype.
9581         * include/winuser.h (SS_*): Add new defines.
9582
9583 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9584
9585         * Makefile.in: Increment VERSION.
9586         * include/w32api.h: Ditto.
9587
9588 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9589
9590         * Makefile.in: Increment VERSION.
9591         * include/w32api.h: Ditto.
9592
9593 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
9594
9595         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
9596         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
9597         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
9598         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
9599         SetupDiOpenDevRegKey): Correct function names.
9600
9601 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
9602
9603         * include/winuser.h (IDC_STATIC): Don't define.
9604
9605 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
9606
9607         Cleanup merge between SourceForge and winsup CVS.
9608         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
9609         definitions.
9610         * include/winnt.h (VER_NT*): Remove duplicate defines.
9611         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
9612
9613 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
9614
9615         * include/accctrl.h: Change \r\n to \n.
9616
9617 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
9618
9619         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
9620         Add structure definition.
9621         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
9622         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
9623         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
9624         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
9625         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
9626         UnenableRouter) Declare functions.
9627         * lib/iphlpapi.def: Add function names to import lib.
9628
9629 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
9630
9631         * include/winnt.h (PACCESS_MASK): Add typedef.
9632         * include/aclapi.h: New file.
9633         * include/acctrl.h: New file.
9634         * lib/advapi32.def: Add missing symbols.
9635         * lib/test.c: Add #include <aclapi.h>.
9636
9637 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
9638
9639         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
9640         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
9641         here ...
9642         * include/winnt.h: ... to here.
9643         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
9644         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
9645         and typedefs.
9646         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
9647         Add defines.
9648
9649 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
9650
9651         * w32api/include/winnt.h: prepare SSE register support.
9652         (CONTEXT_EXTENDED_REGISTERS): Add new define.
9653         (MAXIMUM_SUPPORTED_EXTENSION): New define.
9654         (struct CONTEXT): ExtendedRegisters field added.
9655
9656 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
9657
9658         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
9659         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
9660         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
9661         tagLASTINPUTINFO ): Define new structures.
9662         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
9663         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
9664         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
9665         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
9666         SetMenuInfo): Add new prototypes.
9667         * lib/user32.def: Add import stubs for above functions.
9668
9669         * include/winuser.h (IDC_STATIC): Protect against prior
9670         definition.
9671
9672 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
9673
9674         * include/winbase.h (OSVERSIONINFOEX): Add definition.
9675         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
9676
9677 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
9678
9679         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
9680         warnings with _AUTHORITY #defines.
9681
9682 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9683
9684         * include/winnt.h (GetCurrentFiber): Create a prototype before the
9685         implementation.
9686         (GetFiberData): Ditto.
9687
9688 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9689
9690         * include/winnt.h: Backout last change.
9691
9692 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
9693
9694         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
9695         GetCurrentFiber: Create a prototype before the implementation.
9696         GetFiberData: Ditto.
9697
9698 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
9699
9700         * include/winuser.h (IDC_STATIC): Add define.
9701         Thanks to: Benoit Laniel.
9702
9703 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
9704
9705         * include/commdlg.h: Include <unknwn.h> rather than local
9706         definition of LPUKNOWN.
9707         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
9708         Emit warning.
9709
9710 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
9711
9712         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
9713         for Watcom.
9714         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
9715         functions of the form 'type * function(...)' in a way compatible
9716         with both Watcom and GCC.
9717         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
9718         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
9719         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
9720         * include/windows.h: Watcom can use anonymous structs/unions.
9721         * include/winnt.h: Watcom can use 64 bit ints.
9722         (GetCurrentFiber): Add another inline definition using
9723         Watcom inline assembly syntax.
9724         (GetFiberData): Likewise.
9725         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
9726         (gethostbyname): Likewise.
9727         (gethostbyaddr}: Likewise.
9728         (getservbyport}: Likewise.
9729         (getservbyname}: Likewise.
9730         (getprotobynumber}: Likewise.
9731         (getprotobyname}: Likewise.
9732         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
9733         (gethostbyname}: Likewise.
9734         (gethostbyaddr}: Likewise.
9735         (getservbyport}: Likewise.
9736         (getservbyname}: Likewise.
9737         (getprotobynumber}: Likewise.
9738         (getprotobyname}: Likewise.
9739         * lib/diinut.c: Correction for Watcom.
9740         * lib/kernel32.c (GetCurrentFiber): Add another definition
9741         using Watcom inline assembly syntax.
9742         (GetFiberData): Likewise.
9743         * lib/scrnsave.c (WinMain): Add break after default:
9744         clause.
9745
9746 2001-11-04  "stefan"  <stefan@lkcc.org>
9747
9748         * include/winnt.h (GetCurrentFiber): Add prototype.
9749         (GetFiberData): Likewise.
9750
9751 2001-11-04  Christopher Faylor  <cgf@redhat.com>
9752
9753         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
9754         parallel invocations.
9755
9756 2001-11-03  Christopher Faylor  <cgf@redhat.com>
9757
9758         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
9759
9760 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9761
9762         * include/basetyps.h (DECLARE_INTERFACE): Don't add
9763         __attribute__((com_interface)) for __GNUC__ >= 3.
9764
9765 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9766
9767         * include/commdlg.h (PRINTPAGERANGE): Add structure
9768         definition.
9769         (PRINTDLGEX[AW]): Likewise.
9770         (PrintDlgEx[AW]): Add function declaration.
9771         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
9772         * ChangeLog: Fix typo in last entry.
9773
9774 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
9775
9776         * include/objbase.h (CoGetClassObject): Change third parameter
9777         to COSERVERINFO*.
9778
9779 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
9780
9781         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
9782         Thanks to: Kim Saunders.
9783         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
9784         Thanks to: Pat Thoyts.
9785         * include/winnt.h: Change C++ style comment to C style.
9786         * include/shlobj.h: Ditto.
9787         * include/objbase.h (enum tagCOINIT): Remove comma at end of
9788         list.
9789         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
9790         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
9791         (enum not limited to range of int).
9792         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
9793         (struct with no named members), ifndef NONAMELESSUNION.
9794
9795 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
9796
9797         * include/winuser.h (CREATESTRUCT): UNICODE it.
9798         (CBT_CREATEWND): Likewise.
9799
9800 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
9801
9802         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
9803         (WNetGetResourceInformationW): Ditto.
9804         (WNetGetResourceInformation): Add define.
9805
9806 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
9807
9808         * include/winuser.h (POINTSTOPOINT): Use explicit casts
9809         before extracting words.
9810
9811 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
9812
9813         * include/winnt.h: Add PF_* defines.
9814         Thanks to: "Wizord"  <wizord@argoslabs.com>
9815
9816 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
9817
9818         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
9819         field as _ANONYMOUS_STRUCT.
9820         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
9821         for UNICODE.
9822         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
9823         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
9824         test.
9825
9826 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
9827
9828         * include/commctrl.h: Add some ListView constants.
9829
9830 2001-09-17  Earnie Boyd  <earnie@sf.net>
9831
9832         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
9833         portion of the directory from the install.
9834         (inst_libdir): Ditto.
9835         * Makefile.in (VERSION): Increment.
9836         * include/w32api.h: Increment version.
9837
9838 2001-09-13  Earnie Boyd  <earnie@SF.net>
9839
9840         * lib/Makefile.in (inst_includedir): Change to always use w32api
9841         subdirectory for target == cygwin.
9842         (inst_libdir): Ditto.
9843
9844 2001-09-13  Earnie Boyd  <earnie@SF.net>
9845
9846         * lib/Makefile.in (config_prefix): New variable.
9847         (inst_includedir): Manipulate special value only if target == cygwin
9848         and build == target and prefix != config_prefix.
9849         (inst_libdir): Ditto.
9850
9851 2001-09-12  Earnie Boyd  <earnie@SF.net>
9852
9853         * Makefile.in (TARFLAGS): New variable.
9854         (TARFILEEXT): Ditto.
9855
9856 2001-09-12  Earnie Boyd  <earnie@SF.net>
9857
9858         * Makefile.in: Increment version.
9859         * include/w32api.h: Ditto.
9860         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
9861
9862 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
9863
9864         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
9865         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
9866         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
9867
9868 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
9869
9870         * include/wininet.h (InternetAutodial): Add prototype.
9871         (InternetAutodialHangup): Ditto.
9872         (InternetDial): Ditto.
9873         (InternetGetConnectedState): Ditto.
9874         (InternetGoOnline): Ditto.
9875         (InternetHangUp): Ditto.
9876         (InternetSetDialState): Ditto.
9877         Add associated INTERNET_* auto dial flags.
9878         Guard typedefs and prototypes with #ifndef RC_INVOKED.
9879
9880 2001-09-04  Earnie Boyd  <earnie@SF.Net>
9881
9882         * lib/Makefile.in: Move the setting of variable libdir to after the
9883         setting of exec_prefix since the value of libdir is dependant on it.
9884
9885 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
9886
9887         * include/winbase.h: Add missing closing parentheses to
9888         InterlockedExchangePointer declaration.
9889
9890 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
9891
9892         * include/shlobj.h (CFSTR_* ): Add new defines.
9893         Thanks to: "Ron" <ron@debian.org> .
9894         Unicode them.
9895
9896 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
9897
9898         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
9899         anonymous structs are available rather than just testing preprocessor
9900         variable directly.
9901
9902 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
9903
9904         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
9905         with new `LARGE_INTEGER' definition.
9906
9907 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
9908
9909         * include/winsock2.h: Remove "extra token" after #endif.
9910
9911 2001-08-31  Earnie Boyd  <earnie@SF.Net>
9912
9913         * config.guess: Remove the \r from the end of line.
9914         * config.sub: Ditto.
9915
9916 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
9917
9918         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
9919         if __cplusplus as well as if _ANONYMOUS_STRUCT.
9920
9921 2001-08-29  Earnie Boyd  <earnie@SF.Net>
9922
9923         * config.guess: Add the MSYS system.
9924         * config.sub: Ditto.
9925         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
9926         * incldue/winsock2.h: Ditto.
9927
9928 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
9929
9930         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
9931         non-anonymous (Xxx.u.LowPart) access to HighPart and
9932         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
9933
9934 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
9935
9936         * include/wingdi.h (HANGUL_CHARSET): Add define.
9937
9938 2001-08-21  Earnie Boyd  <earnie@SF.Net>
9939
9940         * include/setupapi.h: Formatting.
9941
9942 2001-08-21  Earnie Boyd  <earnie@SF.Net>
9943
9944         * include/shlobj.h: Remove \r from the line endings.
9945
9946 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
9947
9948         * include/setupapi.h : New file.
9949         * lib/setupapi.def:New file.
9950         * lib/test.c: Include setupapi.h.
9951
9952 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
9953         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
9954
9955 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
9956
9957         * include/richedit.h (ENLINK): Add structure definition.
9958         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
9959
9960 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
9961
9962         * include/shlobj.h (CMIC_*): Remove duplicate defines.
9963         (CMDSTR_*): Remove duplicates; UNICODE string constants.
9964         (GCS_*): Make UNICODE.
9965         (CSIDL_*): Add more defines.
9966         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
9967         (_DISK_GEOMETRY): Ditto.
9968         (_DISK_PERFORMANCE): Ditto.
9969         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
9970
9971 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9972
9973         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
9974         of block protected by #ifndef VOID.
9975         (This reverts 1998-12-01 Anders Norlander change.)
9976         * include/odbcinst.h: End file with newline.
9977         * include/raserror.h: Ditto.
9978
9979 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9980
9981         * include/winsock2.h (#include <wtypes.h): Don't.
9982         (_BLOB): Define instead, if not already done.
9983         (__BLOB_T_DEFINED: New define for guarding _BLOB.
9984         * include/wtypes.h (_BLOB): Guard against prior definition.
9985
9986 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9987
9988         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
9989         as __extension__.
9990         (tagTYPEDESC): Ditto.
9991         (_wireBRECORD): Add structure definition.
9992         (_wireSAFEARR_BRECORD): Ditto.
9993         (_wireSAFEARR_HAVEIID): Ditto.
9994         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
9995         SAFEARR_HAVEIID HaveIidStr.
9996         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
9997         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
9998         pparray to wirePSAFEARRAY*.
9999         (_wireVARIANT): Add field wireBRECORD brecVal.
10000         (wireVARIANT): Change typedef to struct _wireVariant*.
10001         (IRecordInfo): Add interface definition.
10002         (LPRECORDINFO): Add typedef for IRecordInfo*.
10003         (IID_IRecordInfo): Add forward decalaration.
10004
10005 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
10006
10007         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
10008         * include/nddeapi.h: Likewise.
10009
10010 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10011
10012         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
10013         Add more includes of w32api headers.
10014
10015 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
10016
10017         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
10018         Swap asm code with that of GetFiberData.
10019         (GetFiberData): Ditto.
10020         * lib/kernel32.c: New file, containing library versions of
10021         GetCurrentFiber and GetFiberData.
10022         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
10023
10024 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10025
10026         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
10027         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
10028
10029 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
10030
10031         * lib/oleaut32.def: Regenerate.
10032
10033 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
10034
10035         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
10036
10037 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10038
10039         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
10040         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
10041         * include/oaidl.h: ... to here.
10042         * include/oaidl.h ICreateErrorInfo): Add interface definition.
10043         (IErrorInfo::GetGUID): Change arg to GUID.
10044         (LPSUPPORTERRORINFO): Add typedef.
10045         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
10046
10047 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
10048
10049         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
10050         defines.
10051
10052 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10053
10054         * include/commctrl.h (TreeView_SetIndent): Correct typo.
10055
10056 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
10057
10058         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
10059         Thanks to: Jason Craig  <jacraig@softhome.net>
10060
10061 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
10062
10063         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
10064         and UNICODE mappings, if _WIN32_IE >= 0x400.
10065         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
10066         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
10067         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
10068         (tagNMLVCUSTOMDRAW): Likewise.
10069         (tagNMTVCUSTOMDRAW): Likewise.
10070         (tagNMLVCACHEHINT): Likewise.
10071
10072 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
10073
10074         * include/basetsd.h (#include <_mingw.h>): Remove.
10075         (__int64): Define.
10076
10077 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10078
10079         * include/wingdi.h (AC_SRC_OVER): Add define.
10080         (struct _BLENDFUNCTION): Add.
10081
10082 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
10083
10084         * include/shlobj.h:  Add BIF_* defines.
10085
10086 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10087
10088         * include/winerror.h (E_PENDING): Add error code define.
10089
10090 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
10091
10092         * include/basetsd.h (#include <_mingw.h>): Add directive.
10093
10094 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
10095
10096         * include/winbase.h (InterlockedCompareExchange): Change args
10097         and return value from PVOID to LONG.
10098         (InterlockedExchange): Change first arg to LPLONG.
10099         (InterlockedCompareExchangePointer): New macro.
10100         (InterlockedExchangePointer): New macro.
10101
10102 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
10103
10104         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
10105         Thanks to Kevin Chase <kevincha99@hotmail.com>.
10106
10107 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
10108
10109         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
10110         (IMalloc::Free()): Ditto.
10111
10112 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
10113
10114         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
10115         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
10116         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
10117
10118 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
10119
10120         * include/shlobj.h (struct _browseinfo): UNICODE it.
10121         (SHBrowseForFolder): Ditto.
10122         (SHGetPathFromIDList): Ditto.
10123
10124 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
10125
10126         * include/basetsd.h: RC_INVOKED protection and realignment.
10127         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
10128
10129 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
10130
10131         * Makefile.in (bindist): Reassign value of exec_prefix on make command
10132         line.
10133
10134 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
10135
10136         * lib/mapi32.def: Add MAPISendMail.
10137
10138 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
10139
10140         * include/w32api.h: Update version.
10141         * Makefile.in: Ditto.
10142
10143 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10144
10145         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
10146         compiler warnings.
10147
10148 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
10149
10150         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
10151         previous definition in include/ntsecapi.h.
10152         * include/ntsecapi.h: Vice versa.
10153
10154 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
10155
10156         * include/winnt.h: Add defines for group attributes.
10157         Add define for SYSTEM_LUID.
10158         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
10159         `PTOKEN_PRIMARY_GROUP'.
10160
10161 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10162
10163         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
10164         for cygwin.
10165
10166 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
10167
10168         * include/winsock2.h: Protect one *more* newlib defines when compiling
10169         cygwin.
10170
10171 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10172
10173         * include/winsock2.h: Protect some more newlib defines when compiling
10174         cygwin.
10175
10176 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
10177
10178         * include/winsock.h: Protect some more newlib defines when compiling
10179         cygwin.
10180
10181 2001-04-17  Egor Duda  <deo@logos-m.ru>
10182
10183         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
10184         as __extenstion__ when appropriate.
10185         * include/mmsystem.h: Mark anonymous structs and unions as
10186         __extension__ to prevent compiler warning when invoked with
10187         -pedantic
10188         * include/oaidl.h: Ditto.
10189         * include/objidl.h: Ditto.
10190         * include/olectl.h: Ditto.
10191         * include/prsht.h: Ditto.
10192         * include/shlobj.h: Ditto.
10193         * include/winbase.h: Ditto.
10194         * include/winnt.h: Ditto.
10195         * include/wtypes.h: Ditto.
10196
10197 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
10198
10199         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
10200         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
10201
10202 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10203
10204         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
10205
10206 2001-04-11  John Fortin  <fortinj@attglobal.net>
10207
10208         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
10209         (*LPBOOL): Ditto.
10210
10211 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
10212
10213         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
10214         code will be included in every module which includes this header.
10215         (GetFiberData): Ditto.
10216
10217 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10218
10219         * include/winnt.h (GetCurrentFiber): Fix typo.
10220
10221 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
10222
10223         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
10224         * include/winbase.h: (GetFileAttributesExW): Fix typo.
10225         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
10226         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
10227         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
10228
10229         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
10230         (GetCurrentFiber): Ditto.
10231         Thanks to: Andy Younger  <AndyY@redlemon.com>
10232
10233         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
10234         DirectX 8 from complaining.
10235         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
10236
10237 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
10238
10239         * include/commctrl.h Updated TreeView and ListView defines and macros.
10240
10241 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
10242
10243         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
10244         and above.
10245
10246 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
10247         * include/winuser.h (VK_KANA): New definition.
10248         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10249
10250 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
10251
10252         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
10253         (RT_FONT): Ditto.
10254         * include/basetsd.h (INT32): Ditto.
10255         * include/windef.h (ATOM): Ditto.
10256         (BOOL): Ditto.
10257         (BYTE): Ditto.
10258         * include/winbase.h (FreeResource): Ditto.
10259         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10260
10261 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10262
10263         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10264         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10265         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10266         macro now defined in newlib sys/types.h.  Emit warning if defined.
10267         * include/winsock2.h: Ditto.
10268         * include/windows.h (Win32_Winsock): Replace with new macros
10269         __USE_W32_SOCKETS and warn of deprecation.
10270
10271 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10272
10273         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10274         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10275
10276 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10277
10278         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10279         (TB_GETBUTTONSIZE): Ditto.
10280         (TCS_HOTTRACK): Ditto.
10281         Thanks to: Chris Hansen <popeofpop@softhome.net>
10282
10283 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10284
10285         * Makefile.in: (snapshot): Add target.
10286         * lib/Makefile.in: (install-headers): Use installdir variable.
10287         (installdir): Set value based on target-alias.
10288
10289 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10290
10291         * include/w32api.h: (_W32API_VERSION): Remove.
10292         (__W32API_VERSION): Add.
10293         (__W32API_MAJOR_VERSION): Ditto.
10294         (__W32API_MINOR_VERSION): Ditto.
10295
10296 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10297
10298         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10299         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10300         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10301         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10302
10303 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10304
10305         * include/mswsock.h: New file.
10306         * include/ws2tcpip.h: New file.
10307         * include/winsock.h (IPPROTO_IGMP): New define.
10308         (IPPROTO_GGP): Correct value.
10309         (SO_* macros): Remove mswsock defines.
10310         (TCP_BSDURGENT): Likewise.
10311         (IP_* macros): Add comment warning of WinSock2 incompatibility
10312         (WSARecvEx): Remove mswsock prototype.
10313         (TransmitFile): Likewise.
10314         (AcceptEx): Likewise.
10315         (GetAcceptExSockaddrs): Likewise.
10316         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10317         (#include <mswsock.h>): Add directive and explanatory comment
10318         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10319         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10320         (#include <winsock.h>): Replace directive with winsock.h file content
10321         The following changes apply to the merged file:
10322         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10323         (SOMAXCONN): Likewise
10324         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10325         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10326         in ws2tcpip.h)
10327         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10328         (FD_*_BIT and FD_* defines): Place together and extend to
10329         FD_MAX_EVENTS 10
10330         (AF* defines): Extend to AF_MAX 10
10331         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10332         (WSAUnhookBlockingHook): Likewise.
10333         (WSASetBlockingHook): Likewise.
10334         (WSACancelBlockingCall): Likewise.
10335         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10336         (#include <mswsock.h>): Delete directive inherited from winsock.h
10337         (WSA_QOS* defines): Add QualityOfService error codes.
10338         (SIO_* defines): Add new macros
10339         * include/ipexport.h (IP_STATUS flags): Add definitions.
10340         (IP_FLAG_DF): Likewise.
10341         (IP_OPT_* ): Likewise.
10342         (struct ip_option_information): Likewise.
10343         (struct icmp_echo_reply): Likewise.
10344
10345 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10346
10347         * include/commctrl.h: Revert TEXT change.
10348         * include/lmalert.h: Ditto.
10349         * include/lmcons.h: Ditto.
10350         * include/lmsname.h: Ditto.
10351         * include/lmsvc.h: Ditto.
10352         * include/ntsecapi.h: Ditto.
10353         * include/oledlg.h: Ditto.
10354         * include/ras.h: Ditto.
10355         * include/regstr.h: Ditto.
10356         * include/richedit.h: Ditto.
10357         * include/wininet.h: Ditto.
10358         * include/winnt.h: Ditto.
10359
10360 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10361
10362         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10363         * include/lmalert.h: Ditto.
10364         * include/lmcons.h: Ditto.
10365         * include/lmsname.h: Ditto.
10366         * include/lmsvc.h: Ditto.
10367         * include/ntsecapi.h: Ditto.
10368         * include/oledlg.h: Ditto.
10369         * include/ras.h: Ditto.
10370         * include/regstr.h: Ditto.
10371         * include/richedit.h: Ditto.
10372         * include/wininet.h: Ditto.
10373         * include/w32api.h: New File.
10374
10375 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10376
10377         * include/shlobj.h: Add missing SLR_* flags.
10378
10379 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10380
10381         * lib/Makefile.in: (host_alias): Add variable.
10382         (host_build): Ditto:
10383         (xinstall): Removed
10384         (xinstall-libraries): Ditto.
10385         (xinstall-headers): Ditto.
10386         (xuninstall): Ditto.
10387         (xuninstall-libraries): Ditto.
10388         (xuninstall-headers): Ditto.
10389         * Makefile.in: (host_alias): Add variable.
10390         (build_alias): Ditto.
10391
10392 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10393
10394         * include/winnt.h: (__TEXT): Add private macro.
10395         (_TEXT): Modify definition to use __TEXT.
10396         (_T): Ditto.
10397         This change allows the passing of a MACRO as an argument and have that
10398         MACRO resolved first.
10399         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10400
10401 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10402
10403         * Makefile.in: Increment VERSION to 0.5
10404         * include/winnt.h: Change TEXT to _TEXT throughout.
10405         (SID_RELEASE): Define.
10406         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10407
10408 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10409
10410         * Apply Phil Krylov patches.
10411         2001-01-19  Phil Krylov  <phil@mail.ru>
10412         * include/commctrl.h: (HDI_IMAGE) New definition.
10413         (HDI_DI_SETITEM) Ditto.
10414         (HDI_ORDER) Ditto.
10415         (HDI_FILTER) Ditto.
10416         (HDF_BITMAP_ON_RIGHT) Ditto.
10417         (HDF_IMAGE) Ditto.
10418         (HDM_SETORDERARRAY) Ditto.
10419         (Header_SetOrderArray) Ditto.
10420         (ICC_BAR_CLASSES) Ditto.
10421         (struct _HD_ITEMA) Change definition.
10422         (struct _HD_ITEMW) Ditto.
10423         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10424         (InitCommonControlsEx()) Ditto.
10425         2001-01-23  Phil Krylov  <phil@mail.ru>
10426         * include/richedit.h: Many Richedit 2.0 definitions.
10427
10428 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10429
10430         * include/winuser.h: (IDC_HAND)  New resource identifier.
10431         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10432
10433 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10434
10435         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10436         Fix typo's.
10437
10438 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10439
10440         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10441         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10442         Thanks To: <bge@users.sourceforge.net>
10443
10444 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10445
10446         * Apply Danny Smith patch 102386
10447         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10448         * lib/rasapi32.def: add symbols available in NT4 and W2k
10449
10450 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10451
10452         * Apply Danny Smith patch 102382
10453         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10454         * lib/mswsock.def: remove leading underscores from symbol names
10455
10456 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10457
10458         * Apply Danny Smith patch 102446
10459         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10460         * include/sql.h (ODBCVER): change default to 0x0351.
10461         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10462         (SQLColAttributes): likewise.
10463         (SQLBindParam): add prototype for ODBC 3.x function.
10464         (SQLCloseCursor): likewise.
10465         (SQLColAttribute): likewise.
10466         (SQLCopyDesc):likewise.
10467         (SQLEndTran): likewise.
10468         (SQLFetchScroll): likewise.
10469         (SQLGetConnectAttr): likewise.
10470         (SQLGetDescField): likewise.
10471         (SQLGetDescRec): likewise.
10472         (SQLGetDiagField): likewise.
10473         (SQLGetDiagRec): likewise.
10474         (SQLGetEnvAttr): likewise.
10475         (SQLGetStmtAttr): likewise.
10476         (SQLSetConnectAttr): likewise.
10477         (SQLSetDescField):likewise.
10478         (SQLSetDescRec): likewise.
10479         (SQLSetEnvAttr): likewise.
10480         (SQLSetStmtAttr): likewise.
10481         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10482         _WIN64 compatability;
10483         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10484         (SQL_ACTIVE_CONNECTIONS): likewise.
10485         (SQL_ACTIVE_STATEMENTS): likewise.
10486         (SQL_ALL_EXCEPT_LIKE): likewise.
10487         (SQL_API_ALL_FUNCTIONS): likewise.
10488         (SQL_API_LOADBYORDINAL): likewise.
10489         (SQL_API_SQLBINDPARAMETER): likewise.
10490         (SQL_API_SQLBROWSECONNECT): likewise.
10491         (SQL_API_SQLCOLATTRIBUTES): likewise.
10492         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10493         (SQL_API_SQLDESCRIBEPARAM): likewise.
10494         (SQL_API_SQLDRIVERCONNECT): likewise.
10495         (SQL_API_SQLDRIVERS): likewise.
10496         (SQL_API_SQLEXTENDEDFETCH): likewise.
10497         (SQL_API_SQLFOREIGNKEYS): likewise.
10498         (SQL_API_SQLMORERESULTS): likewise.
10499         (SQL_API_SQLNATIVESQL): likewise.
10500         (SQL_API_SQLNUMPARAMS): likewise.
10501         (SQL_API_SQLPARAMOPTIONS): likewise.
10502         (SQL_API_SQLPRIMARYKEYS): likewise.
10503         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10504         (SQL_API_SQLPROCEDURES): likewise.
10505         (SQL_API_SQLSETPOS): likewise.
10506         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10507         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10508         (SQL_ASYNC_ENABLE): likewise.
10509         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10510         (SQL_ASYNC_ENABLE_OFF): likewise.
10511         (SQL_ASYNC_ENABLE_ON): likewise.
10512         (SQL_ATTR_READONLY): likewise.
10513         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10514         (SQL_ATTR_WRITE): likewise.
10515         (SQL_AUTOCOMMIT): likewise.
10516         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10517         (SQL_AUTOCOMMIT_OFF): likewise.
10518         (SQL_AUTOCOMMIT_ON): likewise.
10519         (SQL_BEST_ROWID): likewise.
10520         (SQL_BIGINT): likewise.
10521         (SQL_BINARY): likewise.
10522         (SQL_BIND_BY_COLUMN): likewise.
10523         (SQL_BIND_TYPE): likewise.
10524         (SQL_BIND_TYPE_DEFAULT): likewise.
10525         (SQL_BIT): likewise.
10526         (SQL_BOOKMARK_PERSISTENCE): likewise.
10527         (SQL_BP_CLOSE): likewise.
10528         (SQL_BP_DELETE): likewise.
10529         (SQL_BP_DROP): likewise.
10530         (SQL_BP_OTHER_HSTMT): likewise.
10531         (SQL_BP_SCROLL): likewise.
10532         (SQL_BP_TRANSACTION): likewise.
10533         (SQL_BP_UPDATE): likewise.
10534         (SQL_C_BINARY): likewise.
10535         (SQL_C_BIT): likewise.
10536         (SQL_C_BOOKMARK): likewise.
10537         (SQL_C_CHAR): likewise.
10538         (SQL_C_DATE): likewise.
10539         (SQL_C_DEFAULT): likewise.
10540         (SQL_C_DOUBLE): likewise.
10541         (SQL_C_FLOAT): likewise.
10542         (SQL_C_LONG): likewise.
10543         (SQL_C_SHORT): likewise.
10544         (SQL_C_SLONG): likewise.
10545         (SQL_C_SSHORT): likewise.
10546         (SQL_C_STINYINT): likewise.
10547         (SQL_C_TIME): likewise.
10548         (SQL_C_TIMESTAMP): likewise.
10549         (SQL_C_TINYINT): likewise.
10550         (SQL_C_ULONG): likewise.
10551         (SQL_C_USHORT): likewise.
10552         (SQL_C_UTINYINT): likewise.
10553         (SQL_CB_NON_NULL): likewise.
10554         (SQL_CB_NULL): likewise.
10555         (SQL_CC_CLOSE): likewise.
10556         (SQL_CC_DELETE): likewise.
10557         (SQL_CC_PRESERVE): likewise.
10558         (SQL_CN_ANY): likewise.
10559         (SQL_CN_DIFFERENT): likewise.
10560         (SQL_CN_NONE): likewise.
10561         (SQL_COLATT_OPT_MAX): likewise.
10562         (SQL_COLATT_OPT_MIN): likewise.
10563         (SQL_COLUMN_ALIAS): likewise.
10564         (SQL_COLUMN_AUTO_INCREMENT): likewise.
10565         (SQL_COLUMN_CASE_SENSITIVE): likewise.
10566         (SQL_COLUMN_COUNT): likewise.
10567         (SQL_COLUMN_DISPLAY_SIZE): likewise.
10568         (SQL_COLUMN_DRIVER_START): likewise.
10569         (SQL_COLUMN_LABEL): likewise.
10570         (SQL_COLUMN_LENGTH): likewise.
10571         (SQL_COLUMN_MONEY): likewise.
10572         (SQL_COLUMN_NAME): likewise.
10573         (SQL_COLUMN_NULLABLE): likewise.
10574         (SQL_COLUMN_OWNER_NAME): likewise.
10575         (SQL_COLUMN_PRECISION): likewise.
10576         (SQL_COLUMN_QUALIFIER_NAME): likewise.
10577         (SQL_COLUMN_SCALE): likewise.
10578         (SQL_COLUMN_SEARCHABLE): likewise.
10579         (SQL_COLUMN_TABLE_NAME): likewise.
10580         (SQL_COLUMN_TYPE): likewise.
10581         (SQL_COLUMN_TYPE_NAME): likewise.
10582         (SQL_COLUMN_UNSIGNED): likewise.
10583         (SQL_COLUMN_UPDATABLE): likewise.
10584         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
10585         (SQL_CONCUR_DEFAULT): likewise.
10586         (SQL_CONCUR_LOCK): likewise.
10587         (SQL_CONCUR_READ_ONLY): likewise.
10588         (SQL_CONCUR_ROWVER): likewise.
10589         (SQL_CONCUR_TIMESTAMP): likewise.
10590         (SQL_CONCUR_VALUES): likewise.
10591         (SQL_CONCURRENCY): likewise.
10592         (SQL_CONN_OPT_MAX): likewise.
10593         (SQL_CONN_OPT_MIN): likewise.
10594         (SQL_CONNECT_OPT_DRVR_START): likewise.
10595         (SQL_CONVERT_BIGINT): likewise.
10596         (SQL_CONVERT_BINARY): likewise.
10597         (SQL_CONVERT_BIT): likewise.
10598         (SQL_CONVERT_CHAR): likewise.
10599         (SQL_CONVERT_DATE): likewise.
10600         (SQL_CONVERT_DECIMAL): likewise.
10601         (SQL_CONVERT_DOUBLE): likewise.
10602         (SQL_CONVERT_FLOAT): likewise.
10603         (SQL_CONVERT_FUNCTIONS): likewise.
10604         (SQL_CONVERT_INTEGER): likewise.
10605         (SQL_CONVERT_LONGVARBINARY): likewise.
10606         (SQL_CONVERT_LONGVARCHAR): likewise.
10607         (SQL_CONVERT_NUMERIC): likewise.
10608         (SQL_CONVERT_REAL): likewise.
10609         (SQL_CONVERT_SMALLINT): likewise.
10610         (SQL_CONVERT_TIME): likewise.
10611         (SQL_CONVERT_TIMESTAMP): likewise.
10612         (SQL_CONVERT_TINYINT): likewise.
10613         (SQL_CONVERT_VARBINARY): likewise.
10614         (SQL_CONVERT_VARCHAR): likewise.
10615         (SQL_CORRELATION_NAME): likewise.
10616         (SQL_CR_CLOSE): likewise.
10617         (SQL_CR_DELETE): likewise.
10618         (SQL_CR_PRESERVE): likewise.
10619         (SQL_CUR_DEFAULT): likewise.
10620         (SQL_CUR_USE_DRIVER): likewise.
10621         (SQL_CUR_USE_IF_NEEDED): likewise.
10622         (SQL_CUR_USE_ODBC): likewise.
10623         (SQL_CURRENT_QUALIFIER): likewise.
10624         (SQL_CURSOR_DYNAMIC): likewise.
10625         (SQL_CURSOR_FORWARD_ONLY): likewise.
10626         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
10627         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
10628         (SQL_CURSOR_STATIC): likewise.
10629         (SQL_CURSOR_TYPE): likewise.
10630         (SQL_CURSOR_TYPE_DEFAULT): likewise.
10631         (SQL_CVT_BIGINT): likewise.
10632         (SQL_CVT_BINARY): likewise.
10633         (SQL_CVT_BIT): likewise.
10634         (SQL_CVT_CHAR): likewise.
10635         (SQL_CVT_DATE): likewise.
10636         (SQL_CVT_DECIMAL): likewise.
10637         (SQL_CVT_DOUBLE): likewise.
10638         (SQL_CVT_FLOAT): likewise.
10639         (SQL_CVT_INTEGER): likewise.
10640         (SQL_CVT_LONGVARBINARY): likewise.
10641         (SQL_CVT_LONGVARCHAR): likewise.
10642         (SQL_CVT_NUMERIC): likewise.
10643         (SQL_CVT_REAL): likewise.
10644         (SQL_CVT_SMALLINT): likewise.
10645         (SQL_CVT_TIME): likewise.
10646         (SQL_CVT_TIMESTAMP): likewise.
10647         (SQL_CVT_TINYINT): likewise.
10648         (SQL_CVT_VARBINARY): likewise.
10649         (SQL_CVT_VARCHAR): likewise.
10650         (SQL_DATABASE_NAME): likewise.
10651         (SQL_DATE): likewise.
10652         (SQL_DRIVER_HDBC): likewise.
10653         (SQL_DRIVER_HENV): likewise.
10654         (SQL_DRIVER_HLIB): likewise.
10655         (SQL_DRIVER_HSTMT): likewise.
10656         (SQL_DRIVER_NAME): likewise.
10657         (SQL_DRIVER_ODBC_VER): likewise.
10658         (SQL_DRIVER_VER): likewise.
10659         (SQL_ENSURE): likewise.
10660         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
10661         (SQL_EXT_API_LAST): likewise.
10662         (SQL_EXT_API_START): likewise.
10663         (SQL_FD_FETCH_BOOKMARK): likewise.
10664         (SQL_FD_FETCH_PREV): likewise.
10665         (SQL_FD_FETCH_RESUME): likewise.
10666         (SQL_FETCH_PREV): likewise.
10667         (SQL_FETCH_RESUME): likewise.
10668         (SQL_FILE_NOT_SUPPORTED): likewise.
10669         (SQL_FILE_QUALIFIER): likewise.
10670         (SQL_FILE_TABLE): likewise.
10671         (SQL_FILE_USAGE): likewise.
10672         (SQL_FN_CVT_CONVERT): likewise.
10673         (SQL_FN_NUM_ABS): likewise.
10674         (SQL_FN_NUM_ACOS): likewise.
10675         (SQL_FN_NUM_ASIN): likewise.
10676         (SQL_FN_NUM_ATAN): likewise.
10677         (SQL_FN_NUM_ATAN2): likewise.
10678         (SQL_FN_NUM_CEILING): likewise.
10679         (SQL_FN_NUM_COS): likewise.
10680         (SQL_FN_NUM_COT): likewise.
10681         (SQL_FN_NUM_DEGREES): likewise.
10682         (SQL_FN_NUM_EXP): likewise.
10683         (SQL_FN_NUM_FLOOR): likewise.
10684         (SQL_FN_NUM_LOG): likewise.
10685         (SQL_FN_NUM_LOG10): likewise.
10686         (SQL_FN_NUM_MOD): likewise.
10687         (SQL_FN_NUM_PI): likewise.
10688         (SQL_FN_NUM_POWER): likewise.
10689         (SQL_FN_NUM_RADIANS): likewise.
10690         (SQL_FN_NUM_RAND): likewise.
10691         (SQL_FN_NUM_ROUND): likewise.
10692         (SQL_FN_NUM_SIGN): likewise.
10693         (SQL_FN_NUM_SIN): likewise.
10694         (SQL_FN_NUM_SQRT): likewise.
10695         (SQL_FN_NUM_TAN): likewise.
10696         (SQL_FN_NUM_TRUNCATE): likewise.
10697         (SQL_FN_STR_ASCII): likewise.
10698         (SQL_FN_STR_CHAR): likewise.
10699         (SQL_FN_STR_CONCAT): likewise.
10700         (SQL_FN_STR_DIFFERENCE): likewise.
10701         (SQL_FN_STR_INSERT): likewise.
10702         (SQL_FN_STR_LCASE): likewise.
10703         (SQL_FN_STR_LEFT): likewise.
10704         (SQL_FN_STR_LENGTH): likewise.
10705         (SQL_FN_STR_LOCATE): likewise.
10706         (SQL_FN_STR_LOCATE_2): likewise.
10707         (SQL_FN_STR_LTRIM): likewise.
10708         (SQL_FN_STR_REPEAT): likewise.
10709         (SQL_FN_STR_REPLACE): likewise.
10710         (SQL_FN_STR_RIGHT): likewise.
10711         (SQL_FN_STR_RTRIM): likewise.
10712         (SQL_FN_STR_SOUNDEX): likewise.
10713         (SQL_FN_STR_SPACE): likewise.
10714         (SQL_FN_STR_SUBSTRING): likewise.
10715         (SQL_FN_STR_UCASE): likewise.
10716         (SQL_FN_SYS_DBNAME): likewise.
10717         (SQL_FN_SYS_IFNULL): likewise.
10718         (SQL_FN_SYS_USERNAME): likewise.
10719         (SQL_FN_TD_CURDATE): likewise.
10720         (SQL_FN_TD_CURTIME): likewise.
10721         (SQL_FN_TD_DAYNAME): likewise.
10722         (SQL_FN_TD_DAYOFMONTH): likewise.
10723         (SQL_FN_TD_DAYOFWEEK): likewise.
10724         (SQL_FN_TD_DAYOFYEAR): likewise.
10725         (SQL_FN_TD_HOUR): likewise.
10726         (SQL_FN_TD_MINUTE): likewise.
10727         (SQL_FN_TD_MONTH): likewise.
10728         (SQL_FN_TD_MONTHNAME): likewise.
10729         (SQL_FN_TD_NOW): likewise.
10730         (SQL_FN_TD_QUARTER): likewise.
10731         (SQL_FN_TD_SECOND): likewise.
10732         (SQL_FN_TD_TIMESTAMPadd): likewise.
10733         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
10734         (SQL_FN_TD_WEEK): likewise.
10735         (SQL_FN_TD_YEAR): likewise.
10736         (SQL_FN_TSI_DAY): likewise.
10737         (SQL_FN_TSI_FRAC_SECOND): likewise.
10738         (SQL_FN_TSI_HOUR): likewise.
10739         (SQL_FN_TSI_MINUTE): likewise.
10740         (SQL_FN_TSI_MONTH): likewise.
10741         (SQL_FN_TSI_QUARTER): likewise.
10742         (SQL_FN_TSI_SECOND): likewise.
10743         (SQL_FN_TSI_WEEK): likewise.
10744         (SQL_FN_TSI_YEAR): likewise.
10745         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
10746         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
10747         (SQL_GB_NO_RELATION): likewise.
10748         (SQL_GB_NOT_SUPPORTED): likewise.
10749         (SQL_GD_BLOCK): likewise.
10750         (SQL_GD_BOUND): likewise.
10751         (SQL_GET_BOOKMARK): likewise.
10752         (SQL_GROUP_BY): likewise.
10753         (SQL_INFO_DRIVER_START): likewise.
10754         (SQL_INFO_FIRST): likewise.
10755         (SQL_INFO_LAST): likewise.
10756         (SQL_INTERVAL_DAY): likewise.
10757         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
10758         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
10759         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
10760         (SQL_INTERVAL_HOUR): likewise.
10761         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
10762         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
10763         (SQL_INTERVAL_MINUTE): likewise.
10764         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
10765         (SQL_INTERVAL_MONTH): likewise.
10766         (SQL_INTERVAL_SECOND): likewise.
10767         (SQL_INTERVAL_YEAR): likewise.
10768         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
10769         (SQL_KEYSET_SIZE): likewise.
10770         (SQL_KEYSET_SIZE_DEFAULT): likewise.
10771         (SQL_KEYWORDS): likewise.
10772         (SQL_LCK_EXCLUSIVE): likewise.
10773         (SQL_LCK_NO_CHANGE): likewise.
10774         (SQL_LCK_UNLOCK): likewise.
10775         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
10776         (SQL_LIKE_ONLY): likewise.
10777         (SQL_LOCK_TYPES): likewise.
10778         (SQL_LOGIN_TIMEOUT): likewise.
10779         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
10780         (SQL_LONGVARBINARY): likewise.
10781         (SQL_LONGVARCHAR): likewise.
10782         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
10783         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
10784         (SQL_MAX_DSN_LENGTH): likewise.
10785         (SQL_MAX_LENGTH): likewise.
10786         (SQL_MAX_LENGTH_DEFAULT): likewise.
10787         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
10788         (SQL_MAX_OWNER_NAME_LEN): likewise.
10789         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
10790         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
10791         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
10792         (SQL_MAX_ROWS): likewise.
10793         (SQL_MAX_ROWS_DEFAULT): likewise.
10794         (SQL_MODE_DEFAULT): likewise.
10795         (SQL_MODE_READ_ONLY): likewise.
10796         (SQL_MODE_READ_WRITE): likewise.
10797         (SQL_MULT_RESULT_SETS): likewise.
10798         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
10799         (SQL_NC_END): likewise.
10800         (SQL_NC_START): likewise.
10801         (SQL_NEED_LONG_DATA_LEN): likewise.
10802         (SQL_NNC_NON_NULL): likewise.
10803         (SQL_NNC_NULL): likewise.
10804         (SQL_NO_TOTAL): likewise.
10805         (SQL_NON_NULLABLE_COLUMNS): likewise.
10806         (SQL_NOSCAN): likewise.
10807         (SQL_NOSCAN_DEFAULT): likewise.
10808         (SQL_NOSCAN_OFF): likewise.
10809         (SQL_NOSCAN_ON): likewise.
10810         (SQL_NUM_EXTENSIONS): likewise.
10811         (SQL_NUM_FUNCTIONS): likewise.
10812         (SQL_NUMERIC_FUNCTIONS): likewise.
10813         (SQL_OAC_LEVEL1): likewise.
10814         (SQL_OAC_LEVEL2): likewise.
10815         (SQL_OAC_NONE): likewise.
10816         (SQL_ODBC_API_CONFORMANCE): likewise.
10817         (SQL_ODBC_CURSORS): likewise.
10818         (SQL_ODBC_KEYWORDS): likewise.
10819         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
10820         (SQL_ODBC_SQL_CONFORMANCE): likewise.
10821         (SQL_ODBC_SQL_OPT_IEF): likewise.
10822         (SQL_ODBC_VER): likewise.
10823         (SQL_OPT_TRACE): likewise.
10824         (SQL_OPT_TRACE_DEFAULT): likewise.
10825         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
10826         (SQL_OPT_TRACE_OFF): likewise.
10827         (SQL_OPT_TRACE_ON): likewise.
10828         (SQL_OPT_TRACEFILE): likewise.
10829         (SQL_OSC_CORE): likewise.
10830         (SQL_OSC_EXTENDED): likewise.
10831         (SQL_OSC_MINIMUM): likewise.
10832         (SQL_OSCC_COMPLIANT): likewise.
10833         (SQL_OSCC_NOT_COMPLIANT): likewise.
10834         (SQL_OU_DML_STATEMENTS): likewise.
10835         (SQL_OU_INDEX_DEFINITION): likewise.
10836         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
10837         (SQL_OU_PROCEDURE_INVOCATION): likewise.
10838         (SQL_OU_TABLE_DEFINITION): likewise.
10839         (SQL_OUTER_JOINS): likewise.
10840         (SQL_OWNER_TERM): likewise.
10841         (SQL_OWNER_USAGE): likewise.
10842         (SQL_PACKET_SIZE): likewise.
10843         (SQL_PC_NOT_PSEUDO): likewise.
10844         (SQL_POS_add): likewise.
10845         (SQL_POS_DELETE): likewise.
10846         (SQL_POS_OPERATIONS): likewise.
10847         (SQL_POS_POSITION): likewise.
10848         (SQL_POS_REFRESH): likewise.
10849         (SQL_POS_UPDATE): likewise.
10850         (SQL_POSITIONED_STATEMENTS): likewise.
10851         (SQL_PROCEDURE_TERM): likewise.
10852         (SQL_PROCEDURES): likewise.
10853         (SQL_PS_POSITIONED_DELETE): likewise.
10854         (SQL_PS_POSITIONED_UPDATE): likewise.
10855         (SQL_PS_SELECT_FOR_UPDATE): likewise.
10856         (SQL_QL_END): likewise.
10857         (SQL_QL_START): likewise.
10858         (SQL_QU_DML_STATEMENTS): likewise.
10859         (SQL_QU_INDEX_DEFINITION): likewise.
10860         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
10861         (SQL_QU_PROCEDURE_INVOCATION): likewise.
10862         (SQL_QU_TABLE_DEFINITION): likewise.
10863         (SQL_QUALIFIER_LOCATION): likewise.
10864         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
10865         (SQL_QUALIFIER_TERM): likewise.
10866         (SQL_QUALIFIER_USAGE): likewise.
10867         (SQL_QUERY_TIMEOUT): likewise.
10868         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
10869         (SQL_QUICK): likewise.
10870         (SQL_QUIET_MODE): likewise.
10871         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
10872         (SQL_RD_DEFAULT): likewise.
10873         (SQL_RD_OFF): likewise.
10874         (SQL_RD_ON): likewise.
10875         (SQL_RETRIEVE_DATA): likewise.
10876         (SQL_ROW_NUMBER): likewise.
10877         (SQL_ROW_UPDATES): likewise.
10878         (SQL_ROWSET_SIZE): likewise.
10879         (SQL_ROWSET_SIZE_DEFAULT): likewise.
10880         (SQL_ROWVER): likewise.
10881         (SQL_SC_NON_UNIQUE): likewise.
10882         (SQL_SC_TRY_UNIQUE): likewise.
10883         (SQL_SC_UNIQUE): likewise.
10884         (SQL_SCCO_OPT_TIMESTAMP): likewise.
10885         (SQL_SCROLL_DYNAMIC): likewise.
10886         (SQL_SCROLL_FORWARD_ONLY): likewise.
10887         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
10888         (SQL_SCROLL_OPTIONS): likewise.
10889         (SQL_SCROLL_STATIC): likewise.
10890         (SQL_SEARCHABLE): likewise.
10891         (SQL_SIGNED_OFFSET): likewise.
10892         (SQL_SIMULATE_CURSOR): likewise.
10893         (SQL_SO_DYNAMIC): likewise.
10894         (SQL_SO_FORWARD_ONLY): likewise.
10895         (SQL_SO_KEYSET_DRIVEN): likewise.
10896         (SQL_SO_MIXED): likewise.
10897         (SQL_SO_STATIC): likewise.
10898         (SQL_SPEC_MAJOR): likewise.
10899         (SQL_SPEC_MINOR): likewise.
10900         (SQL_SPEC_STRING): likewise.
10901         (SQL_SQ_COMPARISON): likewise.
10902         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
10903         (SQL_SQ_EXISTS): likewise.
10904         (SQL_SQ_IN): likewise.
10905         (SQL_SQ_QUANTIFIED): likewise.
10906         (SQL_SQLSTATE_SIZE): likewise.
10907         (SQL_SS_addITIONS): likewise.
10908         (SQL_SS_DELETIONS): likewise.
10909         (SQL_SS_UPDATES): likewise.
10910         (SQL_STATIC_SENSITIVITY): likewise.
10911         (SQL_STMT_OPT_MAX): likewise.
10912         (SQL_STMT_OPT_MIN): likewise.
10913         (SQL_STRING_FUNCTIONS): likewise.
10914         (SQL_SUBQUERIES): likewise.
10915         (SQL_SYSTEM_FUNCTIONS): likewise.
10916         (SQL_TABLE_STAT): likewise.
10917         (SQL_TABLE_TERM): likewise.
10918         (SQL_TIME): likewise.
10919         (SQL_TIMEDATE_add_INTERVALS): likewise.
10920         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
10921         (SQL_TIMEDATE_FUNCTIONS): likewise.
10922         (SQL_TIMESTAMP): likewise.
10923         (SQL_TINYINT): likewise.
10924         (SQL_TRANSLATE_DLL): likewise.
10925         (SQL_TRANSLATE_OPTION): likewise.
10926         (SQL_TXN_ISOLATION): likewise.
10927         (SQL_TXN_VERSIONING): likewise.
10928         (SQL_TYPE_DRIVER_END): likewise.
10929         (SQL_TYPE_DRIVER_START): likewise.
10930         (SQL_TYPE_MAX): likewise.
10931         (SQL_TYPE_MIN): likewise.
10932         (SQL_TYPE_NULL): likewise.
10933         (SQL_U_UNION): likewise.
10934         (SQL_U_UNION_ALL): likewise.
10935         (SQL_UB_DEFAULT): likewise.
10936         (SQL_UB_OFF): likewise.
10937         (SQL_UB_ON): likewise.
10938         (SQL_UNICODE): likewise.
10939         (SQL_UNICODE_CHAR): likewise.
10940         (SQL_UNICODE_LONGVARCHAR): likewise.
10941         (SQL_UNICODE_VARCHAR): likewise.
10942         (SQL_UNION): likewise.
10943         (SQL_UNSEARCHABLE): likewise.
10944         (SQL_UNSIGNED_OFFSET): likewise.
10945         (SQL_USE_BOOKMARKS): likewise.
10946         (SQL_VARBINARY): likewise.
10947         (SQL_TRUE): add define for ODBC3.x.
10948         (SQL_FALSE): likewise.
10949         (SQL_AM_CONNECTION): likewise.
10950         (SQL_AM_NONE): likewise.
10951         (SQL_AM_STATEMENT): likewise.
10952         (SQL_API_SQLALLOCHANDLE): likewise.
10953         (SQL_API_SQLBINDPARAM): likewise.
10954         (SQL_API_SQLCLOSECURSOR): likewise.
10955         (SQL_API_SQLCOLATTRIBUTE): likewise.
10956         (SQL_API_SQLCOPYDESC): likewise.
10957         (SQL_API_SQLENDTRAN): likewise.
10958         (SQL_API_SQLFETCHSCROLL): likewise.
10959         (SQL_API_SQLFREEHANDLE): likewise.
10960         (SQL_API_SQLGETCONNECTATTR): likewise.
10961         (SQL_API_SQLGETDESCFIELD): likewise.
10962         (SQL_API_SQLGETDESCREC): likewise.
10963         (SQL_API_SQLGETDIAGFIELD): likewise.
10964         (SQL_API_SQLGETDIAGREC): likewise.
10965         (SQL_API_SQLGETENVATTR): likewise.
10966         (SQL_API_SQLGETSTMTATTR): likewise.
10967         (SQL_API_SQLSETCONNECTATTR): likewise.
10968         (SQL_API_SQLSETDESCFIELD): likewise.
10969         (SQL_API_SQLSETDESCREC): likewise.
10970         (SQL_API_SQLSETENVATTR): likewise.
10971         (SQL_API_SQLSETSTMTATTR): likewise.
10972         (SQL_ARD_TYPE): likewise.
10973         (SQL_AT_add_CONSTRAINT): likewise.
10974         (SQL_ATTR_APP_PARAM_DESC): likewise.
10975         (SQL_ATTR_APP_ROW_DESC): likewise.
10976         (SQL_ATTR_AUTO_IPD): likewise.
10977         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
10978         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
10979         (SQL_ATTR_IMP_PARAM_DESC): likewise.
10980         (SQL_ATTR_IMP_ROW_DESC): likewise.
10981         (SQL_ATTR_METADATA_ID): likewise.
10982         (SQL_ATTR_OUTPUT_NTS): likewise.
10983         (SQL_CATALOG_NAME): likewise.
10984         (SQL_CODE_DATE): likewise.
10985         (SQL_CODE_TIME): likewise.
10986         (SQL_CODE_TIMESTAMP): likewise.
10987         (SQL_COLLATION_SEQ): likewise.
10988         (SQL_CURSOR_SENSITIVITY): likewise.
10989         (SQL_DATE_LEN): likewise.
10990         (SQL_DATETIME): likewise.
10991         (SQL_DEFAULT): likewise.
10992         (SQL_DESC_ALLOC_AUTO): likewise.
10993         (SQL_DESC_ALLOC_TYPE): likewise.
10994         (SQL_DESC_ALLOC_USER): likewise.
10995         (SQL_DESC_COUNT): likewise.
10996         (SQL_DESC_DATA_PTR): likewise.
10997         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
10998         (SQL_DESC_INDICATOR_PTR): likewise.
10999         (SQL_DESC_LENGTH): likewise.
11000         (SQL_DESC_NAME): likewise.
11001         (SQL_DESC_NULLABLE): likewise.
11002         (SQL_DESC_OCTET_LENGTH): likewise.
11003         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
11004         (SQL_DESC_PRECISION): likewise.
11005         (SQL_DESC_SCALE): likewise.
11006         (SQL_DESC_TYPE): likewise.
11007         (SQL_DESC_UNNAMED): likewise.
11008         (SQL_DESCRIBE_PARAMETER): likewise.
11009         (SQL_DIAG_ALTER_DOMAIN): likewise.
11010         (SQL_DIAG_ALTER_TABLE): likewise.
11011         (SQL_DIAG_CALL): likewise.
11012         (SQL_DIAG_CLASS_ORIGIN): likewise.
11013         (SQL_DIAG_CONNECTION_NAME): likewise.
11014         (SQL_DIAG_CREATE_ASSERTION): likewise.
11015         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
11016         (SQL_DIAG_CREATE_COLLATION): likewise.
11017         (SQL_DIAG_CREATE_DOMAIN): likewise.
11018         (SQL_DIAG_CREATE_INDEX): likewise.
11019         (SQL_DIAG_CREATE_SCHEMA): likewise.
11020         (SQL_DIAG_CREATE_TABLE): likewise.
11021         (SQL_DIAG_CREATE_TRANSLATION): likewise.
11022         (SQL_DIAG_CREATE_VIEW): likewise.
11023         (SQL_DIAG_DELETE_WHERE): likewise.
11024         (SQL_DIAG_DROP_ASSERTION): likewise.
11025         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
11026         (SQL_DIAG_DROP_COLLATION): likewise.
11027         (SQL_DIAG_DROP_DOMAIN): likewise.
11028         (SQL_DIAG_DROP_INDEX): likewise.
11029         (SQL_DIAG_DROP_SCHEMA): likewise.
11030         (SQL_DIAG_DROP_TABLE): likewise.
11031         (SQL_DIAG_DROP_TRANSLATION): likewise.
11032         (SQL_DIAG_DROP_VIEW): likewise.
11033         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
11034         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
11035         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
11036         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
11037         (SQL_DIAG_GRANT): likewise.
11038         (SQL_DIAG_INSERT): likewise.
11039         (SQL_DIAG_MESSAGE_TEXT): likewise.
11040         (SQL_DIAG_NATIVE): likewise.
11041         (SQL_DIAG_NUMBER): likewise.
11042         (SQL_DIAG_RETURNCODE): likewise.
11043         (SQL_DIAG_REVOKE): likewise.
11044         (SQL_DIAG_ROW_COUNT): likewise.
11045         (SQL_DIAG_SELECT_CURSOR): likewise.
11046         (SQL_DIAG_SERVER_NAME): likewise.
11047         (SQL_DIAG_SQLSTATE): likewise.
11048         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
11049         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
11050         (SQL_DIAG_UPDATE_WHERE): likewise.
11051         (SQL_FALSE): likewise.
11052         (SQL_FETCH_ABSOLUTE): likewise.
11053         (SQL_FETCH_LAST): likewise.
11054         (SQL_FETCH_PRIOR): likewise.
11055         (SQL_FETCH_RELATIVE): likewise.
11056         (SQL_HANDLE_DBC): likewise.
11057         (SQL_HANDLE_DESC): likewise.
11058         (SQL_HANDLE_ENV): likewise.
11059         (SQL_HANDLE_STMT): likewise.
11060         (SQL_INSENSITIVE): likewise.
11061         (SQL_INTEGRITY): likewise.
11062         (SQL_MAX_CATALOG_NAME_LEN): likewise.
11063         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
11064         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
11065         (SQL_MAX_IDENTIFIER_LEN): likewise.
11066         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
11067         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
11068         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
11069         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
11070         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
11071         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
11072         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
11073         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
11074         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
11075         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
11076         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
11077         (SQL_MAXIMUM_INDEX_SIZE): likewise.
11078         (SQL_MAXIMUM_ROW_SIZE): likewise.
11079         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
11080         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
11081         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
11082         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
11083         (SQL_NAMED): likewise.
11084         (SQL_NONSCROLLABLE): likewise.
11085         (SQL_NTSL): likewise.
11086         (SQL_NULL_HANDLE): likewise.
11087         (SQL_NULL_HDESC): likewise.
11088         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
11089         (SQL_PRED_BASIC): likewise.
11090         (SQL_PRED_CHAR): likewise.
11091         (SQL_PRED_NONE): likewise.
11092         (SQL_ROW_IDENTIFIER): likewise.
11093         (SQL_SCROLLABLE): likewise.
11094         (SQL_SENSITIVE): likewise.
11095         (SQL_SUCCEEDED(rc)): likewise.
11096         (SQL_TIME_LEN): likewise.
11097         (SQL_TIMESTAMP_LEN): likewise.
11098         (SQL_TRANSACTION_CAPABLE): likewise.
11099         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
11100         (SQL_TRANSACTION_READ_COMMITTED): likewise.
11101         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
11102         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
11103         (SQL_TRANSACTION_SERIALIZABLE): likewise.
11104         (SQL_TYPE_DATE): likewise.
11105         (SQL_TYPE_TIME): likewise.
11106         (SQL_TYPE_TIMESTAMP): likewise.
11107         (SQL_UNKNOWN_TYPE): likewise.
11108         (SQL_UNNAMED): likewise.
11109         (SQL_UNSPECIFIED): likewise.
11110         (SQL_XOPEN_CLI_YEAR): likewise.
11111         (SQLAllocConnect): add comment marking as deperecated.
11112         (SQLAllocEnv): likewise.
11113         (SQLAllocStmt): likewise.
11114         (SQLFreeConnect): likewise.
11115         (SQLFreeEnv): likewise.
11116         (SQLGetConnectOption): likewise.
11117         (SQLGetStmtOption): likewise.
11118
11119         * include/sqlext.h (#include <sqlucode.h>): add directive.
11120         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
11121         (SQLColAttributes): likewise.
11122         (SQLBulkOperations): add function prototype.
11123         (SQLAllocHandleStd): likewise
11124         (TraceReturn): add Trace API prototype.
11125         (TraceVersion): likewise.
11126         (ODBCGetTryWaitValue):likewise.
11127         (ODBCSetTryWaitValue): likewise.
11128         (SQL_LOCK_RECORD): correct function macro.
11129         (SQL_REFRESH_RECORD): likewise.
11130         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
11131         _WIN64 compatability.
11132         move defines for non-core functions from sql.h to sqlext.h (refer
11133         changes for sql.h)
11134         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
11135         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
11136         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11137         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11138         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
11139         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
11140         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
11141         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
11142         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
11143         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
11144         (SQL_AF_ALL): likewise.
11145         (SQL_AF_AVG): likewise.
11146         (SQL_AF_COUNT): likewise.
11147         (SQL_AF_DISTINCT): likewise.
11148         (SQL_AF_MAX): likewise.
11149         (SQL_AF_MIN): likewise.
11150         (SQL_AF_SUM): likewise.
11151         (SQL_AGGREGATE_FUNCTIONS): likewise.
11152         (SQL_ALL_CATALOGS): likewise.
11153         (SQL_ALL_SCHEMAS): likewise.
11154         (SQL_ALL_TABLE_TYPES): likewise.
11155         (SQL_ALTER_DOMAIN): likewise.
11156         (SQL_AM_CONNECTION): likewise.
11157         (SQL_AM_NONE): likewise.
11158         (SQL_AM_STATEMENT): likewise.
11159         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
11160         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
11161         (SQL_API_SQLALLOCHANDLESTD): likewise.
11162         (SQL_API_SQLBULKOPERATIONS): likewise.
11163         (SQL_ASYNC_MODE): likewise.
11164         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
11165         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
11166         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
11167         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
11168         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
11169         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11170         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11171         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
11172         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
11173         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
11174         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
11175         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
11176         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
11177         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
11178         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
11179         (SQL_ATTR_ACCESS_MODE): likewise.
11180         (SQL_ATTR_ASYNC_ENABLE): likewise.
11181         (SQL_ATTR_AUTOCOMMIT): likewise.
11182         (SQL_ATTR_CONCURRENCY): likewise.
11183         (SQL_ATTR_CONNECTION_POOLING): likewise.
11184         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
11185         (SQL_ATTR_CP_MATCH): likewise.
11186         (SQL_ATTR_CURRENT_CATALOG): likewise.
11187         (SQL_ATTR_CURSOR_TYPE): likewise.
11188         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
11189         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
11190         (SQL_ATTR_ENLIST_IN_DTC): likewise.
11191         (SQL_ATTR_ENLIST_IN_XA): likewise.
11192         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
11193         (SQL_ATTR_KEYSET_SIZE): likewise.
11194         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
11195         (SQL_ATTR_MAX_LENGTH): likewise.
11196         (SQL_ATTR_MAX_ROWS): likewise.
11197         (SQL_ATTR_NOSCAN): likewise.
11198         (SQL_ATTR_ODBC_CURSORS): likewise.
11199         (SQL_ATTR_ODBC_VERSION): likewise.
11200         (SQL_ATTR_PACKET_SIZE): likewise.
11201         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
11202         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
11203         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
11204         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
11205         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
11206         (SQL_ATTR_PARAMSET_SIZE): likewise.
11207         (SQL_ATTR_QUERY_TIMEOUT): likewise.
11208         (SQL_ATTR_QUIET_MODE): likewise.
11209         (SQL_ATTR_RETRIEVE_DATA): likewise.
11210         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
11211         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
11212         (SQL_ATTR_ROW_BIND_TYPE): likewise.
11213         (SQL_ATTR_ROW_NUMBER): likewise.
11214         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
11215         (SQL_ATTR_ROW_STATUS_PTR): likewise.
11216         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
11217         (SQL_ATTR_SIMULATE_CURSOR): likewise.
11218         (SQL_ATTR_TRACE): likewise.
11219         (SQL_ATTR_TRACEFILE): likewise.
11220         (SQL_ATTR_TRANSLATE_LIB): likewise.
11221         (SQL_ATTR_TRANSLATE_OPTION): likewise.
11222         (SQL_ATTR_TXN_ISOLATION): likewise.
11223         (SQL_ATTR_USE_BOOKMARKS): likewise.
11224         (SQL_BATCH_ROW_COUNT): likewise.
11225         (SQL_BATCH_SUPPORT): likewise.
11226         (SQL_BRC_EXPLICIT): likewise.
11227         (SQL_BRC_PROCEDURES): likewise.
11228         (SQL_BRC_ROLLED_UP): likewise.
11229         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
11230         (SQL_BS_ROW_COUNT_PROC): likewise.
11231         (SQL_BS_SELECT_EXPLICIT): likewise.
11232         (SQL_BS_SELECT_PROC): likewise.
11233         (SQL_C_INTERVAL_DAY): likewise.
11234         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
11235         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
11236         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
11237         (SQL_C_INTERVAL_HOUR): likewise.
11238         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
11239         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
11240         (SQL_C_INTERVAL_MINUTE): likewise.
11241         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
11242         (SQL_C_INTERVAL_MONTH): likewise.
11243         (SQL_C_INTERVAL_SECOND): likewise.
11244         (SQL_C_INTERVAL_YEAR): likewise.
11245         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
11246         (SQL_C_NUMERIC): likewise.
11247         (SQL_C_SBIGINT): likewise.
11248         (SQL_C_TYPE_DATE): likewise.
11249         (SQL_C_TYPE_TIME): likewise.
11250         (SQL_C_TYPE_TIMESTAMP): likewise.
11251         (SQL_C_UBIGINT): likewise.
11252         (SQL_C_VARBOOKMARK): likewise.
11253         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
11254         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11255         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11256         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
11257         (SQL_CA_CREATE_ASSERTION): likewise.
11258         (SQL_CA1_ABSOLUTE): likewise.
11259         (SQL_CA1_BOOKMARK): likewise.
11260         (SQL_CA1_BULK_ADD): likewise.
11261         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11262         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11263         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11264         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11265         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11266         (SQL_CA1_LOCK_UNLOCK): likewise.
11267         (SQL_CA1_NEXT): likewise.
11268         (SQL_CA1_POS_DELETE): likewise.
11269         (SQL_CA1_POS_POSITION): likewise.
11270         (SQL_CA1_POS_REFRESH): likewise.
11271         (SQL_CA1_POS_UPDATE): likewise.
11272         (SQL_CA1_POSITIONED_DELETE): likewise.
11273         (SQL_CA1_POSITIONED_UPDATE): likewise.
11274         (SQL_CA1_RELATIVE): likewise.
11275         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11276         (SQL_CA2_CRC_APPROXIMATE): likewise.
11277         (SQL_CA2_CRC_EXACT): likewise.
11278         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11279         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11280         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11281         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11282         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11283         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11284         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11285         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11286         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11287         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11288         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11289         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11290         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11291         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11292         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11293         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11294         (SQL_CATALOG_LOCATION): likewise.
11295         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11296         (SQL_CATALOG_TERM): likewise.
11297         (SQL_CATALOG_USAGE): likewise.
11298         (SQL_CCOL_CREATE_COLLATION): likewise.
11299         (SQL_CCS_COLLATE_CLAUSE): likewise.
11300         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11301         (SQL_CCS_LIMITED_COLLATION): likewise.
11302         (SQL_CDO_COLLATION): likewise.
11303         (SQL_CDO_CONSTRAINT): likewise.
11304         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11305         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11306         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11307         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11308         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11309         (SQL_CDO_CREATE_DOMAIN): likewise.
11310         (SQL_CDO_DEFAULT): likewise.
11311         (SQL_CL_END): likewise.
11312         (SQL_CL_START): likewise.
11313         (SQL_COL_PRED_BASIC): likewise.
11314         (SQL_COL_PRED_CHAR): likewise.
11315         (SQL_COLUMN_DRIVER_START): likewise.
11316         (SQL_COLUMN_IGNORE): likewise.
11317         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11318         (SQL_CONVERT_GUID): likewise.
11319         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11320         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11321         (SQL_CONVERT_WCHAR): likewise.
11322         (SQL_CONVERT_WLONGVARCHAR): likewise.
11323         (SQL_CONVERT_WVARCHAR): likewise.
11324         (SQL_CP_DEFAULT): likewise.
11325         (SQL_CP_MATCH_DEFAULT): likewise.
11326         (SQL_CP_OFF): likewise.
11327         (SQL_CP_ONE_PER_DRIVER): likewise.
11328         (SQL_CP_ONE_PER_HENV): likewise.
11329         (SQL_CP_RELAXED_MATCH): likewise.
11330         (SQL_CP_STRICT_MATCH): likewise.
11331         (SQL_CREATE_ASSERTION): likewise.
11332         (SQL_CREATE_CHARACTER_SET): likewise.
11333         (SQL_CREATE_COLLATION): likewise.
11334         (SQL_CREATE_DOMAIN): likewise.
11335         (SQL_CREATE_SCHEMA): likewise.
11336         (SQL_CREATE_TABLE): likewise.
11337         (SQL_CREATE_TRANSLATION): likewise.
11338         (SQL_CREATE_VIEW): likewise.
11339         (SQL_CS_AUTHORIZATION): likewise.
11340         (SQL_CS_CREATE_SCHEMA): likewise.
11341         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11342         (SQL_CT_COLUMN_COLLATION): likewise.
11343         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11344         (SQL_CT_COLUMN_DEFAULT): likewise.
11345         (SQL_CT_COMMIT_DELETE): likewise.
11346         (SQL_CT_COMMIT_PRESERVE): likewise.
11347         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11348         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11349         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11350         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11351         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11352         (SQL_CT_CREATE_TABLE): likewise.
11353         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11354         (SQL_CT_LOCAL_TEMPORARY): likewise.
11355         (SQL_CT_TABLE_CONSTRAINT): likewise.
11356         (SQL_CTR_CREATE_TRANSLATION): likewise.
11357         (SQL_CU_DML_STATEMENTS): likewise.
11358         (SQL_CU_INDEX_DEFINITION): likewise.
11359         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11360         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11361         (SQL_CU_TABLE_DEFINITION): likewise.
11362         (SQL_CVT_GUID): likewise.
11363         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11364         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11365         (SQL_CVT_WCHAR): likewise.
11366         (SQL_CVT_WLONGVARCHAR): likewise.
11367         (SQL_CVT_WVARCHAR): likewise.
11368         (SQL_DA_DROP_ASSERTION): likewise.
11369         (SQL_DATETIME_LITERALS): likewise.
11370         (SQL_DB_DEFAULT): likewise.
11371         (SQL_DB_DISCONNECT): likewise.
11372         (SQL_DB_RETURN_TO_POOL): likewise.
11373         (SQL_DC_DROP_COLLATION): likewise.
11374         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11375         (SQL_DD_CASCADE): likewise.
11376         (SQL_DD_DROP_DOMAIN): likewise.
11377         (SQL_DD_RESTRICT): likewise.
11378         (SQL_DDL_INDEX): likewise.
11379         (SQL_DELETE_BY_BOOKMARK): likewise.
11380         (SQL_DESC_ARRAY_SIZE): likewise.
11381         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11382         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11383         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11384         (SQL_DESC_BASE_TABLE_NAME): likewise.
11385         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11386         (SQL_DESC_BIND_TYPE): likewise.
11387         (SQL_DESC_CASE_SENSITIVE): likewise.
11388         (SQL_DESC_CATALOG_NAME): likewise.
11389         (SQL_DESC_CONCISE_TYPE): likewise.
11390         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11391         (SQL_DESC_DISPLAY_SIZE): likewise.
11392         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11393         (SQL_DESC_LABEL): likewise.
11394         (SQL_DESC_LITERAL_PREFIX): likewise.
11395         (SQL_DESC_LITERAL_SUFFIX): likewise.
11396         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11397         (SQL_DESC_MAXIMUM_SCALE): likewise.
11398         (SQL_DESC_MINIMUM_SCALE): likewise.
11399         (SQL_DESC_NUM_PREC_RADIX): likewise.
11400         (SQL_DESC_PARAMETER_TYPE): likewise.
11401         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11402         (SQL_DESC_SCHEMA_NAME): likewise.
11403         (SQL_DESC_SEARCHABLE): likewise.
11404         (SQL_DESC_TABLE_NAME): likewise.
11405         (SQL_DESC_TYPE_NAME): likewise.
11406         (SQL_DESC_UNSIGNED): likewise.
11407         (SQL_DESC_UPDATABLE): likewise.
11408         (SQL_DI_CREATE_INDEX): likewise.
11409         (SQL_DI_DROP_INDEX): likewise.
11410         (SQL_DIAG_COLUMN_NUMBER): likewise.
11411         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11412         (SQL_DIAG_ROW_NUMBER): likewise.
11413         (SQL_DL_SQL92_DATE): likewise.
11414         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11415         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11416         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11417         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11418         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11419         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11420         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11421         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11422         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11423         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11424         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11425         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11426         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11427         (SQL_DL_SQL92_TIME): likewise.
11428         (SQL_DL_SQL92_TIMESTAMP): likewise.
11429         (SQL_DM_VER): likewise.
11430         (SQL_DRIVER_HDESC): likewise.
11431         (SQL_DROP_ASSERTION): likewise.
11432         (SQL_DROP_CHARACTER_SET): likewise.
11433         (SQL_DROP_COLLATION): likewise.
11434         (SQL_DROP_DOMAIN): likewise.
11435         (SQL_DROP_SCHEMA): likewise.
11436         (SQL_DROP_TABLE): likewise.
11437         (SQL_DROP_TRANSLATION): likewise.
11438         (SQL_DROP_VIEW): likewise.
11439         (SQL_DS_CASCADE): likewise.
11440         (SQL_DS_DROP_SCHEMA): likewise.
11441         (SQL_DS_RESTRICT): likewise.
11442         (SQL_DT_CASCADE): likewise.
11443         (SQL_DT_DROP_TABLE): likewise.
11444         (SQL_DT_RESTRICT): likewise.
11445         (SQL_DTC_DONE): likewise.
11446         (SQL_DTR_DROP_TRANSLATION): likewise.
11447         (SQL_DV_CASCADE): likewise.
11448         (SQL_DV_DROP_VIEW): likewise.
11449         (SQL_DV_RESTRICT): likewise.
11450         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11451         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11452         (SQL_EXT_API_LAST): likewise.
11453         (SQL_EXT_API_START): likewise.
11454         (SQL_FETCH_BY_BOOKMARK): likewise.
11455         (SQL_FETCH_FIRST_SYSTEM): likewise.
11456         (SQL_FETCH_FIRST_USER): likewise.
11457         (SQL_FN_CVT_CAST): likewise.
11458         (SQL_FN_STR_BIT_LENGTH): likewise.
11459         (SQL_FN_STR_CHAR_LENGTH): likewise.
11460         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11461         (SQL_FN_STR_OCTET_LENGTH): likewise.
11462         (SQL_FN_STR_POSITION): likewise.
11463         (SQL_FN_TD_CURRENT_DATE): likewise.
11464         (SQL_FN_TD_CURRENT_TIME): likewise.
11465         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11466         (SQL_FN_TD_EXTRACT): likewise.
11467         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11468         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11469         (SQL_FUNC_EXISTS(exists,api)): likewise.
11470         (SQL_GB_COLLATE): likewise.
11471         (SQL_HANDLE_SENV): likewise.
11472         (SQL_IK_ALL): likewise.
11473         (SQL_IK_ASC): likewise.
11474         (SQL_IK_DESC): likewise.
11475         (SQL_IK_NONE): likewise.
11476         (SQL_INDEX_KEYWORDS): likewise.
11477         (SQL_INFO_DRIVER_START): likewise.
11478         (SQL_INFO_LAST): likewise.
11479         (SQL_INFO_SCHEMA_VIEWS): likewise.
11480         (SQL_INITIALLY_DEFERRED): likewise.
11481         (SQL_INITIALLY_IMMEDIATE): likewise.
11482         (SQL_INSERT_STATEMENT): likewise.
11483         (SQL_INTERVAL): likewise.
11484         (SQL_IS_INSERT_LITERALS): likewise.
11485         (SQL_IS_INSERT_SEARCHED): likewise.
11486         (SQL_IS_INTEGER): likewise.
11487         (SQL_IS_POINTER): likewise.
11488         (SQL_IS_SELECT_INTO): likewise.
11489         (SQL_IS_SMALLINT): likewise.
11490         (SQL_IS_UINTEGER): likewise.
11491         (SQL_IS_USMALLINT): likewise.
11492         (SQL_ISV_ASSERTIONS): likewise.
11493         (SQL_ISV_CHARACTER_SETS): likewise.
11494         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11495         (SQL_ISV_COLLATIONS): likewise.
11496         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11497         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11498         (SQL_ISV_COLUMNS): likewise.
11499         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11500         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11501         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11502         (SQL_ISV_DOMAINS): likewise.
11503         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11504         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11505         (SQL_ISV_SCHEMATA): likewise.
11506         (SQL_ISV_SQL_LANGUAGES): likewise.
11507         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11508         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11509         (SQL_ISV_TABLES): likewise.
11510         (SQL_ISV_TRANSLATIONS): likewise.
11511         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11512         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11513         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11514         (SQL_ISV_VIEWS): likewise.
11515         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11516         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11517         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11518         (SQL_NO_COLUMN_NUMBER): likewise.
11519         (SQL_NO_ROW_NUMBER): likewise.
11520         (SQL_NOT_DEFERRABLE): likewise.
11521         (SQL_NUM_EXTENSIONS): likewise.
11522         (SQL_NUM_FUNCTIONS): likewise.
11523         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11524         (SQL_OIC_CORE): likewise.
11525         (SQL_OIC_LEVEL1): likewise.
11526         (SQL_OIC_LEVEL2): likewise.
11527         (SQL_OV_ODBC2): likewise.
11528         (SQL_OV_ODBC3): likewise.
11529         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
11530         (SQL_PARAM_ARRAY_SELECTS): likewise.
11531         (SQL_PARAM_BIND_BY_COLUMN): likewise.
11532         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
11533         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
11534         (SQL_PARAM_ERROR): likewise.
11535         (SQL_PARAM_IGNORE): likewise.
11536         (SQL_PARAM_PROCEED): likewise.
11537         (SQL_PARAM_SUCCESS): likewise.
11538         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
11539         (SQL_PARAM_UNUSED): likewise.
11540         (SQL_PARC_BATCH): likewise.
11541         (SQL_PARC_NO_BATCH): likewise.
11542         (SQL_PAS_BATCH): likewise.
11543         (SQL_PAS_NO_BATCH): likewise.
11544         (SQL_PAS_NO_SELECT): likewise.
11545         (SQL_ROW_IGNORE): likewise.
11546         (SQL_ROW_NUMBER_UNKNOWN): likewise.
11547         (SQL_ROW_PROCEED): likewise.
11548         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
11549         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
11550         (SQL_SC_SQL92_ENTRY): likewise.
11551         (SQL_SC_SQL92_FULL): likewise.
11552         (SQL_SC_SQL92_INTERMEDIATE): likewise.
11553         (SQL_SCC_ISO92_CLI): likewise.
11554         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
11555         (SQL_SCHEMA_TERM): likewise.
11556         (SQL_SCHEMA_USAGE): likewise.
11557         (SQL_SDF_CURRENT_DATE): likewise.
11558         (SQL_SDF_CURRENT_TIME): likewise.
11559         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
11560         (SQL_SFKD_CASCADE): likewise.
11561         (SQL_SFKD_NO_ACTION): likewise.
11562         (SQL_SFKD_SET_DEFAULT): likewise.
11563         (SQL_SFKD_SET_NULL): likewise.
11564         (SQL_SFKU_CASCADE): likewise.
11565         (SQL_SFKU_NO_ACTION): likewise.
11566         (SQL_SFKU_SET_DEFAULT): likewise.
11567         (SQL_SFKU_SET_NULL): likewise.
11568         (SQL_SG_DELETE_TABLE): likewise.
11569         (SQL_SG_INSERT_COLUMN): likewise.
11570         (SQL_SG_INSERT_TABLE): likewise.
11571         (SQL_SG_REFERENCES_COLUMN): likewise.
11572         (SQL_SG_REFERENCES_TABLE): likewise.
11573         (SQL_SG_SELECT_TABLE): likewise.
11574         (SQL_SG_UPDATE_COLUMN): likewise.
11575         (SQL_SG_UPDATE_TABLE): likewise.
11576         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
11577         (SQL_SG_USAGE_ON_COLLATION): likewise.
11578         (SQL_SG_USAGE_ON_DOMAIN): likewise.
11579         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
11580         (SQL_SG_WITH_GRANT_OPTION): likewise.
11581         (SQL_SNVF_BIT_LENGTH): likewise.
11582         (SQL_SNVF_CHAR_LENGTH): likewise.
11583         (SQL_SNVF_CHARACTER_LENGTH): likewise.
11584         (SQL_SNVF_EXTRACT): likewise.
11585         (SQL_SNVF_OCTET_LENGTH): likewise.
11586         (SQL_SNVF_POSITION): likewise.
11587         (SQL_SP_BETWEEN): likewise.
11588         (SQL_SP_COMPARISON): likewise.
11589         (SQL_SP_EXISTS): likewise.
11590         (SQL_SP_IN): likewise.
11591         (SQL_SP_ISNOTNULL): likewise.
11592         (SQL_SP_ISNULL): likewise.
11593         (SQL_SP_LIKE): likewise.
11594         (SQL_SP_MATCH_FULL): likewise.
11595         (SQL_SP_MATCH_PARTIAL): likewise.
11596         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
11597         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
11598         (SQL_SP_OVERLAPS): likewise.
11599         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
11600         (SQL_SP_UNIQUE): likewise.
11601         (SQL_SQL_CONFORMANCE): likewise.
11602         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
11603         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
11604         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
11605         (SQL_SQL92_GRANT): likewise.
11606         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
11607         (SQL_SQL92_PREDICATES): likewise.
11608         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
11609         (SQL_SQL92_REVOKE): likewise.
11610         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
11611         (SQL_SQL92_STRING_FUNCTIONS): likewise.
11612         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
11613         (SQL_SR_CASCADE): likewise.
11614         (SQL_SR_DELETE_TABLE): likewise.
11615         (SQL_SR_GRANT_OPTION_FOR): likewise.
11616         (SQL_SR_INSERT_COLUMN): likewise.
11617         (SQL_SR_INSERT_TABLE): likewise.
11618         (SQL_SR_REFERENCES_COLUMN): likewise.
11619         (SQL_SR_REFERENCES_TABLE): likewise.
11620         (SQL_SR_RESTRICT): likewise.
11621         (SQL_SR_SELECT_TABLE): likewise.
11622         (SQL_SR_UPDATE_COLUMN): likewise.
11623         (SQL_SR_UPDATE_TABLE): likewise.
11624         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
11625         (SQL_SR_USAGE_ON_COLLATION): likewise.
11626         (SQL_SR_USAGE_ON_DOMAIN): likewise.
11627         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
11628         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
11629         (SQL_SRJO_CROSS_JOIN): likewise.
11630         (SQL_SRJO_EXCEPT_JOIN): likewise.
11631         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
11632         (SQL_SRJO_INNER_JOIN): likewise.
11633         (SQL_SRJO_INTERSECT_JOIN): likewise.
11634         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
11635         (SQL_SRJO_NATURAL_JOIN): likewise.
11636         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
11637         (SQL_SRJO_UNION_JOIN): likewise.
11638         (SQL_SRVC_DEFAULT): likewise.
11639         (SQL_SRVC_NULL): likewise.
11640         (SQL_SRVC_ROW_SUBQUERY): likewise.
11641         (SQL_SRVC_VALUE_EXPRESSION): likewise.
11642         (SQL_SSF_CONVERT): likewise.
11643         (SQL_SSF_LOWER): likewise.
11644         (SQL_SSF_SUBSTRING): likewise.
11645         (SQL_SSF_TRANSLATE): likewise.
11646         (SQL_SSF_TRIM_BOTH): likewise.
11647         (SQL_SSF_TRIM_LEADING): likewise.
11648         (SQL_SSF_TRIM_TRAILING): likewise.
11649         (SQL_SSF_UPPER): likewise.
11650         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
11651         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
11652         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
11653         (SQL_SU_DML_STATEMENTS): likewise.
11654         (SQL_SU_INDEX_DEFINITION): likewise.
11655         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
11656         (SQL_SU_PROCEDURE_INVOCATION): likewise.
11657         (SQL_SU_TABLE_DEFINITION): likewise.
11658         (SQL_SVE_CASE): likewise.
11659         (SQL_SVE_CAST): likewise.
11660         (SQL_SVE_COALESCE): likewise.
11661         (SQL_SVE_NULLIF): likewise.
11662         (SQL_UB_FIXED): likewise.
11663         (SQL_UB_VARIABLE): likewise.
11664         (SQL_UNION_STATEMENT): likewise.
11665         (SQL_UPDATE_BY_BOOKMARK): likewise.
11666         (SQL_US_UNION): likewise.
11667         (SQL_US_UNION_ALL): likewise.
11668         (SQL_DESC_ROWVER): likewise.
11669         (SQL_GUID): likewise.
11670         (SQL_C_GUID): likewise.
11671         (ODBC_STD): likewise.
11672         (SQLAllocHandle): likewise.
11673         (SQLAllocEnv(p)): likewise.
11674         (SQL_YEAR): likewise.
11675         (SQL_MONTH): likewise.
11676         (SQL_DAY): likewise.
11677         (SQL_HOUR): likewise.
11678         (SQL_MINUTE): likewise.
11679         (SQL_SECOND): likewise.
11680         (SQL_YEAR_TO_MONTH): likewise.
11681         (SQL_DAY_TO_HOUR): likewise.
11682         (SQL_DAY_TO_MINUTE): likewise.
11683         (SQL_DAY_TO_SECOND): likewise.
11684         (SQL_HOUR_TO_MINUTE): likewise.
11685         (SQL_HOUR_TO_SECOND): likewise.
11686         (SQL_MINUTE_TO_SECOND): likewise.
11687         (SQL_ATTR_ANSI_APP): likewise.
11688         (SQL_AA_TRUE): likewise.
11689         (SQL_AA_FALSE): likewise.
11690
11691         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
11692         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
11693         (struct tagSQL_DAY_SECOND): likewise.
11694         (struct tagSQL_INTERVAL_STRUCT): likewise.
11695         (struct tagSQL_NUMERIC_STRUCT): likewise.
11696         (struct tagSQLGUID): add for 0DBC3.50.
11697         (enum SQLINTERVAL): add for ODBC3.x.
11698         (SQLWCHAR): add typedef.
11699         (SQLTCHAR): add typedef, conditional on UNICODE.
11700         (SQLLEN): add typedef for _WIN64, define for _WIN32.
11701         (SQLULEN): likewise.
11702         (SQLROWOFFSET): likewise.
11703         (SQLROWCOUNT): likewise.
11704         (SQLTRANSID): likewise.
11705         (SQLSETPOSIROW): likewise.
11706         (SQLHANDLE): add ODBC3.x typedef.
11707         (SQLHDESC): likewise.
11708         (SQLDATE): likewise.
11709         (SQLDECIMAL): likewise.
11710         (SQLDOUBLE): likewise.
11711         (SQLFLOAT): likewise.
11712         (SQLNUMERIC): likewise.
11713         (SQLREAL): likewise.
11714         (SQLTIME): likewise.
11715         (SQLTIMESTAMP): likewise.
11716         (SQLVARCHAR): likewise.
11717         (SQLBIGINT): likewise.
11718         (SQLUBIGINT): likewise.
11719         (SQL_DATE_STRUCT): likewise.
11720         (SQL_TIME_STRUCT): likewise.
11721         (SQL_TIMESTAMP_STRUCT): likewise.
11722         (ODBCINT64): add ODBC3.x define.
11723
11724         * lib/odbc32.def : regenerate.
11725
11726 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
11727
11728         * Apply Danny Smith patch 102275
11729         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11730         * include/objbase.h: (COM_RIGHTS): Add definition.
11731         (tagSTDMSHLFLAGS): add enumeration.
11732         (CoInitializeEx): Add prototypes.
11733         (CoGetStdMarshalEx): ditto.
11734         (CoCreateInstanceEx): ditto.
11735         (CoInitializeSecurity): ditto.
11736         (CoGetCallContext): ditto.
11737         (CoQueryProxyBlanket): ditto.
11738         (CoSetProxyBlanket): ditto.
11739         (CoCopyProxy): ditto.
11740         (CoQueryClientBlanket): ditto.
11741         (CoImpersonateClient): ditto.
11742         (CoRevertToSelf): ditto.
11743         (CoQueryAuthenticationServices): ditto.
11744         (CoSwitchCallContext): ditto.
11745         (CoGetInstanceFromFile): ditto.
11746         (CoGetInstanceFromIStorage): ditto.
11747         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
11748         (SOLE_AUTHENTICATION_INFO): ditto.
11749         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
11750         (COLE_DEFAULT_PRINCIPAL): Add definition.
11751         (COLE_DEFAULT_AUTHINFO): Ditto.
11752         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
11753         (RPC_PROTSEQ_VECTOR) Fix typo.
11754         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
11755         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
11756         attribute.
11757
11758 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
11759
11760         * lib/msvcp60.def: Apply Danny Smith patch 103321.
11761         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
11762         New file.
11763
11764 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
11765
11766         * include/winnt.h: Add PTOKEN_USER.
11767
11768 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11769
11770         * include/sqlucode.h: Apply Danny Smith patch 102443
11771         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11772         New file.
11773
11774 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11775
11776         * lib/odbccp32.def: Apply Danny Smith patch 102442
11777         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11778         New file.
11779
11780 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11781
11782         * include/odbcinst.h: Apply Danny Smith patch 102441
11783         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11784         New file.
11785
11786 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
11787
11788         * lib/Makefile.in: Don't make "links" to include/w32api directory.
11789
11790 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
11791
11792         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
11793
11794 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
11795
11796         * lib/Makefile.in: Install headers and libraries in tooldir.
11797
11798 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11799
11800         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
11801         SORT_STRINGSORT: ditto.
11802         CMAP*: ditto.
11803         CTRY_*: add new defines.
11804         LGRPID_*: ditto.
11805         LCMAP*: change defines to hex notation.
11806         CALID: change from ULONG to DWORD.
11807         CALTYPE: ditto.
11808         _cpinfoex[AW]: add structure.
11809         FoldString: correct Unicode mappings.
11810         GetCPInfoEx[AW]: add prototypes.
11811         EnumCalendarInfoEx[AW]: ditto.
11812         EnumDateFormatsEx[AW]: ditto.
11813         EnumSystemLanguageGroups[AW]: ditto.
11814         EnumLanguageGroupLocales[AW]: ditto.
11815         EnumUILanguages[AW]: ditto.
11816         GetSystemDefaultUILanguage[AW]: ditto.
11817         GetUserDefaultUILanguage[AW]: ditto.
11818         IsValidLanguageGroup[AW]: ditto.
11819         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
11820         LANGUAGEGROUP_ENUMPROC[AW]: ditto
11821         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
11822         UILANGUAGE_ENUMPROC[AW]: ditto
11823         DATEFMT_ENUMPROCEX[AW]: ditto
11824         LPCURRENCYFMT[AW]: add structure pointer typedef
11825         LPNUMBERFMT[AW]: ditto
11826
11827 2000-12-02  Matt Hargett  <matt@use.net>
11828
11829         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
11830         possible return code for the SetFilePointer() win32 API call.
11831
11832 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
11833
11834         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
11835
11836 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
11837
11838         * Makefile.in: increment VERSION.
11839         (dist:) Rename to srcdist.  Create new dist target to call
11840         srcdist and bindist targets.
11841         (srcdist:) New target.
11842         (clean-top:) add call to mostlyclean-top and add rm of distribution
11843         tarballs.
11844         * lib/Makefile.in: (uninstall:) modify to remove files from the
11845         new w32api subdirectory and to remove w32api subdirectory.
11846         (xuninstall:) Ditto.
11847         TODO: Add a task to redo the clean targets of Makefile.in
11848
11849 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
11850
11851         * lib/Makefile.in: Install header files in w32api subdirectory.
11852
11853 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
11854
11855         * CONTRIBUTIONS: New file.
11856         * README: Change the maintained by header.
11857         * TODO: Add a note about checking the TODO.
11858
11859 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
11860
11861         * Merge in accepted changes from
11862         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11863         * include/basetyps.h: add comment for GUID_DEFINED
11864         * include/lm.h: add includes for lmerr.h and lmserver.h
11865         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
11866         * include/lmerr.h:  add error codes
11867         * include/lmserver.h: replace LPTSTR with LPWSTR,
11868         LPTCSTR with LPWCSTR in structures and prototypes
11869         * include/lmshare.h: ditto
11870         * include/lmuse.h: ditto
11871         * include/lmstats.h: ditto
11872         * include/oleauto.h: add function prototype SystemTimeToVariantTime
11873         * include/winbase.h: change first argument of CommConfigDialog to const
11874         * include/windowsx.h: add macros  defining FAR versions of
11875         mem and string functions for porting from Win16 code
11876         * include/winioctl.h:  added IOCTL_STORAGE defines
11877         * include/winnetwk.h:  added WNNC_NET flags
11878         * include/winnt.h: add include of <basetsd.h>;
11879         add structs; add pointer typedefs  for TOKEN structs
11880         * include/winsock.h: add guard around BSD-ish typedefs
11881         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
11882         * include/basetsd.h: new file
11883         * include/raserror.h: ditto
11884         * include/rassapi.h: ditto
11885         * include/ras.h: ditto
11886         comment from Earnie: replaced original ras.h contribution with Danny's
11887         contribution as it is more complete.
11888         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
11889
11890 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
11891
11892         * Makefile.in: increment VERSION.  Change tar file name for dist and
11893         bindist targets to be more standard.
11894         * config.guess: Update with the currently published file.
11895         * config.sub: ditto.
11896         * configure.in: Use value of build_alias instead of testing for
11897         directory names to set BUILDENV.
11898         * configure: ditto.
11899         * lib/Makefile.in: Change the name of the targets install,
11900         install-headers and install-libraries to xinstall, xinstall-headers
11901         and xinstall-libraries for system target specified installation.
11902         Recreate targets install, install-headers and install-libraries for
11903         exec-prefix specified installation.  Ditto for the uninstall targets of
11904         the same name.
11905
11906 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
11907
11908         * include/iprtrmib.h: Further layout changes according to standard.
11909         * include/iptypes.h: Ditto.
11910         * include/ntdef.h: Ditto.
11911         * include/ntsecapi.h: Ditto.
11912         * include/subauth.h: Ditto.
11913
11914 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
11915
11916         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
11917
11918 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
11919
11920         * include/ntsecapi.h: New file.
11921         * include/subauth.h: Ditto.
11922         * include/ipexport.h: Fix global header define not to contain
11923         trailing underscore. Change layout according to standard.
11924         * include/iphlpapi.h: Ditto.
11925         * include/ipifcons.h: Ditto.
11926         * include/iprtrmib.h: Ditto.
11927         * include/iptypes.h: Ditto.
11928         * include/ntdef.h: Ditto. Define conditional datatypes dependent
11929         of inclusion of ntsecapi.h and subauth.h.
11930         * lib/secur32.def: New stub for secur32.dll.
11931
11932 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
11933
11934         * include/ras.h: New file.
11935         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
11936         RasEnumDevicesW.
11937
11938 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
11939
11940         * include/ntdef.h: Add define for NTAPI.
11941
11942 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11943
11944         * include/ipexport.h: Add missing `extern "C"' directives.
11945         * include/iphlpapi.h: Ditto.
11946         * include/iprtrmib.h: Ditto.
11947         * include/iptypes.h: Ditto.
11948
11949 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11950
11951         * include/ipifcons.h: New header file.
11952         * include/iprtrmib.h: Move operational states to ipifcons.h.
11953         * include/iphlpapi.h: Add missing parameters to GetIfTable()
11954         declaration.
11955
11956 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11957
11958         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
11959
11960 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11961
11962         * lib/iphlpapi.def: New stub for iphlpapi.dll.
11963         * include/iptypes.h: New header file.
11964         * include/ipexport.h: Ditto.
11965         * include/iphlpapi.h: Ditto.
11966         * include/iprtrmib.h: Ditto.
11967
11968 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11969
11970         * include/ntdef.h: New file.
11971
11972 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
11973
11974         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
11975         to TOKEN_INFORMATION_CLASS type.
11976         Add QUOTA_LIMITS type.
11977
11978 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
11979
11980         * include/userenv.h: New header file.
11981         * lib/userenv.def: New stub for userenv.dll.
11982
11983 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
11984
11985         * include/winuser.h: Correct PCWPSTRUCT typo.
11986         (discovered by Axel Riese)
11987
11988 2000-07-27  DJ Delorie  <dj@redhat.com>
11989
11990         * include/windows.h: optimize non-inclusion of repeat headers
11991
11992 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
11993
11994         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
11995         LPTOKEN_SOURCE.
11996
11997 2000-07-11  DJ Delorie  <dj@cygnus.com>
11998
11999         * include/shlobj.h: add CSIDL_COMMON_*
12000
12001 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
12002
12003         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
12004         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
12005         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
12006         FILE_FLAG_OPEN_NO_RECALL.
12007         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
12008         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
12009         * winnt.h: Add typedef for GUID.
12010         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
12011         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
12012         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
12013         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
12014         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
12015         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
12016         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
12017         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
12018         * lib/psapi.def: New file.
12019
12020 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
12021
12022         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
12023         previously defined.
12024         * windef.h : Ditto.
12025
12026 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
12027
12028         * include/winnt.h: Add some missing defines related to locale
12029         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
12030
12031 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
12032
12033         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
12034
12035 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
12036
12037         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
12038
12039 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
12040
12041         * include/wininet.h: Add another "INTERNET_OPTIONS".
12042
12043 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
12044
12045         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
12046
12047 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
12048
12049         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
12050         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
12051         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
12052         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
12053
12054 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
12055
12056         * include/winbase.h: Change first argument of ENUMRES* types to
12057         coincide with Microsoft usage.
12058
12059 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
12060
12061         * include/wininet.h: Add three more "INTERNET_OPTIONS".
12062
12063 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
12064
12065         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
12066         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
12067         * include/winnt.h (SEC_*): Add macros.
12068         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
12069         * include/ole.h: Workaround for C++ parser bug.
12070         * include/rpcdcep.h: Likewise.
12071         * include/winsock.h: Likewise.
12072
12073 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
12074
12075         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
12076
12077 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
12078
12079         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12080         * include/wtypes.h (PBLOB, LPBLOB): Define.
12081         * include/winsock2.h: Much more complete version.
12082         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
12083
12084         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
12085         * include/winsock.h (FD_CLR): Add missing ')'.
12086         (timercmp): Fix macro to handle all 6 comparison operators.
12087         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
12088         (AF_MAX): Update.
12089         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
12090
12091         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
12092         namespace pollution.
12093         * include/rpcndr.h: Likewise.
12094         * include/winnt.h: Likewise.
12095         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
12096         (SHGetSpecialFolderPath{A,W}): Add prototypes.
12097         * lib/ole32.def: Add missing exports.
12098         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
12099         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
12100         (NT_TIB): Define.
12101         * include/tlhelp32.h: New file.
12102
12103 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
12104
12105         * include/rapi.h: New file.
12106         * lib/rapi.def: New file.
12107
12108 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
12109
12110         * oaidl.h (LPTYPECOMP): Remove multiple definition.
12111
12112 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
12113
12114         * Snapshot 2000-02-03.
12115
12116 2000-01-21  Chris Faylor  <cgf@cygnus.com>
12117
12118         * include/winnt.h: Add ARM support.
12119
12120 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
12121
12122         From Greg Primes <gregory.l.priem@intel.com>:
12123         * include/oaidl.h (DESCKIND): Define macro.
12124         (ITypeComp): Define interface.
12125         (ITypeComp): Likewise.
12126         * rpcndr.h (DECLSPEC_UUID): Define macro.
12127         (MIDL_INTERFACE): Likewise.
12128
12129         * include/psapi.h: New file.
12130         * include/imagehlp.h: New file.
12131         * lib/imagehlp.def: New file.
12132
12133         * include/oaidl.h (tagVARIANT): Update fields.
12134
12135         From Craig Lanning <CraigL@DyCon.com>:
12136         * include/commctrl.h: Add some TCS_* macros.
12137         * include/winnls.h (IsValidLocale): Add prototype.
12138
12139 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
12140
12141         * include/oaidl.h: OLE Patches from "Fifer, Eric"
12142         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
12143         * include/objbase.h: Likewise.
12144         * include/objidl.h: Likewise.
12145         * include/ocidl.h: New file.
12146         * include/oleauto.h: Likewise.
12147         * include/wtypes.h: Likewise.
12148         * lib/oleaut32.def: Likewise.
12149
12150         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
12151         Thanks to "Jon Leichter" <jon@symas.com>.
12152         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
12153         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
12154         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
12155         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
12156         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
12157         Dorsselaer" <frans@bia-bv.demon.nl>.
12158         * include/httpext.h: New file. Thanks to Jan Nijtmans
12159         <j.nijtmans@chello.nl>.
12160         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
12161         redefinition of LPCWAVEFORMATEX in DirectX headers.
12162         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
12163         <krzych00@priv7.onet.pl>.
12164         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
12165         * include/windef.h (HRESULT): Guard definition to avoid
12166         redefinition in DirectX headers.
12167         * include/winnt.h: Add target macros from windows.h.
12168         * include/windows.h: Update synch comment for target macros.
12169         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
12170         (_ANONYMOUS_UNION): Likewise.
12171         * include/wingdi.h (AbortPrinter): Move from here ...
12172         * include/winspool.h (AbortPrinter): to here and fix linkage.
12173         (MONITOR_INFO_2{A,W}): Define.
12174         * include/winsock.h (htons): Fix argument.
12175         (htonl): Likewise.
12176         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
12177         (GROUP): Define.
12178         (GUID): Define conditionally.
12179         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
12180         (WSASocket*): Declare.
12181         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
12182
12183         * lib/dsetup.def: Remove leading underscore.
12184         * lib/dsound.def: Likewise.
12185         * lib/ws2_32.def: Likewise.
12186
12187 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
12188
12189         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
12190         handles.
12191
12192         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
12193         * lib/dinput.c: Include windows.h for GCC.
12194         * lib/dxguid.c: Likewise.
12195         (INITGUID): Define macro.
12196
12197         * include/objidl.h (ISequentialStream): Define interface.
12198         (IStream): Derive from ISequentialStream.
12199
12200         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
12201         Clone}): Mark as PURE.
12202         (IDataObject::EnumDAdvise): Likewise.
12203         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
12204         (IViewObject::Unfreeze): Likewise.
12205         (IViewObject2::Unfreeze): Likewise.
12206
12207         * include/objidl.h: Add various IID_ declarations.
12208         * include/olectl.h: Likewise.
12209         * include/oleidl.h: Likewise.
12210
12211 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
12212
12213         * Snapshot 1999-12-21.
12214
12215         * include/winbase.h (CancelIO): Rename to CancelIo.
12216         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
12217         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
12218
12219         * Merge with winsup-19991218.
12220         * include/winnt.h: Add defines for W2K ACL control flags.
12221
12222         * Merge with Anders Norlander's 19991130 snapshot.
12223
12224         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
12225         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
12226
12227         Patch from Harold Weissfield
12228         * include/shellapi.h: Added some ABN_* defines.
12229
12230         * include/commctrl.h (_TrackMouseEvent): Add prototype.
12231         * lib/comctl32.def (_TrackMouseEvent): Import.
12232         * include/winuser.h: Misc. fixes from Sang Cho
12233         <sangcho@alpha94.chongju.ac.kr>.
12234         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
12235         value of _WIN32_WINNT.
12236         * include/winuser.h: Reorganize SM_* defines in numerical order.
12237
12238 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
12239
12240         * include/windef.h: Make RECTL a distinct type from RECT.
12241         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
12242         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
12243         (COMPAREITEMSTRUCT): Fix fields.
12244         (SERIALKEYSA): Likewise.
12245         (SERIALKEYSW): Likewise..
12246         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
12247         (WIN32_FIND_DATAA): Likewise.
12248         (WIN32_FIND_DATAW): Likewise.
12249         * include/commdlg.h (SNDMSG): Define.
12250         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
12251         (SO_CONNECT_TIME): Likewise.
12252         (AcceptEx): Declare.
12253         (GetAcceptExSockaddrs): Likewise.
12254         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
12255         * include/winspool.h: Add RC_INVOKED guard.
12256         * lib/wsock32.def (AcceptEx@32): Export.
12257         (GetAcceptExSockaddrs@32): Likewise.
12258
12259 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12260
12261         * Snapshot 1999-11-18.
12262
12263         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12264         Octopod C++ IDE (and MSVC compatibility).
12265         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12266         * include/shellapi.h (ShellAbout*): Fix typo.
12267         * wingdi.h (FW_ULTRABOLD): Likewise.
12268         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12269         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12270         Add packing directives for various structures. All structure
12271         sizes now conform to MSVC.
12272
12273 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12274
12275         Released 1999-11-07.
12276
12277 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12278
12279         * include/winsock2.h: New file. Mostly a stub for now.
12280         * include/winbase.h (DllMain): Delete prototype.
12281         * include/commctrl.h (Header_SetItem): Fix macro.
12282         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12283         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12284         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12285
12286         Merge in changes from wxWindows.
12287         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12288         * include/oaidl.h (DISPID_*): Add macros.
12289         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12290         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12291         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12292         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12293
12294         Merge in changes from Octopod C++ IDE group.
12295         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12296         (Header_InsertItem): Fix macro.
12297         * include/oaidl.h (IID_IDispatch): Declare.
12298         (IID_ISupportErrorInfo): Likewise.
12299         (IDispatch): Rename Invoked to Invoke.
12300         * include/objidl.h (IPersist): Fix GetClassID.
12301         * include/oleauto.h (VectorFromBstr): Declare.
12302         (BstrFromVector): Likewise.
12303         * include/olectl.h (OLEMISC_*): Update.
12304         * include/olectlid.h (IID_IDispatch): Declare.
12305         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12306         (IOleInPlaceFrame): Fix.
12307         (ISupportErrorInfo): Define.
12308         (IErrorInfo): Define.
12309         * include/winuser.h (SIF_TRACKPOS): Define.
12310
12311 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12312
12313         Fix Merge errors:
12314         * include/winnt.h (PSID): Uncomment definition.
12315         (PISID): Rename from PSID.
12316         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12317         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12318
12319         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12320         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12321         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12322         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12323         include/shellapi.h, include/winbase.h, include/wingdi.h,
12324         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12325
12326 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12327
12328         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12329         Marius Kjeldahl <kjeldahl@hotmail.com>.
12330
12331 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12332
12333         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12334         (ERROR_SEVERITY_*): Likewise.
12335
12336 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12337
12338         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12339         (DllMain): Fix prototype.
12340
12341 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12342
12343         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12344         (cderr.h): Don't include.
12345         * include/winuser.h: Fix macro definitions.
12346
12347 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12348
12349         Merge with winsup 1999-07-29:
12350         * include/wincon.h (MOUSE_WHEELED): Define.
12351         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12352         (SECURITY_DESCRIPTOR): Add struct type.
12353         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12354         is equal to PVOID in the Platform SDK! So don't depend on accessing
12355         members through ->.
12356
12357 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12358
12359         * lib/Makefile.in (install-headers): Don't @ commands.
12360         (install-libraries): Ditto.
12361
12362 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12363
12364         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12365
12366 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12367
12368         Patch from Mumit Khan:
12369         * include/windows.h: Fix typo in winsock.h include guard and add
12370         _UWIN to the list.
12371         * include/winnt.h (__int64): Undefine first.
12372         (struct _SID): Declare.
12373
12374 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12375
12376         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12377
12378 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12379
12380         Patch from Mumit Khan:
12381         * Makefile.in: Do the right thing when cross-compiling.
12382         * include/windef.h: Don't define _export and __export if already
12383         defined.
12384
12385 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12386
12387         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12388         (DECLARE_INTERFACE_): Ditto.
12389
12390 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12391
12392         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12393
12394         Reported by Brad Porter
12395         * include/wingdi.h (FW_ULTRALIGHT): Add.
12396         (FW_DEMIBOLD): Add.
12397         (FW_ULTRABOLD): Add.
12398         (FW_BLACK): Add.
12399         (JOHAB_CHARSET): Add.
12400         (VIETNAMESE_CHARSET): Add.
12401
12402
12403 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12404
12405         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12406         * lib/Makefile.in (Makefile): Regenerate.
12407         * include/pshpack[1248].h: New files, if a program would use any of
12408         them.
12409         * include/poppack.h: Ditto.
12410         * include/windef.h (_WIN32_WINNT): Define
12411         * include/windows.h: Remove DUMMYUNIONNAME[45].
12412         * include/windows.h: Correctly define _M_IX86 to reflect the target
12413         processor.
12414         * include/windows.h: Add preliminary support for other architectures.
12415         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12416         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12417         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12418         issue with LARGE_INTEGER.
12419         (ANSI_NULL): Define.
12420         (PSZ): Define.
12421         (ACL_REVISION[1234]): Define.
12422         (MIN/MAX_ACL_REVISION): Define.
12423         (PTCHAR): Define.
12424         (LANG_USER_DEFAULT): Define.
12425         (LANG_SYSTEM_DEFAULT): Define.
12426         (LOCALE_NEUTRAL): Define.
12427         (SORTVERSIONFROMLCID): Define.
12428         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12429         (UNREFERENCED_LOCAL_VARIABLE): Define.
12430         (DBG_UNREFERENCED_PARAMETER): Define.
12431         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12432         * lib/mswsock.def: New file. Imports for mswsock.dll.
12433         * include/custcntl.h: New file. Necessary to compile some SDK
12434         samples.
12435         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12436         (WM_MOUSEWHEEL): Define.
12437         (WHEEL_DELTA): Define.
12438         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12439         (WM_NEXTMENU): Define.
12440         (CharNextA): Fix prototype.
12441         (CharNextW): Ditto.
12442
12443 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12444
12445         * include/winsock.h: Enclose in extern "C" if C++, huh?
12446         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12447
12448 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12449
12450         * include/windef.h (NULL): Define only ifndef
12451         (TRUE): Ditto, was previously only defined ifndef FALSE
12452         (PASCAL): Define as _pascal
12453         (__pascal): Define
12454         (WINAPIV): Define
12455         (min,max): Define only ifndef NOMINMAX
12456
12457 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12458
12459         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12460         You must define _WIN32_IE if you want support for it.
12461         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12462
12463 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12464
12465         * include/wincon.h: Add some ButtonState flags and EventFlags.
12466
12467 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12468
12469         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12470         interface define causes mayhem.
12471         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12472         defined.
12473         * include/windows.h: Undefine BOOL if __OBJC__ defined
12474
12475 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12476
12477         * include/winnls.h: Define additional code pages.
12478
12479 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12480
12481         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12482         order, corrected.
12483         (RtlZeroMemory): Use RtlFillMemory
12484
12485 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12486
12487         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12488         to get the correct size when used in some structs.
12489         (ULARGE_INTEGER): Ditto.
12490         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12491         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12492
12493 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12494
12495         * include/wininet.h: Enclose in extern "C" if c++
12496         (INTERNET_BUFFERSA/W): Define struct
12497         * include/wininet.h: Add some HSR_* defines
12498
12499 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12500
12501         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12502         * include/winnt.h (UNALIGNED): Define
12503         * include/windef.h (DECLSPEC_NORETURN): Define
12504
12505         * include/wininet.h (INTERNET_MAX_NAME): Remove
12506         (INTERNET_MAX_SCHEME_LENGTH): Define
12507         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12508         * include/wininet.def: Completely redone, it was losing badly.
12509
12510 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12511
12512         * lib/dplayx.def: Remove '_' prefixes
12513         * lib/shell32.def: Remove imports for IID_ContextMenu
12514
12515 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12516
12517         * Makefile.in (dist): Support dist target
12518         * lib/Makefile.in (dist): Likewise
12519         * lib/Makefile.in (uninstall-headers): Fix command
12520         * Makefile.in (bindist): Target to build a prebuilt dist
12521
12522         * lib/ws2_32.def: Winsock2 implib
12523
12524         * include/largeint.h: New header
12525         * include/largeint.c: Large integer support library
12526         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12527         (EXTRA_OBJS): Add largeint.o
12528
12529         * include/Makefile: Remove
12530         * lib/Makefile: Remove
12531         * Makefile: Remove
12532         * configure.in: New autoconf script
12533         * configure: generated configure script
12534         * Makefile.in: autoconf makefile template
12535         * lib/Makefile.in: Ditto
12536         * include/test.c: mv to lib/test.c
12537         * include/res.rc: mv to lib/res.rc
12538         * include/TODO: mv to .
12539         * include/Notes: mv to ./NOTES
12540
12541 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
12542
12543         * include/zmouse.h (WHEEL_DELTA): Define
12544
12545 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
12546
12547         * include/ddeml.h (HSZPAIR): Declare.
12548         * include/zmouse.h: New file.
12549
12550 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
12551
12552         * lib/d3dim.def: New implib
12553         * lib/d3drm.def: Ditto
12554         * lib/d3dxof.def: Ditto
12555         * lib/ddraw.def: Ditto
12556         * lib/dinput.def: Ditto
12557         * lib/dplayx.def: Ditto
12558         * lib/dsetup.def: Ditto
12559         * lib/dsound.def: Ditto
12560         * lib/dinput.c: Guid library for DirectInput
12561         * lib/dxguid.c: Guid library for DirectX
12562
12563 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
12564
12565         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
12566         by Ron Aaron).
12567         * include/windowsx.h (GET_Y_LPARAM): Also missing
12568         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
12569         by Mumit Khan).
12570
12571 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
12572
12573         * include/scrnsave.h: New header file for screen saver library
12574         * lib/scrnsave.c: New file: screen saver library
12575
12576 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12577
12578         * include/regstr.h: Enclosed all strings in TEXT() macros so it
12579         works well in when UNICODE is defined
12580
12581 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
12582
12583         * include/winuser.h(STYLESTRUCT): New struct
12584         * include/wingdi.h:(GOBJENUMPROC): This function type should
12585         return void.
12586
12587 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12588
12589         * include/basetyps.h (LPGUID): New typedef
12590         * lib/glut.def: Import library defintions for glut.dll
12591         * lib/glu32.def: Ditto for glut32.dll
12592         * include/winnt.h: Fixed handling of wchar_t typedef
12593         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
12594         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
12595
12596 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
12597
12598         * include/winbase.h(AbnormalTermination): Define as FALSE
12599         * include/commctrl.h: Support for new progress bar messages/styles
12600
12601 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
12602
12603         * include/commdlg.h(PageSetupDlg): New define
12604         * include/richedit.h: Missing SCF_* defines
12605         * include/winnt.h: Lots o' defines
12606         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
12607
12608 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
12609
12610         * include/commdlg.h: Removed pack pragma
12611         * lib/comctl32.def(InitCommonControlsEx@4): Added import
12612
12613 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
12614
12615         * Makefile: Set version to 0.1.5
12616         * lib/Makefile (clean): Fix typo
12617
12618         * include/commctrl.h: Removed pack pragma
12619         * include/cpl.h: Likewise
12620         * include/dbt.h: Likewise
12621         * include/dde.h: Likewise
12622         * include/nddeapi.h: Likewise
12623         * include/shellapi.h: Likewise
12624         * include/wincrypt.h: Likewise
12625         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
12626
12627         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
12628         (servent): Likewise
12629         (protoent): Likewise
12630
12631         * include/windows.h: Prevent inclusion of winsock.h if we are
12632         using or compiling cygwin. Define Win32_Winsock to force inclusion.
12633
12634 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
12635
12636         * include/winbase.h (CREATE_FORCEDOS): New define
12637
12638 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
12639
12640         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
12641         (COORD): Likewise
12642         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
12643         * include/windows.h: Added DUMMYUNIONNAME4 and 5
12644         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
12645         (PLUID_AND_ATTRIBUTES_ARRAY): New type
12646
12647         * include/ddeml.h: Removed unnecessary `#pragma pack'
12648         * include/imm.h: Likewise
12649         * include/nddeapi.h: Likewise
12650         * include/nspapi.h: Likewise
12651         * include/regstr.h: Likewise
12652         * include/wincon.h: Likewise
12653         * include/windef.h: Likewise
12654         * include/winioctl.h: Likewise
12655         * include/winnls.h: Likewise
12656         * include/winsvc.h: Likewise
12657         * include/winuser.h: Likewise
12658         * include/winver.h: Likewise
12659         * include/wtypes.h: Likewise
12660
12661 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
12662
12663         * Makefile (VERSION): Set to 0.1.4
12664         * include/basetyps.h: Check for NOCOMOBJECT
12665         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
12666         on comobject attribute.
12667         * lib/kernel32.def: Added a few functions
12668         * include/windef.h (DWORD): Changed back to unsigned long
12669
12670         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
12671         winresrc.h in turn includes the necessary headers. This makes things
12672         much simpler, no need to protect blocks of code in headers that
12673         should not be seen by the resource compiler.
12674
12675 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
12676
12677         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
12678         * include/wincon.h: Added console event type flags
12679         * include/winnt.h (FILE_SHARE_DELETE): Added
12680           (SECURITY_DESCRIPTOR): typedef as DWORD
12681
12682         * include/winuser.h (WM_PENWINFIRST): Fixed typo
12683         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
12684         define u_* types only if _SYS_TYPES_H is not defined.
12685
12686 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
12687
12688         * COPYING.LIB: Deleted
12689         * README: Updated to reflect license changes
12690         * include/shlobj.h: Remove extra comma on some enums
12691         * include/windef.h: Changed DWORD typedef from unsigned long to
12692         unsigned int in order to avoid warnings on bit fields that
12693         use DWORD.
12694         * include/Makefile (test): Compile with all warnings
12695         * include/unknwn.h: Include objfwd.h
12696         * include/winsock.h: Added missing copyright notices.
12697
12698 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
12699
12700         * lib/winmm.def: Corrected LIBRARY statement
12701         * include/mmsystem.h: Define mmioSeek codes if not already defined
12702         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
12703         (CreateStatusWindowW): Likewise
12704
12705         * include/winresrc.h: Include only files necessary instead of windows.h
12706         * include/dde.h: Allow inclusion in resource scripts.
12707         * include/winnt.h: Likewise
12708         * include/commctrl.h: Likewise
12709         * include/prsht.h: Likewise
12710         * README: Updated
12711
12712 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
12713
12714         * include/sqltypes.h (SQLHANDLE): Added this type
12715         (SQLHDESC): Likewise
12716         * include/sql.h (SQLFreeHandle): Added this prototype
12717         (SQLAllocHandle): Likewise
12718
12719 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
12720
12721         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
12722         conflicts with cygwin headers.
12723
12724 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
12725
12726         * Makefile: Changed VERSION to 0.1.3
12727         * Makefile (dist-lib): New target to make import library only
12728         distribution
12729         * Makefile (dist-hdr): New target to make headers only distribution
12730         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
12731         building one single distribution file.
12732         * dist.mak: Deleted
12733
12734         * include/lm.h: New file
12735         * include/lmcons.h: New file
12736         * include/lmalert.h: New file
12737         * include/lmaudit.h: New file
12738         * include/lmconfig.h: New file
12739         * include/lmapibuf.h: New file
12740         * include/lmaccess.h: New file
12741         * include/lmchdev.h: New file
12742         * include/lmremutl.h: New file
12743         * include/lmrepl.h: New file
12744         * include/lmerrlog.h: New file
12745         * include/lmat.h: New file
12746         * include/lmuse.h: New file
12747         * include/lmuseflg.h: New file
12748         * include/lmserver.h: New file
12749         * include/lmerr.h: New file
12750         * include/lmsname.h: New file
12751         * include/lmstats.h: New file
12752         * include/lmsvc.h: New file
12753         * include/lmwksta.h: New file
12754         * include/lmbrowsr.h: New file
12755
12756 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
12757
12758         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
12759         * include/unknwn.h: Added extern declaration for IID_IClassFactory
12760
12761         * include/initguid.h: New file
12762
12763         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
12764         int not supported
12765
12766         * include/winnt.h: Added USN
12767         * include/winnt.h: Changed handling of 64 bit int support
12768
12769         * include/windows.h: Added support for BC,LCC and MSVC
12770
12771         * include/windows.h: Changed handling machine architecture defines
12772
12773         * include/olectl.h: New file
12774
12775 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
12776
12777         * include/oleidl.h: Added IViewObject and IViewObject2
12778
12779         * include/objidl: Corrected prototype for IStorage::DestroyElement and
12780         IStorage::MoveElement
12781
12782         * include/oledlg.h: New file
12783
12784         * include/winresrc.h: New file
12785
12786         * include/wingdi.h: Added LPDOCINFO
12787
12788         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
12789         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
12790         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
12791         TabCtrl_SetImageList and TabCtrl_GetItemCount
12792         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
12793
12794         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
12795
12796         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
12797         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
12798
12799         * include/commdlg.h: Added LPDEVNAMES
12800
12801         * include/windows.h: Include excpt.h
12802
12803         * include/excpt.h: New file. This file just contains some
12804         stubs for SEH that do nothing.
12805
12806         * include/commctrl.h: Added general WM_NOTIFY codes
12807
12808         * include/winuser.h: Added ICON_SMALL and ICON_BIG
12809         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
12810         not be in the headers.
12811         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
12812         * include/winuser.h: Added old WM_SIZE parameter names so
12813         wxWindows compiles.
12814         * include/winuser.h: Added IDC_SIZE and IDC_ICON
12815         * include/winuser.h: Added LPDLGITEMTEMPLATE
12816         * include/winuser.h: HTCAPTION was missing value
12817         * include/winuser.h: Added WM_ACTIVE flags
12818
12819         * include/windowsx.h: Added _fmemcpy so V compiles; also added
12820         _fxx defines for memmove, memset and memcmp
12821
12822         * include/windef.h: Changed _export and __export to empty defines
12823
12824         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
12825         String parameters were not const and ExtractAssociatedIcon takes
12826         a WORD pointer not DWORD pointer as last parameter.
12827
12828         * Makefile: Changed VERSION to 0.1.2
12829
12830         * include/ole2ver.h: New file
12831
12832         * Makefile: Removed all dependencies on GLUT
12833
12834         * include/GL/glut.h: Removed file because of decision to remove
12835         files that are not part of the library.
12836         * lib/glut.def: Likewise
12837         * lib/glut32.def: Likewise
12838
12839         * include/windows.h: Include winperf.h
12840
12841         * include/winperf.h: New file
12842
12843         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
12844
12845         * include/winnls.h: Added calendar types
12846         * include/winnls.h: Added country codes
12847
12848 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
12849
12850         * include/windef.h: Added PROC and NEARPROC
12851
12852         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
12853         * include/wingdi.h: Added OpenGL types and prototypes
12854         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
12855         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
12856         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
12857         * include/wingdi.h: Added truetype character outline types
12858         * include/wingdi.h: Added DEVMODE initialization flags
12859         * include/wingdi.h: Added panose codes
12860         * include/wingdi.h: Added missing character sets
12861         * include/wingdi.h: Added ANTIALIASED_QUALITY and
12862         NONANTIALIASED_QUALITY
12863         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
12864         * include/wingdi.h: Added pointer types for EXTLOGPEN
12865         * include/wingdi.h: Added PATTERN type
12866         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
12867         * include/wingdi.h: Added new text metric flags
12868         * include/wingdi.h: Added pitch and family flags
12869         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
12870         * include/wingdi.h: Added METAHEADER
12871         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
12872         * include/wingdi.h: Added TA_MASK
12873         * include/wingdi.h: Added MAXSTRETCHBLTMODE
12874         * include/wingdi.h: Added error codes
12875
12876         * include/winuser.h: Added missing winhelp structures
12877         * include/winuser.h: Added dialog flags/styles/messages
12878         * include/winuser.h: Added EM_SETMARGIN codes
12879         * include/winuser.h: Made it possiblie to use IDI_XX values
12880         in resource files.
12881         * include/winuser.h: Added missing LoadImage load flags
12882         * include/winuser.h: Added missing message box flags
12883         * include/winuser.h: Added ScrollWindow codes
12884         * include/winuser.h: Added DT_WORD_ELLIPSIS
12885         * include/winuser.h: Added drag and drop support
12886         * include/winuser.h: Added WM_MENUCHAR return codes
12887         * include/winuser.h: Added DLGWINDOWEXTRA
12888         * include/winuser.h: Added missing SetWindowPos flags.
12889         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
12890         * include/winuser.h: Added IDHOT_xx defines
12891         * include/winuser.h: Added MOD_WIN
12892         * include/winuser.h: Added missing defines and structs for owner draw
12893         controls.
12894         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
12895         WPF_SETMINPOSITION
12896         * include/winuser.h: Added DrawAnimatedRects flags
12897         * include/winuser.h: Added WM_PRINT codes
12898         * include/winuser.h: Added CS_IME class style
12899         * include/winuser.h: Added WM_SIZE codes
12900         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
12901         * include/winuser.h: Added WM_NCHITTEST return codes
12902         * include/winuser.h: Added WM_SIZING parameters
12903         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
12904         * include/winuser.h: Added menu loop codes.
12905         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
12906         NF_REQUERY
12907         * include/winuser.h: Added WM_POWER flags
12908         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
12909         * include/winuser.h: Added missing message filter codes
12910         * include/winuser.h: Added WM_KEYXX message flags
12911         * include/winuser.h: Added WM_SHOWMESSAGE flags
12912         * include/winuser.h: Added old ShowWindow commands
12913         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
12914         structures.
12915
12916         * include/mciavi.h: New file for the MCI AVI driver that for some
12917         reason is not in mmsystem.h.
12918
12919         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
12920         * include/winbase.h: Added SECURITY_xx for CreateFile
12921         * include/winbase.h: Added RTS and DTS control values
12922         * include/winbase.h: Fixed SYSTEM_INFO structure
12923         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
12924         * include/winbase.h: Added FILE_TYPE_REMOTE
12925         * include/winbase.h: Added modem status flags
12926         * include/winbase.h: Added HINSTANCE_ERROR
12927         * include/winbase.h: Added DefineDosDevice defines
12928         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
12929         * include/winbase.h: Added STARTF_XX flags
12930         * include/winbase.h: Fixed typo on _lcreat prototype.
12931         * include/winbase.h: Moved DBG_XX to winnt.h
12932         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
12933         winnt.h
12934
12935         * include/unknwn.h: Added extern declaration of IID_IUnknown
12936
12937         * include/windowsx.h: Added hmemcpy.
12938
12939         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
12940         * include/winnt.h: Added PACCESS_TOKEN
12941         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
12942         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
12943         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
12944         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
12945         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
12946         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
12947
12948         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
12949         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
12950         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
12951
12952         * include/winsvc.h: Removed conflicting defines which were supposed
12953         to be in winnt.h
12954
12955         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
12956         and SERVICE_ERROR_TYPE.
12957
12958         * include/winnt.h: Added SERVICE_XX defines.
12959         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
12960         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
12961
12962         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
12963         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
12964         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
12965         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
12966
12967 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
12968
12969         * include/winbase.h: Corrected prototype for CreateProcessA
12970
12971         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
12972         driver extensions.
12973
12974         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
12975         be LPSHELLFOLDER* not LPSHELLFOLDER.
12976
12977         * include/windows.h: Include commdlg.h
12978
12979         * include/winuser.h: Added MDICREATESTRUCT
12980
12981         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
12982         CB_ERRSPACE, and CB_OKAY
12983
12984         * include/wingdi.h: Added LPBITMAPINFOHEADER
12985
12986         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
12987         are meaningless.
12988         * include/rpcdce2.h: Likewise.
12989
12990         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
12991
12992         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
12993         * include/olectlid.h: Likewise
12994         * include/shlguid.h: Likewise
12995
12996         * include/coguid.h: Delete file since it was for 16 bit windows only.
12997
12998         * lib/*.def: Appended .dll to library name where needed.
12999
13000         * include/windef.h: Define _stdcall and __stdcall only if not
13001         previously defined instead of undefining first.
13002
13003         * include/dlgs.h: Put RC_INVOKED around structure defs
13004
13005         * include/intshcut.h: New file
13006         * include/isguids.h: New file
13007
13008         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
13009
13010 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
13011
13012         * include/winnt.h: Added check if _T is defined before defining it
13013
13014         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
13015
13016         * include/dlgs.h: New file
13017
13018         * include/winbase.h: Removed DllEntryPoint define
13019
13020         * include/winbase.h: Added SetupComm prototype
13021
13022         * include/rpc.h: SEH RPC functions no longer defined since they weren't
13023         supported anyway.
13024
13025         * include/basetyps.h: Removed use of COMOBJECT define, instead
13026         DECLARE_INTERFACE directly uses comobject attribute when GCC
13027         is used.
13028
13029         * include/wtypes.h: STGC enum was missing typedef
13030
13031         * include/objidl.h: ADVC enum was missing typedef
13032
13033         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
13034         they are nested within the VOID definition.
13035
13036         * include/winbase.h: Added stream ids and attributes
13037
13038         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
13039         to an ANYSIZE_ARRAY array.
13040
13041 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
13042
13043         * include/windef.h: defined _declspec as __declspec since
13044         some programs (like VWCL) use _declspec instead of __declspec
13045
13046         * include/winnt.h: added COMPRESS_FORMAT defines
13047
13048         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
13049
13050         * include/winnt.h: added HEAP_XXXX defines
13051
13052         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
13053
13054         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
13055         specification.
13056
13057         * include/winnt.h: added NTAPI define
13058
13059 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
13060
13061         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
13062         instead of CHAR or WCHAR.
13063
13064         * include/winnt.h: added _T define
13065
13066         * include/winnt.h: added test for _TCHAR_DEFINED
13067
13068         * include/winnt.h: included string.h for memory macros
13069
13070         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
13071
13072         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
13073
13074         * include/prsht.h: added PropSheet_XXX macros
13075
13076
13077 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
13078
13079         * include/winspool.h: Changed DeletePrinterProcessor and
13080         DeletePrinterProvidor to DeletePrintXX.
13081
13082         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
13083         LOGCOLORSPACEW.
13084
13085         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
13086         variants
13087
13088         * include/wingdi.h: Likewise for GetLogColorSpace
13089
13090         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
13091
13092         * include/richedit.h: Added missing defines and structures
13093
13094         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
13095
13096         * include/winuser.h: Added HWND_DESKTOP
13097
13098 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
13099
13100         * Makefile: Include ChangeLog when building source
13101         distribution (srcdist)
13102
13103         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
13104         are always defined as STDAPI and STDAPI_
13105
13106         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
13107         are always defined as STDAPI and STDAPI_
13108
13109         * include/objidl.h: Removed extra ';' on IStorage SetClass method
13110
13111         * include/rpcndr.h: Removed all IN and OUT from function prototypes
13112
13113         * ChangeLog started