OSDN Git Service

Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
[mingw/mingw-org-wsl.git] / w32api / ChangeLog
1 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
2
3         Resolve potential <winbase.h> vs. <winerror.h> inconsistency.
4
5         * include/winerror.h: Tidy layout; assert copyright.
6
7         * include/winbase.h (WAIT_TIMEOUT): Redefine; make it identical to...
8         * include/winerror.h (WAIT_TIMEOUT): ...this equivalent; remove...
9         [!defined WAIT_TIMEOUT]: ...this conditional redefinition guard from
10         both locations; it permitted inconsistency between the two.
11
12 2017-03-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
13
14         Consolidate <winbase.h> version specific conditionals.
15
16         * include/winbase.h: Reorganize file content; group manifest constant
17         definitions into one nested collection of conditional blocks, with one
18         block per Windows version evolution, sorting alphabetically within each
19         block; do likewise for data type definitions and function prototypes.
20
21 2017-03-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
22
23         Tidy, and make <winbase.h> header effectively self-contained.
24
25         * include/w32api.h (__AW_ALIAS__): Rename original implementation...
26         (__AW_ALIAS_EX__): ...as this, retaining its encapsulation of...
27         (__AW_EXTENDED__): ...this; subsequently reimplement...
28         (__AW_ALIAS__): ...this, with original name, now encapsulating...
29         (__AW_SUFFIXED__): ...this.
30
31         * include/dbt.h (__AW_ALIAS__): Replace all references with...
32         (__AW_ALIAS_EX__): ...this renamed alternative, when defining...
33         (DEV_BROADCAST_DEVICEINTERFACE, PDEV_BROADCAST_DEVICEINTERFACE)
34         (DEV_BROADCAST_PORT, PDEV_BROADCAST_PORT): ...these.
35
36         * include/winbase.h: Tidy layout; assert copyright.
37         (stdarg.h, windef.h): Include them, to achieve self-containment.
38         [_BEGIN_C_DECLS, _END_C_DECLS]: Use them, as appropriate.
39         [UNICODE vs. ! UNICODE]: Replace separated declarations; use...
40         [__AW_ALIAS__]: ...this, to correctly specify each of...
41         (STARTUPINFO, LPSTARTUPINFO, WIN32_FIND_DATA, PWIN32_FIND_DATA)
42         (LPWIN32_FIND_DATA, HW_PROFILE_INFO, LPHW_PROFILE_INFO, ACTCTX)
43         (PACTCTX, PCACTCTX): ...these generic typedefs, and...
44         [__AW_SUFFIXED__]: ...this, to correctly map each of...
45         (ENUMRESLANGPROC, ENUMRESNAMEPROC, ENUMRESTYPEPROC, AddAtom)
46         (AccessCheckAndAuditAlarm, BackupEventLog, BeginUpdateResource)
47         (BuildCommDCB, BuildCommDCBAndTimeouts, CheckNameLegalDOS8Dot3)
48         (CallNamedPipe, ClearEventLog, CommConfigDialog, CopyFile, CopyFileEx)
49         (CreateActCtx, CreateDirectory, CreateDirectoryEx, CreateEvent)
50         (CreateFile, CreateFileMapping, CreateHardLink, CreateJobObject)
51         (CreateMailslot, CreateMutex, CreateNamedPipe, CreateProcess)
52         (CreateProcessAsUser, CreateSemaphore, CreateSymbolicLink)
53         (CreateWaitableTimer, DefineDosDevice, DeleteFile, EncryptFile)
54         (DeleteVolumeMountPoint, DnsHostnameToComputerName, EndUpdateResource)
55         (EnumResourceLanguages, EnumResourceNames, EnumResourceTypes)
56         (ExpandEnvironmentStrings, FatalAppExit, FileEncryptionStatus)
57         (FindActCtxSectionString, FindAtom, FindFirstChangeNotification)
58         (FindFirstFile, FindFirstFileEx, FindFirstVolume, FindNextFile)
59         (FindFirstVolumeMountPoint, FindNextVolume, FindNextVolumeMountPoint)
60         (FindResource, FindResourceEx, FormatMessage, FreeEnvironmentStrings)
61         (GetAtomName, GetBinaryType, GetCommandLine, GetCompressedFileSize)
62         (GetComputerName, GetComputerNameEx, GetCurrentDirectory)
63         (GetDefaultCommConfig, GetDiskFreeSpace, GetDiskFreeSpaceEx)
64         (GetDllDirectory, GetDriveType, GetEnvironmentStrings)
65         (GetEnvironmentVariable, GetFileAttributes, GetFileAttributesEx)
66         (GetFileSecurity, GetFinalPathNameByHandle, GetFullPathName)
67         (GetLogicalDriveStrings, GetLongPathName, GetModuleFileName)
68         (GetModuleHandle, GetModuleHandleEx, GetNamedPipeHandleState)
69         (GetPrivateProfileInt, GetPrivateProfileSection)
70         (GetPrivateProfileSectionNames, GetPrivateProfileString)
71         (GetPrivateProfileStruct, GetProfileInt, GetProfileSection)
72         (GetProfileString, GetShortPathName, GetStartupInfo)
73         (GetSystemDirectory, GetSystemWindowsDirectory, GetTempFileName)
74         (GetSystemWow64Directory, GetTempPath, GetUserName, GetVersionEx)
75         (GetVolumeInformation, GetVolumeNameForVolumeMountPoint)
76         (GetVolumePathName, GetVolumePathNamesForVolumeName, GlobalAddAtom)
77         (GetWindowsDirectory, GlobalFindAtom, GlobalGetAtomName)
78         (IsBadStringPtr, LoadLibrary, LoadLibraryEx, LogonUser)
79         (LookupAccountName, LookupAccountSid, LookupPrivilegeDisplayName)
80         (LookupPrivilegeName, LookupPrivilegeValue, lstrcat, lstrcmp)
81         (lstrcmpi, lstrcpy, lstrcpyn, lstrlen, MoveFile, MoveFileEx)
82         (MoveFileWithProgress, ObjectCloseAuditAlarm, ObjectDeleteAuditAlarm)
83         (ObjectOpenAuditAlarm, ObjectPrivilegeAuditAlarm, OpenBackupEventLog)
84         (OpenEvent, OpenEventLog, OpenFileMapping, OpenMutex, OpenSemaphore)
85         (OutputDebugString, PrivilegedServiceAuditAlarm, QueryDosDevice)
86         (ReadEventLog, RegisterEventSource, RemoveDirectory, ReplaceFile)
87         (ReportEvent, SearchPath, SetComputerName, SetCurrentDirectory)
88         (SetDefaultCommConfig, SetDllDirectory, SetEnvironmentVariable)
89         (SetFileAttributes, SetFileSecurity, SetFileShortName, SetVolumeLabel)
90         (SetFirmwareEnvironmentVariable, SetVolumeMountPoint, UpdateResource)
91         (VerifyVersionInfo, WaitNamedPipe, WritePrivateProfileSection)
92         (WritePrivateProfileString, WritePrivateProfileStruct)
93         (WriteProfileSection, WriteProfileString): ...these, and add...
94         (GetCurrentHwProfile, OpenWaitableTimer, SetComputerNameEx)
95         (GetFirmwareEnvironmentVariable): ...these previously missing generic
96         function name aliases.
97
98 2017-03-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
99
100         Refactor mingwrt and w32api common makefile content.
101
102         * Makefile.in (w32api-srcdist-config-files): Rename it...
103         (w32api-srcdist-common-files): ...as this phoney build rule.
104         (shared_include_file): New macro; define it, and include named file.
105         (configure, config.status, Makefile, config.status.missing, _mingw.h)
106         (w32api.h, PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): Factor
107         out; relocate them to new file in common parent directory...
108         * ../Makefile.comm: ...here.
109
110 2017-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
111
112         Correct a copyright notice update omission.
113
114         * configure.ac: Extend copyright date range to include 2017.  Also
115         clean up superfluous trailing whitespace.
116
117 2017-03-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
118
119         Fix generated header file dependencies.
120
121         * Makefile.in (_mingw.h, w32api): Make them depend on changes in...
122         [VERSION.m4]: ...this; package version changes are no longer made...
123         [configure.ac]: ...here; delete associated prerequisite reference.
124         (distclean-local): Delete them.
125
126 2017-03-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
127
128         Prepare and tag for release of w32api-5.0 package set.
129
130         * All files (wsl-5.0-release): Tag assigned.
131
132 2017-02-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
133
134         Implement basic test suite infrastructure.
135
136         * tests: New subdirectory; it hosts...
137         * tests/Makefile.in tests/testsuite.at.in tests/atlocal.in
138         * tests/headers.at: ...these new files; they implement the basic test
139         suite infrastructure, initially comprising header integrity checks.
140
141         * configure.ac (AC_PROG_CXX): Check it.
142         (AC_CONFIG_TESTDIR): Configure tests subdirectory.
143         (AC_CHECK_PROG): Check for autom4te; configure fall back if missing.
144         (AC_CONFIG_FILES): Generate tests/atlocal, tests/testsuite.at.tmp, and
145         tests/Makefile.
146
147         * Makefile.in (check test tests): New rules; all are synonymous.
148         (check-recursive): New rule; invoked by each of the preceding three.
149         (w32api-srcdist-testsuite-files): New rule; implement and use it...
150         (w32api-srcdist-files): ...here.
151
152 2017-02-14  Alexander Krisak  <akrisak@users.sourceforge.net>
153
154         Add missing constant definition, per issue [#2249].
155
156         * include/winnt.h (JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE): Define it.
157
158 2017-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
159
160         Avoid unnecessary duplication of configuration files.
161
162         * Makefile.in (vpath install-sh): Define it; it matches...
163         (vpath %.m4): ...this; add $top_srcdir/..; search it first; delete
164         rule for creating duplicate file reference links in $top_srcdir.
165         (configure): Add '-I ..' option, when running autoconf.
166         (w32api-srcdist-files): Rename it as...
167         (w32api-srcdist-package-files): ...this; remove dependencies on...
168         (aclocal.m4 VERSION.m4 install-sh): ...these; reinstate them in...
169         (w32api-srcdist-config-files): ...this new distributable files
170         enumeration goal; add it as one new prerequisite of...
171         (w32api-srcdist-files): ...this repurposed goal; also depends on...
172         (w32api-srcdist-package-files): ...this; populate it using...
173         (SRCDIST_ADD): ...this macro; redefine it accordingly.
174
175 2016-12-08  Jerzy Tarasiuk  <jz_fuw@users.sourceforge.net>
176
177         Correct typo in <ddk/ntdddisk.h>; fix bug [#2323]
178
179         * include/ddk/ntdddisk.h (IOCTL_DISK_BASE): Correct definition;
180         it was previously transcribed incorrectly, as being equivalent to...
181         (FILE_TYPE_DISK): ...this, but it should have been equivalent to...
182         (FILE_DEVICE_DISK): ...this.
183
184 2016-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
185
186         Rationalize <winuser.h> ANSI vs. UNICODE definition strategy.
187
188         * include/winuser.h [UNICODE, !UNICODE]: Replace individual pairs of
189         alternative generic symbol mapping definitions, and typedefs, with...
190         (__AW_SUFFIXED__): ...one such macro expansion per pair; collate with
191         their respective ANSI and UNICODE specific references.
192
193 2016-11-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
194
195         Deprecate obsolete <winable.h> and <pbt.h> headers.
196
197         * Makefile.in (%.h.in): Generalize vpath definition.
198         (obsolete_headers, obsolete_header_script, w32api_dist_headers)
199         (w32api_generated_headers, replace_headers, macro_name): New macros.
200         (install-w32api-headers): Add dependency on w32api_dist_headers.
201         (%.h): New static pattern rule; it generates generic dependants of...
202         * include/obsolete.h.in: ...this new template for obsolete headers.
203
204         * include/winable.h include/pbt.h: Delete them; they are obsolete;
205         replace them by install-time generated generic stubs.
206
207 2016-11-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
208
209         Update <winuser.h> and <dbt.h>; fix issue [#2317].
210
211         * include/winuser.h: Tidy layout; add copyright notice.
212         [WINVER, _WIN32_WINDOWS, _WIN32_WINNT]: Compare them symbolically.
213         (__WINUSER_H_SOURCED__): New internal macro; define it, to facilitate
214         selective inclusion of content from other headers; delete when done.
215         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
216         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
217         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
218         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
219         (BSF_SENDNOTIFYMESSAGE): Delete; do not define them locally; retrieve
220         them selectively from <dbt.h>, where they are properly defined.
221         [WINVER >= WIN2K/WIN98] (BlockInput): Add missing declaration.
222         (KillTimer, TIMERPROC): Declare timer event parameters as UINT_PTR;
223         formerly UINT, which doesn't match 64-bit size required for Win64.
224         (SetTimer): Likewise; also declare similar return type.
225         (WINEVENTPROC): Add missing CALLBACK attribute.
226         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
227
228         * include/w32api.h (__AW_ALIAS__): New macro; define it.
229         * include/sdkddkver.h (_WIN32_WINNT_NT4SP3): New macro; define it.
230
231         * include/dbt.h: Tidy layout; add copyright notice.
232         (_BEGIN_C_DECLS, _END_C_DECLS): Also prefer them here.
233         [__WINUSER_H_SOURCED__] (_DBT_H): Do not define; expose only...
234         (BSM_ALLCOMPONENTS, BSF_ALLOWSFW, BSM_APPLICATIONS, BSM_ALLDESKTOPS)
235         (BSM_INSTALLABLEDRIVERS, BSM_NETDRIVER, BSM_VXDS, BSF_FLUSHDISK)
236         (BSF_FORCEIFHUNG, BSF_IGNORECURRENTTASK, BSF_LUID, BSF_NOHANG)
237         (BSF_NOTIMEOUTIFNOTHUNG, BSF_POSTMESSAGE, BSF_QUERY, BSF_RETURNHDESK)
238         (BSF_SENDNOTIFYMESSAGE): ...these, to be duplicated in <winuser.h>
239         (__AW_ALIAS__): Use it to define ANSI/UNICODE specific aliases for...
240         (DEV_BROADCAST_PORT, DEV_BROADCAST_DEVICEINTERFACE): ...these generic
241         structure typedef names, and their respectively corresponding...
242         (PDEV_BROADCAST_PORT, PDEV_BROADCAST_DEVICEINTERFACE): ...pointer
243         type names.
244
245 2016-09-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
246
247         Fix a minor ISO-C++11 conformity issue.
248
249         * include/winnt.h (GetCurrentFiber): Insert spaces, as required
250         by ISO-C++11, between concatenated string literal elements.
251         (GetFiberData, NtCurrentTeb): Likewise.
252
253 2016-08-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
254
255         Merge w32api-3.18.1 legacy updates to 5.0-active branch.
256
257         * include/ddk/winddk.h: Update per issue [#2307] resolution.
258         * include/ddk/ntdddisk.h include/ddk/ntddstor.h: Likewise.
259
260 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
261
262         Prepare and tag all files for release of w32api-3.18.1
263
264         * configure.ac (AC_INIT): Increment patch level to 3.18.1
265
266 2016-07-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
267
268         Resolve improper macro expansion issue [#2307].
269
270         * include/ddk/winddk.h (__FILE_AM_BUFFERED, __FILE_RD_BUFFERED)
271         (__FILE_RW_BUFFERED): Redefine, encapsulating the expansion of each
272         dependent macro WITHIN the expansion of each of these; hence...
273
274         * include/ddk/ntdddisk.h (IOCTL_DISK_GET_DRIVE_GEOMETRY)
275         (IOCTL_DISK_FORMAT_TRACKS_EX, IOCTL_DISK_REASSIGN_BLOCKS)
276         (IOCTL_DISK_GET_MEDIA_TYPES, IOCTL_DISK_CONTROLLER_NUMBER)
277         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
278         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
279         (IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_UPDATE_DRIVE_SIZE)
280         (IOCTL_DISK_VERIFY, IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_PERFORMANCE)
281         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_RESERVE, IOCTL_DISK_IS_WRITABLE)
282         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
283         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
284         (IOCTL_DISK_INTERNAL_SET_VERIFY, IOCTL_DISK_INTERNAL_CLEAR_VERIFY)
285         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
286         (IOCTL_DISK_GROW_PARTITION, IOCTL_DISK_DELETE_DRIVE_LAYOUT)
287         (IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF)
288         (IOCTL_DISK_CHECK_VERIFY, IOCTL_DISK_FIND_NEW_DEVICES)
289         (SMART_GET_VERSION, SMART_RCV_DRIVE_DATA, SMART_SEND_DRIVE_COMMAND):
290         ...adjust these dependent macro definitions accordingly.
291
292         * include/ddk/ntddstor.h (IOCTL_STORAGE_CHECK_VERIFY)
293         (IOCTL_STORAGE_CHECK_VERIFY2, IOCTL_STORAGE_MEDIA_REMOVAL)
294         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_MCN_CONTROL)
295         (IOCTL_STORAGE_GET_DEVICE_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
296         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
297         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_QUERY_PROPERTY)
298         (IOCTL_STORAGE_RELEASE, IOCTL_STORAGE_FIND_NEW_DEVICES)
299         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
300         (IOCTL_STORAGE_EJECT_MEDIA, IOCTL_STORAGE_LOAD_MEDIA)
301         (IOCTL_STORAGE_LOAD_MEDIA2, IOCTL_STORAGE_RESERVE): Likewise.
302
303 2016-07-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
304
305         Update install-sh to match mingw.org/build-aux package.
306
307         * install-sh: Delete it; use version in parent directory instead,
308         recreating local copy, (as symlink, if supported), on demand.
309
310 2016-07-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
311
312         Eliminate redundant configuration files.
313
314         * aclocal.m4 VERSION.m4: Delete them; restore them on demand, via...
315         * Makefile.in ($top_srcdir/../%): ...this symlink dependency rule.
316
317         * configure.ac (AC_PROG_LN_S): Add configuration check.
318
319 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
320
321         Discard redundant config.guess and config.sub files.
322
323         * config.guess config.sub: Delete them; they are no longer required.
324         * Makefile.in (SRCDIST_ADD): Remove related references.
325
326 2016-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
327
328         Merge recent legacy branch updates to 5.0-active branch.
329
330         * Makefile.in include/ddk/ntifs.h include/ddk/winddk.h
331         * include/sdkddkver.h include/setupapi.h include/windows.h
332         * include/winnt.h include/winuser.h include/winver.h
333         * include/wtsapi32.h lib/wtsapi32.def: Updated.
334
335 2016-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
336
337         Prepare and tag all files for release of w32api-3.18.
338
339 2016-07-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
340
341         Do not pass MAKEFLAGS explicitly, when invoking recursive make.
342
343         * Makefile.in (install-strip, uninstall): Delete explicit $(MAKEFLAGS)
344         references from $(MAKE) command lines; make passes them implicitly.
345
346 2016-06-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
347
348         Backport MemoryBarrier() implementation from 4.0-dev branch.
349
350         * include/winnt.h (MemoryBarrier): Implement it; this is a rework of
351         Earnie's original inline implementation, but declared 'static' to fix
352         issue [#1661]; it is further modified, to avoid the broken pre-Vista
353         fallback identified by issue [#2131], and to remove references to...
354         (__faststorefence, __mf): ...these MSVC intrinsics, replaced by...
355         [defined __ATOMIC_SEQ_CST] (__atomic_thread_fence): ...this, or...
356         [GCC >= 4.4] (__sync_synchronize): ...this, as appropriate, falling
357         back to inline assembly code when necessary.
358
359         * include/ddk/winddk.h (KeMemoryBarrier): Delegate it to...
360         (MemoryBarrier): ...this, so avoiding the potential to emit invalid
361         code, for hosts which do not support the SSE2 'mfence' instruction.
362
363 2016-06-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
364
365         Merge further W32API updates from Cygwin CVS.
366         Incorporated selected changes from 2012-08-01 to 2012-08-04.
367
368         * include/setupapi.h include/winuser.h include/winver.h
369         * include/wtsapi32.h lib/wtsapi32.def: Merged and updated.
370
371 2016-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
372
373         Update mapping of GCC to MSVC host identification macros.
374
375         * include/windows.h: Assert copyright; tidy layout.
376         (_M_IX86, _ALPHA_, _PPC_, _MIPS_, _68K_): Delete duplicate defines.
377         [!_WINUSER_H, !_WINNLS_H, !_WINVER_H, !_WINNETWK_H, !_WINREG_H]
378         [!_WINSVC_H]: Do not explicitly test these here; they are properly
379         managed implicitly, by GCC, when including the associated headers.
380
381         * include/winnt.h: Assert copyright; tidy layout.
382         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
383         (__aligned__, __always_inline__, __selectany__): Prefer these...
384         (aligned, always_inline, selectany): ...to these attribute forms.
385         (CONTEXT) [_ALPHA_, _PPC_, MIPS, ARM]: Change selector macros to...
386         [_M_ALPHA, _M_PPC, _M_MRX000, _M_ARM]: ...these, respectively.
387         (GetCurrentFiber, GetFiberData, NtCurrentTeb): Redefine in terms of...
388         (__tib_fiber_data__, __tib_self_refptr__): ...these adaptive macros...
389         [!_WIN64]: ...to accommodate 32-bit, or otherwise 64-bit Windows.
390         (_ALPHA_, _PPC_, _MIPS_, _68K_): Delete these redundant macros...
391         (_M_IX86): ...also removing this, but relocate it to...
392         * include/sdkddkver.h (_M_IX86): ...here; augment it with...
393         (_M_IX86_FP, _M_X64, _M_AMD64, _M_IA64): ...these; define them as
394         appropriate.
395
396         * include/ddk/ntifs.h [!_ALPHA_]: Augment test; rather consider...
397         [!_ALPHA_ && !_M_ALPHA]: ...this, for structure alignment control.
398
399 2016-05-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
400
401         Merge W32API updates, from Cygwin CVS, into legacy branch.
402         Incorporate changes since release of w32api-3.17, until 2012-07-06.
403
404         * include/shobjidl.h lib/shobjidl-uuid.c: New files, added per LRN's
405         2012-04-28 commit to Cygwin CVS.
406
407         * include/gdiplus/gdiplustypes.h include/imagehlp.h
408         * include/routprot.h include/shlwapi.h include/userenv.h
409         * include/winbase.h include/wincon.h include/windef.h
410         * include/winerror.h include/wingdi.h include/winnt.h
411         * include/winsock.h include/winsock2.h include/winuser.h: Updated to
412         match Cygwin CVS state, as of 2012-07-06.
413
414         * include/wincrypt.h: Updated to remove duplicate manifest constant
415         definitions, as identified per Chris Sutcliffe's 2012-01-03 commit to
416         Cygwin CVS; merge with my 2015-09-29 commit; additionally, remove...
417         (szOID_RSA_emailAddr, szOID_RSA_unstructAddr, szOID_RSA_unstructName)
418         (CRYPT_ARCHIVABLE, CRYPT_NOHASHOID, CRYPT_VERIFYCONTEXT): ...extra
419         copies of these further duplicated definitions, identified during
420         the merging operation.
421
422 2016-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
423
424         Synchronize package version management with MinGW Runtime.
425
426         * VERSION.m4: New file; link it to keep in sync with identically named
427         file in top level composite package source directory; it defines...
428         (__VERSION__): ...this new composite package version macro.
429
430         * aclocal.m4: Link it, to keep in sync with identically named files in
431         top level composite source and sibling mingwrt sub-package directories.
432         (__VERSION__): New macro; include VERSION.m4 to define it.
433         (__BUG_REPORT_URL__): New macro; define it.
434
435         * configure.ac (AC_INIT): Assign package version and bug report URL...
436         (__VERSION__, __BUG_REPORT_URL__): ...from these, as defined through
437         automatic inclusion of aclocal.m4
438
439         * Makefile.in (configure): Add dependency on VERSION.m4
440
441 2016-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
442
443         Eliminate redundant <parts/winioctl.h> header.
444
445         * include/parts/winioctl.h: Delete it; distribute its content...
446         * include/ddk/winddk.h include/ddk/ntddstor.h include/ddk/ntdddisk.h:
447         ...among these, separating it into discrete sections based on...
448         [__need_ddk_winddk_includes, __need_ddk_ntddstor_includes]
449         [__need_ddk_ntdddisk_includes]: ...these selectors, respectively.
450         [__WINIOCTL_H_SOURCED__]: Expose only those sections; do not define...
451         (_DDK_WINDDK_H, _DDK_NTDDSTOR_H, _DDK_NTDDDISK_H): ...these.
452
453         * include/winioctl.h (__WINIOCTL_H_SOURCED__): Define it; include each
454         of <ddk/winddk.h>, <ddk/ntddstor.h>, and <ddk/ntdddisk.h>
455
456 2016-05-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
457
458         Enforce consistent specification of package version.
459
460         * include/w32api.h: Rename as...
461         * include/w32api.h.in: ...this build-time template file.
462         (__W32API_VERSION): Redefine it, in terms of...
463         (%PACKAGE_VERSION_LONG%): ...this substitution template.
464         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION)
465         (__W32API_PATCHLEVEL): Likewise, redefine them in terms of...
466         (%PACKAGE_VERSION_MAJOR%, %PACKAGE_VERSION_MINOR%)
467         (%PACKAGE_VERSION_PATCH%): ...these.
468
469         * configure.ac (AC_CONFIG_SRCDIR): Adjust for renamed file.
470         (MINGW_AC_CONFIG_EXTRA_SRCDIR): Likewise, for similarly renamed
471         mingwrt/include/_mingw.h.in file.
472
473         * Makefile.in (all-w32api-libs): Add dependency on...
474         (w32api.h, _mingw.h): ...these; add rule to generate them, using...
475         (PACKAGE_VERSION_SCRIPT, PACKAGE_VERSION_FORMAT): ...these new macros;
476         they apply appropriate substitutions to the renamed template files.
477         (install-w32api-headers): Explicitly add w32api.h
478
479 2015-11-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
480
481         Refactor for Windows DDK synchronization; fix MinGW-Bug [#1954].
482
483         * include/parts/winioctl.h: New file; it provides infrastructure for
484         sharing of common code between DDK headers and primary <winioctl.h>
485         (__IOCTL_STORAGE_, __IOCTL_DISK_, __FILE_RW_ACCESS, __FILE_AM_BUFFERED)
486         (__FILE_RD_BUFFERED, __FILE_RW_BUFFERED): New internal convenience
487         macros; they facilitate more consise expression of factored out IOCTL
488         and FSCTL macros; define them.
489
490         * include/ddk/ntddk.h: Assert copyright; tidy layout.
491         (__NTDDK_H): Multiple inclusion guard macro, renamed to...
492         (_DDK_NTDDK_H): ...this; it provides better indication of location.
493         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
494
495         * include/ddk/winddk.h: Assert copyright; tidy layout.
496         (__WINDDK_H): Multiple inclusion guard macro, renamed to...
497         (_DDK_WINDDK_H): ...this; it provides better indication of location.
498         [!defined _DDK_NTDDK_H]: Forbid direct inclusion; emit diagnostic.
499         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
500         (METHOD_BUFFERED, METHOD_IN_DIRECT, METHOD_OUT_DIRECT)
501         (METHOD_NEITHER): Redefine as enumeration; factor it out.
502         (FILE_ANY_ACCESS, FILE_SPECIAL_ACCESS, FILE_READ_ACCESS)
503         (FILE_WRITE_ACCESS): Likewise.
504         (CTL_CODE, DEVICE_TYPE_FROM_CTL_CODE): Factor out.
505         [defined _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED]: Delete guard.
506         (struct _DRIVE_LAYOUT_INFORMATION_MBR, DRIVE_LAYOUT_INFORMATION_MBR)
507         (PDRIVE_LAYOUT_INFORMATION_MBR): Factor out, without guard.
508         (struct _DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_GPT)
509         (PDRIVE_LAYOUT_INFORMATION_GPT): Factor out.
510         (struct _PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_MBR)
511         (PPARTITION_INFORMATION_MBR): Likewise.
512         (FILE_DEVICE_BEEP, FILE_DEVICE_CD_ROM, FILE_DEVICE_CD_ROM_FILE_SYSTEM)
513         (FILE_DEVICE_CONTROLLER, FILE_DEVICE_DATALINK, FILE_DEVICE_DFS)
514         (FILE_DEVICE_DISK, FILE_DEVICE_DISK_FILE_SYSTEM)
515         (FILE_DEVICE_FILE_SYSTEM, FILE_DEVICE_INPORT_PORT)
516         (FILE_DEVICE_KEYBOARD, FILE_DEVICE_MAILSLOT, FILE_DEVICE_MIDI_IN)
517         (FILE_DEVICE_MIDI_OUT, FILE_DEVICE_MOUSE)
518         (FILE_DEVICE_MULTI_UNC_PROVIDER, FILE_DEVICE_NAMED_PIPE)
519         (FILE_DEVICE_NETWORK, FILE_DEVICE_NETWORK_BROWSER)
520         (FILE_DEVICE_NETWORK_FILE_SYSTEM, FILE_DEVICE_NULL)
521         (FILE_DEVICE_PARALLEL_PORT, FILE_DEVICE_PHYSICAL_NETCARD)
522         (FILE_DEVICE_PRINTER, FILE_DEVICE_SCANNER)
523         (FILE_DEVICE_SERIAL_MOUSE_PORT, FILE_DEVICE_SERIAL_PORT)
524         (FILE_DEVICE_SCREEN, FILE_DEVICE_SOUND, FILE_DEVICE_STREAMS)
525         (FILE_DEVICE_TAPE, FILE_DEVICE_TAPE_FILE_SYSTEM, FILE_DEVICE_TRANSPORT)
526         (FILE_DEVICE_UNKNOWN, FILE_DEVICE_VIDEO, FILE_DEVICE_VIRTUAL_DISK)
527         (FILE_DEVICE_WAVE_IN, FILE_DEVICE_WAVE_OUT, FILE_DEVICE_8042_PORT)
528         (FILE_DEVICE_NETWORK_REDIRECTOR, FILE_DEVICE_BATTERY)
529         (FILE_DEVICE_BUS_EXTENDER, FILE_DEVICE_MODEM, FILE_DEVICE_VDM)
530         (FILE_DEVICE_MASS_STORAGE, FILE_DEVICE_SMB, FILE_DEVICE_KS)
531         (FILE_DEVICE_CHANGER, FILE_DEVICE_SMARTCARD, FILE_DEVICE_ACPI)
532         (FILE_DEVICE_DVD, FILE_DEVICE_FULLSCREEN_VIDEO)
533         (FILE_DEVICE_DFS_FILE_SYSTEM, FILE_DEVICE_DFS_VOLUME)
534         (FILE_DEVICE_SERENUM, FILE_DEVICE_TERMSRV, FILE_DEVICE_KSEC)
535         (FILE_DEVICE_FIPS): Redefine as enumeration; factor it out.
536         (enum _PARTITION_STYLE, PARTITION_STYLE): Factor out; add...
537         (PARTITION_STYLE_RAW): ...this new enumeration state; previously, it
538         was defined only when including this enumeration from winioctl.h
539         (struct _CREATE_DISK_MBR, CREATE_DISK_MBR, PCREATE_DISK_MBR)
540         (struct _CREATE_DISK_GPT, CREATE_DISK_GPT, PCREATE_DISK_GPT)
541         (struct _CREATE_DISK, CREATE_DISK, PCREATE_DISK): Factor out;
542         include parts/winioctl.h
543
544         * include/ddk/ntddstor.h: Assert copyright; tidy layout.
545         (__NTDDSTOR_H): Multiple inclusion guard macro, renamed to...
546         (_DDK_NTDDSTOR_H): ...this; to provide better indication of location.
547         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
548         (struct _STORAGE_BUS_TYPE, STORAGE_BUS_TYPE, PSTORAGE_BUS_TYPE)
549         (IOCTL_STORAGE_BASE, IOCTL_STORAGE_RESERVE, IOCTL_STORAGE_RELEASE)
550         (IOCTL_STORAGE_CHECK_VERIFY, IOCTL_STORAGE_CHECK_VERIFY2)
551         (IOCTL_STORAGE_MEDIA_REMOVAL, IOCTL_STORAGE_EJECT_MEDIA)
552         (IOCTL_STORAGE_LOAD_MEDIA, IOCTL_STORAGE_LOAD_MEDIA2)
553         (IOCTL_STORAGE_EJECTION_CONTROL, IOCTL_STORAGE_FIND_NEW_DEVICES)
554         (IOCTL_STORAGE_GET_MEDIA_TYPES, IOCTL_STORAGE_GET_MEDIA_TYPES_EX)
555         (IOCTL_STORAGE_GET_MEDIA_SERIAL_NUMBER, IOCTL_STORAGE_PREDICT_FAILURE)
556         (IOCTL_STORAGE_QUERY_PROPERTY, IOCTL_STORAGE_GET_DEVICE_NUMBER)
557         (IOCTL_STORAGE_RESET_BUS, IOCTL_STORAGE_RESET_DEVICE)
558         (IOCTL_STORAGE_MCN_CONTROL): Factor out; include parts/winioctl.h
559
560         * include/ddk/ntdddisk.h: Assert copyright; tidy layout.
561         (__NTDDDISK_H): Multiple inclusion guard macro, renamed to...
562         (_DDK_NTDDDISK_H): ...this; to provide better indication of location.
563         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
564         (IOCTL_DISK_BASE, IOCTL_DISK_GET_LENGTH_INFO)
565         (IOCTL_DISK_IS_WRITABLE, IOCTL_DISK_REASSIGN_BLOCKS)
566         (IOCTL_DISK_FIND_NEW_DEVICES, IOCTL_DISK_GET_MEDIA_TYPES)
567         (IOCTL_DISK_GET_DRIVE_LAYOUT, IOCTL_DISK_SET_DRIVE_LAYOUT)
568         (IOCTL_DISK_GET_PARTITION_INFO, IOCTL_DISK_SET_PARTITION_INFO)
569         (IOCTL_DISK_GET_DRIVE_LAYOUT_EX, IOCTL_DISK_SET_DRIVE_LAYOUT_EX)
570         (IOCTL_DISK_GET_DRIVE_GEOMETRY, IOCTL_DISK_GET_DRIVE_GEOMETRY_EX)
571         (IOCTL_DISK_CREATE_DISK, IOCTL_DISK_VERIFY, IOCTL_DISK_CHECK_VERIFY)
572         (IOCTL_DISK_GET_PARTITION_INFO_EX, IOCTL_DISK_SET_PARTITION_INFO_EX)
573         (IOCTL_DISK_GET_CACHE_INFORMATION, IOCTL_DISK_SET_CACHE_INFORMATION)
574         (IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_GROW_PARTITION)
575         (IOCTL_DISK_FORMAT_TRACKS, IOCTL_DISK_FORMAT_TRACKS_EX)
576         (IOCTL_DISK_PERFORMANCE, IOCTL_DISK_PERFORMANCE_OFF)
577         (IOCTL_DISK_UPDATE_DRIVE_SIZE, IOCTL_DISK_RESERVE): Factor out; all of
578         these macros are now defined in parts/winioctl.h; include it.
579         (PARTITION_ENTRY_UNUSED, PARTITION_FAT_12, PARTITION_XENIX_1)
580         (PARTITION_XENIX_2, PARTITION_FAT_16, PARTITION_EXTENDED)
581         (PARTITION_HUGE, PARTITION_IFS, PARTITION_OS2BOOTMGR, PARTITION_FAT32)
582         (PARTITION_FAT32_XINT13, PARTITION_XINT13, PARTITION_XINT13_EXTENDED)
583         (PARTITION_PREP, PARTITION_LDM, PARTITION_UNIX, PARTITION_NTFT)
584         (VALID_NTFT): Redefine as enumeration; factor it out.
585         (IsRecognizedPartition, IsContainerPartition): Factor out.
586         (enum _MEDIA_TYPE, MEDIA_TYPE, PMEDIA_TYPE): Factor out, adding...
587         (F3_200Mb_512, F3_240M_512, F3_32M_512): ...these new state values.
588         (enum _DETECTION_TYPE, DETECTION_TYPE): Factor out.
589         (struct _DISK_INT13_INFO, DISK_INT13_INFO, PDISK_INT13_INFO)
590         (struct _DISK_EX_INT13_INFO, DISK_EX_INT13_INFO, PDISK_EX_INT13_INFO)
591         (struct _DISK_DETECTION_INFO, DISK_DETECTION_INFO, PDISK_DETECTION_INFO)
592         (struct _DISK_GEOMETRY_EX, DISK_GEOMETRY_EX, PDISK_GEOMETRY_EX)
593         (struct _DISK_GEOMETRY, DISK_GEOMETRY, PDISK_GEOMETRY)
594         (DiskGeometryGetPartition, DiskGeometryGetDetect): Factor out.
595         (struct _PARTITION_INFORMATION): Change field data types for...
596         (HiddenSectors, PartitionNumber): ...these, from DWORD to ULONG...
597         (PartitionType): ...and this from BYTE to UCHAR, to keep consistent
598         with Windows DDK convention, then factor out struct, together with...
599         (PARTITION_INFORMATION, PPARTITION_INFORMATION): ...these.
600         (struct _PARTITION_INFORMATION_GPT, struct _DISK_PARTITION_INFO)
601         (PARTITION_INFORMATION_GPT, *PPARTITION_INFORMATION_GPT)
602         (DISK_PARTITION_INFO, *PDISK_PARTITION_INFO): Factor out.
603         (struct _GET_LENGTH_INFORMATION)
604         (GET_LENGTH_INFORMATION, PGET_LENGTH_INFORMATION)
605         (struct _DISK_PERFORMANCE, DISK_PERFORMANCE, PDISK_PERFORMANCE)
606         (struct _DISK_PERFORMANCE_EX, DISK_PERFORMANCE_EX, PDISK_PERFORMANCE_EX)
607         (struct _FORMAT_PARAMETERS, struct _FORMAT_EX_PARAMETERS)
608         (FORMAT_PARAMETERS, PFORMAT_PARAMETERS, FORMAT_EX_PARAMETERS)
609         (PFORMAT_EX_PARAMETERS): Factor out.
610         (struct _REASSIGN_BLOCKS): Change field data types for...
611         (Reserved, Count): ...these fields, from WORD to USHORT, and...
612         (BlockNumber): ...this from DWORD to ULONG, per Windows DDK
613         convention, then factor out the struct definition, together with...
614         (REASSIGN_BLOCKS, PREASSIGN_BLOCKS): ...these associated typedefs.
615         (struct _SET_PARTITION_INFORMATION, SET_PARTITION_INFORMATION)
616         (PSET_PARTITION_INFORMATION): Factor out.
617         (struct _VERIFY_INFORMATION): Change field data type for...
618         (Length): ...this field, from DWORD to ULONG, per DDK convention, then
619         factor out the entire struct definition, together with...
620         (VERIFY_INFORMATION, PVERIFY_INFORMATION): ...these associated typedefs.
621         (DISK_CACHE_RETENTION_PRIORITY): Factor out enumerated typedef.
622         (struct _DISK_CACHE_INFORMATION, struct _DISK_GROW_PARTITION)
623         (DISK_CACHE_INFORMATION, PDISK_CACHE_INFORMATION, DISK_GROW_PARTITION)
624         (PDISK_GROW_PARTITION): Factor out.
625
626         * include/winioctl.h: Assert copyright; tidy layout; incorporate
627         definitions from Windows DDK headers, by including parts/winioctl.h;
628         delete duplicate definitions already identified as having been factored
629         out from ddk/winddk.h, ddk/ntddstor.h, and ddk/ntdddisk.h; accept type
630         compatible changes from DWORD to ULONG, WORD to USHORT, and BYTE to
631         UCHAR, resulting in no significant changes, except that...
632         (struct _DISK_PERFORMANCE): ...this is extended, by addition of...
633         (IdleTime, SplitCount, QueryTime, StorageDeviceNumber)
634         (StorageManagerName): ...these previously missing fields, originally
635         appropriately defined in ddk/ntdddisk.h, thus fixing bug [#1954].
636         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
637
638 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
639
640         Windows application module version information API updates.
641
642         * include/winver.h: Assert copyright; tidy layout.
643         (_BEGIN_C_DECLS, _END_C_DECLS): Use these, as appropriate.
644         (__AW_SUFFIXED__): Use throughout, to identify generic functions
645         having both ANSI and UTF-16LE specific alternative implementations.
646         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoEx): New function.
647         [NTDDI_VERSION >= NTDDI_VISTA] (GetFileVersionInfoSizeEx): Likewise;
648         note that both are generic, with ANSI and UTF-16LE implementations,
649         but the ANSI implementations are missing from MSVCRT.DLL when...
650         [NTDDI_VERSION < NTDDI_WIN8]: ...this.
651
652         * lib/version.def (GetFileVersionInfoExA, GetFileVersionInfoExW)
653         (GetFileVersionInfoSizeExA, GetFileVersionInfoSizeExW): Add symbols.
654
655 2015-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
656
657         Revert a failed experimental macro construct.
658
659         * include/w32api.h (__W32API_DEPRECATED_ALIAS): Delete this; it bloats
660         code, and doesn't work in the C preprocessor conditional context where
661         its associated constant definitions are most likely to be required.
662         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
663         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
664         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): Redefine as macros,
665         now in terms of their preferred equivalents from <sdkddkver.h>
666
667 2015-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
668
669         Code clean-up; fix MinGW-Bug [#2263].
670
671         * include/w32api.h (__AW_SUFFIXED__): New macro; define it.
672         (__AW_EXTENDED__, __AW_STRING_A__, __AW_STRING_W__): Likewise.
673         (__AW__WCHAR_T__): Likewise; this is a helper for __AW_STRING_W__.
674
675         * include/wincrypt.h: Assert copyright; tidy layout; replace all C++
676         style comments, using ISO-C conforming style; remove all redundant
677         parameter names from function prototype declarations, throughout.
678         (pragma GCC system_header): Remove pointless conditional guard.
679         (_BEGIN_C_DECLS, _END_C_DECLS): Use to wrap extern "C" declarations.
680         [WINVER >= 0x500, WINVER >= 0x501]: Replace conditionals with...
681         [WINVER >= _WIN32_WINNT_WIN2K, WINVER >= _WIN32_WINNT_WINXP]: ...these
682         alternatives, respectively; they offer improved self-documentation.
683         (MS_DEF_PROV, MS_ENHANCED_PROV, MS_STRONG_PROV, MS_SCARD_PROV)
684         (MS_DEF_RSA_SIG_PROV, MS_DEF_RSA_SCHANNEL_PROV, MS_DEF_DSS_PROV)
685         (MS_DEF_DSS_DH_PROV, MS_ENH_DSS_DH_PROV, MS_DEF_DH_SCHANNEL_PROV)
686         (MS_ENH_RSA_AES_PROV): Redefine as __AW_EXTENDED__ derivatives.
687         (MS_DEF_PROV_W, MS_ENHANCED_PROV_W, MS_STRONG_PROV_W, MS_SCARD_PROV_W)
688         (MS_DEF_RSA_SIG_PROV_W, MS_DEF_RSA_SCHANNEL_PROV_W, MS_DEF_DSS_PROV_W)
689         (MS_DEF_DSS_DH_PROV_W, MS_ENH_DSS_DH_PROV_W, MS_DEF_DH_SCHANNEL_PROV_W)
690         (MS_ENH_RSA_AES_PROV_W): Redefine; use __AW_STRING_W__ to derive them
691         from their __AW_STRING_A__ equivalent string constant definitions.
692         (GET_ALG_CLASS): Redefine, expressing result in terms of...
693         (ALG_CLASS_ALL): ...this manifest bit mask; also redefined, preferring
694         a hexadecimal expression of the mask value over the former decimal.
695         (GET_ALG_TYPE, GET_ALG_SID): Similarly, use hexadecimal mask values.
696         (ALG_CLASS_SIGNATURE, ALG_CLASS_MSG_ENCRYPT, ALG_CLASS_DATA_ENCRYPT)
697         (ALG_CLASS_HASH, ALG_CLASS_KEY_EXCHANGE, ALG_TYPE_DSS, ALG_TYPE_RSA)
698         (ALG_TYPE_BLOCK, ALG_TYPE_STREAM, ALG_TYPE_DH, ALG_TYPE_SECURECHANNEL)
699         (CRYPT_UPDATE_KEY, CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, CRYPT_SILENT)
700         (CRYPT_MACHINE_KEYSET, CRYPT_USER_PROTECTED, CRYPT_CREATE_SALT)
701         (CRYPT_EXPORTABLE, CRYPT_ENCRYPT, CRYPT_DECRYPT, CRYPT_EXPORT)
702         (CRYPT_READ, CRYPT_WRITE, CRYPT_MAC, CERT_TRUST_IS_NOT_TIME_VALID)
703         (CERT_TRUST_IS_NOT_TIME_NESTED, CERT_TRUST_IS_REVOKED)
704         (CERT_TRUST_IS_NOT_SIGNATURE_VALID, CERT_TRUST_IS_NOT_VALID_FOR_USAGE)
705         (CERT_TRUST_IS_UNTRUSTED_ROOT, CERT_TRUST_REVOCATION_STATUS_UNKNOWN)
706         (CERT_TRUST_IS_CYCLIC, CERT_TRUST_CTL_IS_NOT_SIGNATURE_VALID)
707         (CERT_TRUST_IS_PARTIAL_CHAIN, CERT_TRUST_CTL_IS_NOT_TIME_VALID)
708         (CERT_TRUST_CTL_IS_NOT_VALID_FOR_USAGE, CERT_TRUST_IS_SELF_SIGNED)
709         (CERT_TRUST_HAS_EXACT_MATCH_ISSUER, CERT_TRUST_HAS_KEY_MATCH_ISSUER)
710         (CERT_TRUST_HAS_NAME_MATCH_ISSUER, CERT_TRUST_IS_COMPLEX_CHAIN)
711         (CERT_CHAIN_POLICY_BASE, CERT_CHAIN_POLICY_AUTHENTICODE)
712         (CERT_CHAIN_POLICY_AUTHENTICODE_TS, CERT_CHAIN_POLICY_SSL)
713         (CERT_CHAIN_POLICY_BASIC_CONSTRAINTS, CERT_CHAIN_POLICY_NT_AUTH)
714         (CERT_NAME_STR_REVERSE_FLAG, CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG)
715         (CERT_NAME_STR_CRLF_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG)
716         (CERT_NAME_STR_ENABLE_T61_UNICODE_FLAG, CERT_NAME_STR_NO_PLUS_FLAG)
717         (CERT_NAME_STR_NO_QUOTING_FLAG, CERT_NAME_STR_SEMICOLON_FLAG)
718         (CERT_FIND_CERT_ID, CERT_FIND_CTL_USAGE, CERT_FIND_ENHKEY_USAGE)
719         (CERT_FIND_EXISTING, CERT_FIND_HASH, CERT_FIND_ISSUER_ATTR)
720         (CERT_FIND_ISSUER_NAME, CERT_FIND_ISSUER_OF, CERT_FIND_KEY_IDENTIFIER)
721         (CERT_FIND_KEY_SPEC, CERT_FIND_MD5_HASH, CERT_FIND_PROPERTY)
722         (CERT_FIND_PUBLIC_KEY, CERT_FIND_SHA1_HASH, CERT_FIND_SIGNATURE_HASH)
723         (CERT_FIND_SUBJECT_ATTR, CERT_FIND_SUBJECT_CERT, CERT_FIND_SUBJECT_NAME)
724         (CERT_FIND_SUBJECT_STR_A, CERT_FIND_SUBJECT_STR_W)
725         (CERT_FIND_ISSUER_STR_A, CERT_FIND_ISSUER_STR_W)
726         (CERT_FIND_OR_ENHKEY_USAGE_FLAG, CERT_FIND_OPTIONAL_ENHKEY_USAGE_FLAG)
727         (CERT_FIND_NO_ENHKEY_USAGE_FLAG, CERT_FIND_VALID_ENHKEY_USAGE_FLAG)
728         (CERT_FIND_EXT_ONLY_ENHKEY_USAGE_FLAG, CERT_UNICODE_IS_RDN_ATTRS_FLAG)
729         (CERT_CASE_INSENSITIVE_IS_RDN_ATTRS_FLAG, CERT_CHAIN_FIND_BY_ISSUER)
730         (CERT_CHAIN_FIND_BY_ISSUER_COMPARE_KEY_FLAG)
731         (CERT_CHAIN_FIND_BY_ISSUER_COMPLEX_CHAIN_FLAG)
732         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_FLAG)
733         (CERT_CHAIN_FIND_BY_ISSUER_CACHE_ONLY_URL_FLAG)
734         (CERT_CHAIN_FIND_BY_ISSUER_LOCAL_MACHINE_FLAG)
735         (CERT_CHAIN_FIND_BY_ISSUER_NO_KEY_FLAG)
736         (CERT_SYSTEM_STORE_LOCAL_MACHINE): All represent bit-mapped values;
737         express them in hexadecimal, in preference to original decimal form.
738         (CERT_FIND_SUBJECT_STR, CERT_FIND_ISSUER_STR): Redefine them as
739         __AW_EXTENDED__ macros, for UNICODE/non-UNICODE cases respectively.
740         (szOID_CRL_DIST_POINTS): Correct defective definition; value should be
741         a string literal, but was missing delimiting quotes; insert them.
742         (CertNameToStr, CertOpenSystemStore, CertGetNameString, CryptSignHash)
743         (CryptAcquireContext, CryptVerifySignature, CryptGetDefaultProvider)
744         (CryptEnumProviders, CryptSetProvider): Define as __AW_SUFFIXED__
745         aliases for each of the UNICODE/non-UNICODE cases respectively.
746         (CryptEnumProvidersA): Correct prototype declaration; 5th parameter
747         was declared as type LPTSTR, but should be type LPSTR.
748         (CryptEnumProvidersW): Likewise; 5th parameter should be type LPWSTR.
749         (CryptGetDefaultProviderW): Likewise; 4th parameter was declared as
750         type LPSTR, but should be type LPWSTR.
751         [defined MINGW_TENTATIVE_ASSUMPTIONS] (X509_ANY_STRING)
752         (X509_CRL_REASON_CODE, X509_DSS_PUBLICKEY, X509_UNICODE_ANY_STRING)
753         (struct _CERT_ALT_NAME_ENTRY): Add tentative definitions.
754
755 2015-09-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
756
757         Correct defect in build system compilation rule.
758
759         * Makefile.in (scrnsavw.$OBJEXT): Do not use $^ to represent the
760         source file; it expands to also include prerequisite header files,
761         which should not appear on the compilation command line.  Rewrite
762         rule in static pattern format, and use $< instead.
763
764 2015-08-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
765
766         Build system corrections for GCC build time support.
767
768         * configure.ac (AC_PROG_CC): Don't use this; we need...
769         (MINGW_AC_PROG_CC_COMPILE_ONLY): ...this alternative, to support
770         building with only a stage 1 partially built GCC installation.
771
772         * Makefile.in (install-headers): New make objective; map it to...
773         (install-w32api-headers): ...this, for which it is a logical alias.
774
775 2015-07-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
776
777         Overhaul and streamline build system configuration.
778
779         * configure.in: Delete obsolete file; replace with...
780         * configure.ac: New file; rewritten per current autoconf conventions.
781
782         * Makefile.in: Rewritten; adapted from current mingwrt configuration,
783         it now processes the entire build without using separate sub-makes.
784
785         * lib/Makefile.in: Sub-make configuration not required now; delete it.
786         * lib/ddk/Makefile.in lib/directx/Makefile.in: Likewise; delete them.
787
788 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
789
790         Remove unused aclocal.m4 configuration file.
791
792         * aclocal.m4: Delete it; it provides no content used by this package.
793
794 2015-07-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
795
796         Adapt platform feature checks to NTDDI_VERSION conventions.
797
798         * include/sdkddkver.h: New file; merge from 4.0-dev branch.
799         (_WIN32_WINNT_WINBLUE): New manifest constant for Windows-8.1.
800         (WINNTVER): Prefer bitwise shift to division; adjust accordingly.
801         [_WIN32_WINNT != OSVER(NTDDI_VERSION)]: Bad comparison; correct to...
802         [_WIN32_WINNT != WINNTVER(NTDDI_VERSION)]: ...this.
803
804         * include/w32api.h: Assert copyright; include sdkddkver.h.
805         (__W32API_VERSION): Increment to 3.18; adopt new encoding format.
806         (__W32API_MAJOR_VERSION, __W32API_MINOR_VERSION): Adjust consistently.
807         (__W32API_PATCH_LEVEL): New macro; define with initial value of zero.
808         (__W32API_DEPRECATED_ALIAS): New macro; define it; use to redefine...
809         (Windows95, Windows98, WindowsME, WindowsNT4, Windows2000, WindowsXP)
810         (Windows2003, WindowsVista, IE3, IE301, IE302, IE4, IE401, IE5, IE5a)
811         (IE5b, IE501, IE55, IE56, IE6, IE601, IE602, IE7): ...these; replace
812         macro definitions by long integer constants, and mark as deprecated.
813         (UNICODE, _UNICODE): Keep these consistent; use logic factored out of
814         mingwrt/include/_mingw.h, whence we similarly relocate...
815         (_EXTERN_C, _BEGIN_C_DECLS, _END_C_DECLS): ...these.
816
817         * include/windef.h: Assert copyright; include w32api.h, whence we
818         infer default assignments, per included sdkddkver.h, for each of...
819         (WINVER, _WIN32_WINNT): ...these; delete local defines.
820         (_BEGIN_C_DECLS, _END_C_DECLS): Use them.
821
822 2015-06-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
823
824         Remove generated configure script from revision control.
825
826         * configure: Delete from SCM; maintainer must regenerate it, when
827         required, as SCM will now ignore it.
828
829 2012-08-04  Earnie Boyd  <earnie@users.sourceforge.net>
830
831         Cosmetic adjustment to match MSDN documentation.
832
833         * include/winver.h (VerQueryValueA, VerQueryValueW): Declare type
834         of parameter #1 to be LPCVOID, in preference to formerly specified,
835         and functionally equivalent, 'const LPVOID'.
836
837 2012-08-01  Stephan Jorek  <sjorek@users.sourceforge.net>
838
839         Correct typos, as identified by issue [#1534].
840
841         * include/setupapi.h (SetupCancelTemporary): Should be...
842         (SetupCancelTemporarySourceList): ...this; complete truncated name.
843         (SetupFreeA, SetupFreeW): Likewise, complete these respectively to...
844         (SetupFreeSourceListA, SetupFreeSourceListW): ...these, and...
845         (SetupQueryA, SetupQueryW): ...these respectively to...
846         (SetupQuerySourceListA, SetupQuerySourceListW): ...these.
847         (SetupDiGetWizardage): Misspelled; correct it to...
848         (SetupDiGetWizardPage): ...this.
849
850 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
851
852         Declare WTSVirtualChannel API functions per issue [#1342].
853
854         * include/wtsapi32.h [_WIN32_WINNT >= 0x500]
855         (WTSVirtualChannelOpen, WTSVirtualChannelQuery, WTSVirtualChannelRead)
856         (WTSVirtualChannelPurgeInput, WTSVirtualChannelPurgeOutput)
857         (WTSVirtualChannelWrite, WTSVirtualChannelClose): Declare them.
858         [_WIN32_WINNT >= 0x600] (WTSVirtualchannelOpenEx): Likewise.
859
860         * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add reference.
861
862 2012-08-01  Earnie Boyd  <earnie@users.sourceforge.net>
863
864         Correct MENUITEMINFO structure definition per issue [#1659].
865
866         * include/winuser.h (tagMENUITEMINFOA, tagMENUITEMINFOW): dwItemData
867         field was defined as type DWORD; correct it to type ULONG_PTR.
868
869 2012-07-06  Corinna Vinschen  <corinna@vinschen.de>
870
871         Extend visibility of winsock definitions when building Cygwin.
872
873         * include/winsock.h [__INSIDE_CYGWIN__]: Expose definitions of...
874         (IP_OPTIONS, SO_DEBUG, SO_ACCEPTCONN, SO_REUSEADDR, SO_KEEPALIVE)
875         (SO_DONTROUTE, SO_BROADCAST, SO_USELOOPBACK, SO_LINGER, SO_OOBINLINE)
876         (SO_DONTLINGER, SO_SNDBUF, SO_RCVBUF, SO_SNDLOWAT, SO_RCVLOWAT)
877         (SO_SNDTIMEO, SO_RCVTIMEO, SO_ERROR, SO_TYPE): ...these; however...
878         [__INSIDE_MSYS__]: ...keep them hidden.
879
880         * include/winsock2.h [__INSIDE_CYGWIN__]: Likewise, expose...
881         (AF_MAX, _SS_MAXSIZE, _SS_ALIGNSIZE, _SS_PAD1SIZE, _SS_PAD2SIZE)
882         (struct sockaddr, struct sockaddr_storage): ...these, whereas...
883         [__INSIDE_MSYS__]: ...also keep them hidden.
884
885 2012-04-29  Jan Ringos  <tringi@users.sf.net>
886
887         Correct version guard for WinXP minimum requirement.
888
889         * include/winbase.h (GetModuleHandleEx): Function unsupported for...
890         [_WIN32_WINNT >= 0x500]: ...this; it isn't in Win2K, so should be...
891         [_WIN32_WINNT >= 0x501]: ...this; correct it accordingly.
892         (GetModuleHandleExA, GetModuleHandleExW): Likewise.
893
894 2012-04-28  LRN  <l_r_nightmare@users.sf.net>
895
896         Add missing <shobjidl.h> and associated UUID implementation.
897
898         * include/shobjidl.h lib/shobjidl-uuid.c: New files.
899         * lib/Makefile.in (UUID_SOURCES, UUID_OBJS): Add references.
900
901 2012-03-19  Ben Greear  <greear@users.sf.net>
902
903         Adjust header file definition order, to fix issue [#1570].
904
905         * include/routprot.h (IP_LOCAL_BINDING): Must be defined before...
906         (IP_ADAPTER_BINDING_INFO): ...this; adjust order of definition.
907
908 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
909
910         Add missing return value, flagged by 'make test'.
911
912         * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort):
913         Return NO_ERROR in virtual definition.
914
915 2012-01-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
916
917         Remove duplicate definitions, identified by 'make test'.
918
919         * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET)
920         (CRYPT_MACHINE_KEYSET, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED)
921         (CRYPT_SILENT, CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT)
922         (CRYPT_PREGEN, CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE)
923         (CRYPT_SF, CRYPT_CREATE_IV, CRYPT_KEK, CRYPT_DATA_KEY)
924         (CRYPT_VOLATILE, CRYPT_SGCKEY): Delete second instance of each.
925
926         * include/winerror.h (CRYPT_E_REVOKED): Delete; it is already
927         correctly defined (per MSDN) in <wincrypt.h>
928
929 2012-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
930
931         Correct misuse of #ifdef, identified by 'make test'.
932
933         * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos;
934         /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/
935
936 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
937
938         Replace more incorrectly named manifest constants.
939
940         * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK)
941         (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define; make aliases for...
942         (JOB_OBJECT_BREAKAWAY_OK, JOB_OBJECT_SILENT_BREAKAWAY): ...these old
943         definitions respectively; retain for backward compatibility only.
944
945 2011-12-22  Corinna Vinschen  <corinna@vinschen.de>
946
947         Add missing PROCESS_QUERY_LIMITED_INFORMATION.
948
949         * include/winnt.h (PROCESS_QUERY_LIMITED_INFORMATION): Define it.
950
951 2011-08-19  Corinna Vinschen  <corinna@vinschen.de>
952
953         Add missing MAPVK manifest constant definitions.
954
955         * include/winuser.h (MAPVK_VK_TO_VSC, MAPVK_VSC_TO_VK): Define them.
956         (MAPVK_VK_TO_CHAR, MAPVK_VSC_TO_VK_EX, MAPVK_VK_TO_VSC_EX): Likewise.
957
958 2011-08-05  Corinna Vinschen  <corinna@vinschen.de>
959
960         Correct some misspelled manifest constant names.
961
962         * include/winnt.h (IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Should be...
963         (IMAGE_DLLCHARACTERISTICS_NX_COMPAT): ...this; define correctly; also
964         alias to original misspelling, to maintain backward compatibility.
965         (IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY): Likewise; should be...
966         (IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY): ...this; define and alias.
967         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE): Likewise; should be...
968         (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE): ...this; define and alias.
969
970 2011-07-29  Corinna Vinschen  <corinna@vinschen.de>
971
972         Add a missing Win2K sockets IOCTL feature.
973
974         * include/winsock2.h (SIO_UDP_CONNRESET): Define.
975
976 2011-05-22  Albrecht Schlosser  <vms-news@go4more.de>
977
978         Fix an incorrectly typed structure member.
979
980         * include/wingdi.h (GCP_RESULTSW): lpClass field defined as LPWSTR;
981         should be LPSTR; correct it.
982
983 2011-05-15  Corinna Vinschen  <corinna@vinschen.de>
984
985         Add another missing manifest constant definition.
986
987         * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define.
988
989 2011-04-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
990
991         Avoid pollution of user namespace; fix MinGW-Bug [#1531].
992
993         * include/windef.h (PACKED): Delete macro definition; its name is not
994         reserved, and may thus conflict with a user defined name; replace it...
995         * include/wincon.h (KEY_EVENT_RECORD): ...at this sole point of use;
996         use __attribute__((packed)) directly instead.
997
998 2011-04-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
999
1000         Fix bad typedef, per MinGW-Bug [#1529].
1001
1002         * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Corrected, to
1003         conform with MSDN reference, as identified by Safety0ff.
1004
1005 2011-04-04  Corinna Vinschen  <corinna@vinschen.de>
1006
1007         Add a missing manifest constant definition.
1008
1009         * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Define.
1010
1011 2011-03-29  Corinna Vinschen  <corinna@vinschen.de>
1012
1013         Win2K and Vista userenv updates.
1014
1015         * include/userenv.h [_WIN32_WINNT >= 0x0500] (DeleteProfile)
1016         (GetAllUsersProfileDirectory, GetDefaultUserProfileDirectory)
1017         (ExpandEnvironmentStringsForUser): Define function aliases.
1018         [_WIN32_WINNT >= 0x0500] (DeleteProfileA, DeleteProfileW)
1019         (GetAllUsersProfileDirectoryA, GetAllUsersProfileDirectoryW)
1020         (GetDefaultUserProfileDirectoryA, GetDefaultUserProfileDirectoryW
1021         (ExpandEnvironmentStringsForUserA, ExpandEnvironmentStringsForUserW)
1022         (GetProfileType): Declare function prototypes.
1023         [_WIN32_WINNT >= 0x0600] (CreateProfile): Declare function prototype.
1024         [_WIN32_WINNT >= 0x0500] (PT_TEMPORARY, PT_ROAMING, PT_MANDATORY):
1025         New manifest constants; define them.
1026
1027 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1028
1029         * Makefile.in: Increment CYGRELEASE to 2.
1030
1031 2011-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1032
1033         * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target.
1034
1035 2011-03-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1036
1037         * include/w32api.h: Increment version to 3.17.
1038         * Makefile.in: Ditto.
1039
1040 2011-03-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1041
1042         * include/winbase.h (PSAPI_WORKING_SET_BLOCK)
1043         (PSAPI_WORKING_SET_INFORMATION): Move from here...
1044         * include/psapi.h (PSAPI_WORKING_SET_BLOCK)
1045         (PSAPI_WORKING_SET_INFORMATION): ...to here.
1046
1047 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1048
1049         * include/w32api.h: Increment version to 3.16.
1050         * Makefile.in: Ditto.
1051
1052 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1053
1054         * include/commctrl.h (NMTCKEYDOWN): Define.
1055
1056 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1057
1058         * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage):
1059         Define.
1060
1061 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1062
1063         * include/winbase.h (PSAPI_WORKING_SET_BLOCK,
1064         PSAPI_WORKING_SET_INFORMATION): Define.
1065
1066 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1067
1068         * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION.
1069
1070 2011-03-05  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1071
1072         * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition.
1073
1074 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1075
1076         * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY,
1077         FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT,
1078         FILE_UNKNOWN, FILE_USER_DISALLOWED): Define.
1079
1080 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1081
1082         * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add
1083         _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard.
1084         * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto.
1085
1086 2011-03-04  Seth Jackson  <sethj@users.sourceforge.net>
1087
1088         * include/winnt.h (PAGE_WRITECOMBINE): Define.
1089         * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define.
1090
1091 2011-03-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1092
1093         * include/winbase.h (__MINGW_EXTENSION): Define.
1094         (OVERLAPPED): Add __MINGW_EXTENSION around nameless union /
1095         struct to correct issue with -std=c99.
1096
1097 2011-03-02  Corinna Vinschen  <corinna@vinschen.de>
1098
1099         * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define.
1100         (TIMER_BASIC_INFORMATION): Define.
1101         (NtQueryTimer): Define.
1102         (ZwQueryTimer): Define.
1103
1104 2010-12-27  David Byron  <dbyron0@users.sourceforge.net>
1105
1106         * include/winioctl.h (STORAGE_BUS_TYPE): Define.
1107
1108 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1109
1110         * include/winbase.h (GetComputerNameEx): Define.
1111
1112 2010-12-27  Ryan Lortie  <desrt@desrt.ca>
1113
1114         * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define.
1115
1116 2010-12-27  Markus Koenig  <basilo@users.sourceforge.net>
1117
1118         * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed,
1119         PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha,
1120         PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined,
1121         PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed,
1122         PixelFormat8bppIndexed, PixelFormat16bppGrayScale,
1123         PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555,
1124         PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB,
1125         PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB,
1126         PixelFormat64bppPARGB, PixelFormatMax): Fix definition.
1127
1128 2010-10-20  Seth Jackson  <sethj@users.sourceforge.net>
1129
1130         * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW].
1131         Add defines for backward compatibility.
1132
1133 2010-12-27  Johann Hanne  <jonnyh33@users.sourceforge.net>
1134
1135         * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion.
1136         * include/objidl.h (AddConnection, ReleaseConnection): Ditto.
1137         * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW,
1138         EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA,
1139         EnumResourceTypesW): Ditto.
1140         * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto.
1141
1142 2010-12-27  Seth Jackson  <sethj@users.sourceforge.net>
1143
1144         * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define.
1145
1146 2010-12-27  Paul Sokolovsky  <pfalcon@users.sf.net>
1147
1148         * include/bdatypes.h: Add missing semicolons.
1149
1150 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1151
1152         * include/w32api.h: Increment version to 3.15.
1153         * Makefile.in: Ditto.
1154
1155 2010-08-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1156
1157         * Makefile.in: Update naming convention and compression format (lzma),
1158         leaving existing naming convention and compression format as is for Cygwin.
1159
1160 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1161
1162         * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL,
1163         STATE_SYSTEM_PROTECTED): Define.
1164
1165         Thank you to Marcus von Appen for reporting the issue.
1166
1167 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1168
1169         * include/winuser.h (CF_DIBV5): Define.
1170         (CF_MAX): Adjust accordingly.
1171
1172         Thank you to Lenard Lindstrom for reporting the issue.
1173
1174 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1175
1176         * include/sspi.h (QuerySecurityContextToken): Define.
1177         * lib/secur32.def: Regenerate using gendef on a Win7 machine.
1178
1179         Thank you to Magnus Hagander for reporting the issue.
1180
1181 2010-08-25  Ali Sabil  <asabil@users.sourceforge.net>
1182
1183         * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2.
1184
1185 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1186
1187         * include/shlwapi (ASSOCDATA): Update definition.
1188
1189         Thank you to Frederic Deschamps for reporting the issue.
1190
1191 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1192
1193         * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE,
1194         COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK,
1195         COPY_FILE_NO_BUFFERING): Define.
1196
1197         Thank you to Roland Schwingel for reporting the issue.
1198
1199 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1200
1201         * include/winuser.h (HHOOK): Move definition from here...
1202         * include/windef.h: ...to here, as per MSDN.
1203
1204         Thank you to Samuel Thibault for reporting the issue.
1205
1206 2010-08-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1207
1208         * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
1209         MSDN, change return type to LPCH.
1210         (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
1211
1212         Thank you to Emmanuel Stapf for reporting the issue.
1213
1214 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1215
1216         * include/prsht.h (SNDMDG, POSTMSG): Fix typo.
1217         * include/windowsx.h (SNDMSG): Ditto.
1218
1219 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1220
1221         * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout.
1222
1223         Thank you to Ozkan Sezer for reporting the issue.
1224
1225 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1226
1227         * include/windowsx.h (SNDMSG): Define macro and use throughout.
1228
1229         Thank you to Chris Oldwood for reporting the issue.
1230
1231 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1232
1233         * include/oleacc.h (AccessibleObjectFromEvent): Correct definition.
1234
1235         Thank you to Rick Walsh for reporting the issue.
1236
1237 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1238
1239         * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define.
1240
1241 2010-08-24  Vinky  <rabbit_vinky@users.sourceforge.net>
1242
1243         * include/winbase.h (OVERLAPPED): Correct definition.
1244
1245 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1246
1247         * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct
1248         definition.
1249
1250         Thank you to Pasi Ruokola for reporting the issue.
1251
1252 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1253
1254         * include/exdisp.h (get_RegisterAsBrowser): Fix typo.
1255
1256         Thank you to cheznonnon for reporting the issue.
1257
1258 2010-08-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1259
1260         * lib/ws2_32.def: Regenerate using gendef on a Win7 machine.
1261
1262 2010-08-24  Ozkan Sezer  <sezero@users.sourceforge.net>
1263
1264         * winnt.h: Fix several SUBLANG ID errors (ref:
1265         http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx).
1266         (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03.
1267         (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ...
1268         (SUBLANG_HAUSA_NIGERIA_LATIN): ... this.
1269         (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01.
1270         (SUBLANG_IRISH_IRELAND): 0x02, not 0x01.
1271         (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ...
1272         (SUBLANG_LAO_LAO): ... this.
1273         (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01.
1274         (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03.
1275         (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03.
1276         (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions).
1277         (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01.
1278         (SUBLANG_BENGALI_INDIA): 0x01, not 0x00.
1279         (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01.
1280         (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00.
1281         (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN.
1282         (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00.
1283         (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN.
1284
1285 2010-08-24  LRN  <lrn1986@gmail.com>
1286
1287         * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN,
1288         WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT,
1289         WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW,
1290         WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM,
1291         WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM,
1292         WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM,
1293         WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC,
1294         WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC,
1295         WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1,
1296         WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10,
1297         WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2,
1298         WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME,
1299         WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM,
1300         WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM,
1301         WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM,
1302         WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM,
1303         WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG,
1304         WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3,
1305         WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM,
1306         WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM,
1307         WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY,
1308         WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8,
1309         WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16,
1310         WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24,
1311         WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW,
1312         WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18,
1313         WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60,
1314         WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12,
1315         WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO,
1316         WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF,
1317         WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED,
1318         WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723,
1319         WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723,
1320         WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8,
1321         WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK,
1322         WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM,
1323         WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP,
1324         WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC,
1325         WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO,
1326         WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1,
1327         WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM,
1328         WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF,
1329         WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3,
1330         WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3,
1331         WAVE_FORMAT_DTS2): Define.
1332         * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ,
1333         ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove,
1334         acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader,
1335         acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert):
1336         Define.
1337
1338 2010-08-23  LRN  <lrn1986@gmail.com>
1339
1340         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED,
1341         FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE,
1342         VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO,
1343         FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO,
1344         FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS,
1345         GetFileInformationByHandleEx, GetFinalPathNameByHandleA,
1346         GetFinalPathNameByHandleW): Define.
1347
1348 2010-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1349
1350         * lib/CheckConflicts.sh: New file.
1351
1352 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1353
1354         * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose,
1355         LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken,
1356         OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW,
1357         RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW,
1358         RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey,
1359         RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue,
1360         RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot,
1361         RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW,
1362         RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA,
1363         RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace,
1364         RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove
1365         conflicting definition.
1366         * lib/th32.def: Remove.
1367         * lib/ntdll.def (RtlUnwind): Remove conflicting definition.
1368         * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting
1369         definition.
1370
1371 2010-08-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1372
1373         * lib/kernel32.def (CreateProcessAsUserW): Remove definition.
1374
1375 2010-08-20  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1376
1377         * lib/kernel32.def: Regenerate using gendef on a Win7 machine.
1378
1379 2010-08-19  Corinna Vinschen  <corinna@vinschen.de>
1380
1381         * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL.  Change
1382         FILE_ATTRIBUTE_VALID_FLAGS accordingly.
1383         * include/ddk/winddk.h: Ditto.
1384
1385 2010-08-18  Ladislav Michl  <ladis@users.sourceforge.net>
1386
1387         * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW,
1388         CreateSymbolicLinkA, CreateSymbolicLink): Define
1389
1390 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1391
1392         * lib/kernel32.def(FatalExit): Correct definiton.
1393
1394 2010-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1395
1396         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change
1397         from 2010-07-17 since it breaks several applications.
1398
1399 2010-07-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1400
1401         * lib/kernel32.def: Regenerate using gendef.
1402
1403 2010-07-20  Ozkan Sezer  <sezero@users.sourceforge.net>
1404
1405         * include/commctrl.h (LVIF_GROUPID): Fix definition.
1406
1407 2010-07-20  Michael James  <james.me@gmail.com>
1408
1409         * include/commctrl.h (LVIF_COLUMNS): Fix definition.
1410
1411 2010-07-17  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1412
1413         * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct
1414         definition.
1415         * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl,
1416         NdrMarshSCtxtHdl): Ditto.
1417         * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro
1418         definition in favour of typedef definition.
1419
1420         Thank you to Yuta Tomino for reporting the issues.
1421
1422 2010-07-08  Markus Koenig  <basilo@users.sourceforge.net>
1423
1424         * include/gdiplus.h: New file.
1425         * include/gdiplus/gdiplus.h: New file.
1426         * include/gdiplus/gdiplusbase.h: New file.
1427         * include/gdiplus/gdiplusbrush.h: New file.
1428         * include/gdiplus/gdipluscolor.h: New file.
1429         * include/gdiplus/gdipluscolormatrix.h: New file.
1430         * include/gdiplus/gdipluseffects.h: New file.
1431         * include/gdiplus/gdiplusenums.h: New file.
1432         * include/gdiplus/gdiplusflat.h: New file.
1433         * include/gdiplus/gdiplusgpstubs.h: New file.
1434         * include/gdiplus/gdiplusgraphics.h: New file.
1435         * include/gdiplus/gdiplusheaders.h: New file.
1436         * include/gdiplus/gdiplusimageattributes.h: New file.
1437         * include/gdiplus/gdiplusimagecodec.h: New file.
1438         * include/gdiplus/gdiplusimaging.h: New file.
1439         * include/gdiplus/gdiplusimpl.h: New file.
1440         * include/gdiplus/gdiplusinit.h: New file.
1441         * include/gdiplus/gdipluslinecaps.h: New file.
1442         * include/gdiplus/gdiplusmatrix.h: New file.
1443         * include/gdiplus/gdiplusmem.h: New file.
1444         * include/gdiplus/gdiplusmetafile.h: New file.
1445         * include/gdiplus/gdiplusmetaheader.h: New file.
1446         * include/gdiplus/gdipluspath.h: New file.
1447         * include/gdiplus/gdipluspen.h: New file.
1448         * include/gdiplus/gdipluspixelformats.h: New file.
1449         * include/gdiplus/gdiplusstringformat.h: New file.
1450         * include/gdiplus/gdiplustypes.h: New file.
1451         * lib/gdiplus.c: New file containing GDI+ variable definitions
1452         and GUIDs.
1453         * lib/gdiplus.def: New file.
1454         * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS,
1455         add gdiplus.c to SOURCES.
1456         * lib/test.c: Include gdiplus.h.
1457
1458 2010-06-28  Rick Rankin  <rrankin1424-mingw@yahoo.com>
1459
1460         * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION,
1461         GetPerformanceInfo): Define.
1462         * lib/psapi.def (GetPerformanceInfo): Define.
1463         * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW,
1464         CryptEnumProviders): Define.
1465
1466 2010-02-17  LRN  <lrn1986@gmail.com>
1467
1468         * include/shlguid.h (IID_IFolderView): Define.
1469         * include/shlobj.h (IFolderView interface): Define.
1470         * lib/shell32.c (IID_IFolderView): Export.
1471
1472 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1473
1474         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around
1475         ACO_WORD_FILTER and ACO_NOPREFIXFILTERING.
1476
1477 2010-01-26  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1478
1479         * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum.
1480
1481 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1482
1483         * include/shlobj.h (SHParseDisplayName): Fix definition.
1484
1485 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1486
1487         * include/w32api.h: Increment version to 3.14.
1488         * Makefile.in: Ditto.
1489
1490 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1491
1492         * include/shlobj.h (SHParseDisplayName): Define.
1493
1494         Thanks to James Roberts-Thomson for the report.
1495
1496 2009-20-10  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
1497
1498         * include/wingdi.h (ENHMFENUMPROC): Correct definition.
1499
1500         Thanks to Alexander Vassilev for the report.
1501
1502 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1503
1504         * include/iprtrmib.h (MIB_IPADDRROW): Correct definition.
1505
1506         Thanks to Thomas Denk for the report.
1507
1508 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1509
1510         * include/winbase.h (UnmapViewOfFile): Correct definition.
1511
1512         Thanks to Dimitry Sibiryakov for the report.
1513
1514 2009-20-10  Aleksey Chernov  <virxkane@users.sourceforge.net>
1515
1516         * include/sspi.h: Include ntsecapi.h to correct postgresql build error.
1517
1518 2009-20-10  Heiko Hund  <heiko@ist.eigentlich.net>
1519
1520         * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes.
1521         * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define.
1522
1523 2009-20-10  Michael James  <james.me@gmail.com>
1524
1525         * include/wingdi.h (CLEARTYPE_QUALITY): Define.
1526         * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT
1527         >= 0x0501.
1528         (WM_UNICHAR,UNICODE_NOCHAR): Define.
1529         * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16,
1530         RemoveWindowSubclass@12): Add exports.
1531         * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports.
1532
1533 2009-20-10  Jarkko Sakkinen  <jarkko.sakkinen@iki.fi>
1534
1535         * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP,
1536         TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE,
1537         TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN,
1538         TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA,
1539         TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT,
1540         CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
1541         RegisterTouchWindow, UnregisterTouchWindow): Define.
1542         * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow,
1543         RegisterTouchWindow, UnregisterTouchWindow): Define.
1544
1545 2009-20-10  Dmitry Potapov  <dpotapov@users.sourceforge.net>
1546
1547         * include/winver.h (VerQueryValue[AW]): Correct definition.
1548
1549 2009-20-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1550
1551         * include/shlobj.h (SHARD): Add enum.
1552         (SHARD_PATH): Define based on UNICODE.
1553
1554         Thanks to Jacek Caban for the report.
1555
1556 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1557
1558         * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition.
1559
1560         Thanks to Bruno Martinez for the report.
1561
1562 2009-14-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1563
1564         * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE,
1565         IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA,
1566         SHGetIconOverlayIndex): Define.
1567
1568         Thanks to Tim Kosse for the report.
1569
1570 2009-13-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1571
1572         * include/wincon.h (AttachConsole): Correct guard.
1573
1574         Thanks to Alexander Shaduri for the report.
1575
1576 2009-13-09  Robert Moerland  <rjmoerland@users.sourceforge.net>
1577
1578         * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition.
1579         (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define.
1580
1581 2009-13-09  Jacky Lai  <crazyjacky@users.sourceforge.net>
1582
1583         * include/winerror.h: Fix typos in macro names.
1584
1585 2009-13-09  Jan Nijtmans  <nijtmans@users.sourceforge.net>
1586
1587         * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct
1588         definition.
1589
1590 2009-11-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1591
1592         * include/winnt.h (PROCESS_SUSPEND_RESUME): Define.
1593
1594 2009-10-29  Charles Wilson  <mingw@cwilson.fastmail.fm>
1595
1596         Honor DESTDIR for winsup/mingw and winsup/w32api.
1597         Detect and report error if installation paths are win32
1598         format, but DESTDIR is non-empty.
1599
1600         * Makefile.in (install, uninstall): Use FLAGS_TO_PASS
1601         when invoking make in subdirs.
1602         * lib/Makefile.in (DESTDIR): Honor per convention.
1603         (need-DESTDIR-compatibility): New macro; define it and a
1604         corresponding rule.
1605         (fail-DESTDIR-compatibility): New dependency goal.
1606         (install-libraries, install-headers, uninstall-libraries,
1607         uninstall-headers): Require need-DESTDIR-compatibility.
1608         * lib/ddk/Makefile.in: Ditto.
1609         * lib/directx/Makefile.in: Ditto.
1610
1611 2009-10-04  Corinna Vinschen  <corinna@vinschen.de>
1612
1613         * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000.
1614         _WIN32_WINNT >= 0x0500.
1615         (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN,
1616         WRITE_RESTRICTED): Define.
1617         (IsTokenRestricted): Declare for >= Win 2000.
1618
1619 2009-08-30  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1620
1621         * include/wtsapi32.h (WTSQuerySessionInformationA,
1622         WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory):
1623         Moved to (_WIN32_WINNT >= 0x0500) guard.
1624         (thanks to Pierre Ossman)
1625
1626 2009-08-09  Andy Koppe  <andy.koppe@gmail.com>
1627
1628         * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE,
1629         IS_SURROGATE_PAIR): Define.
1630
1631 2009-07-27  Corinna Vinschen  <corinna@vinschen.de>
1632
1633         * include/winnt.h (FILE_SUPPORTS_HARD_LINKS,
1634         FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID,
1635         FILE_SUPPORTS_USN_JOURNALS): Define.  Add comment.
1636         * include/ddk/ntifs.h: Ditto.
1637         (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define.
1638
1639 2009-07-21  Corinna Vinschen  <corinna@vinschen.de>
1640
1641         * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points
1642         from here...
1643         * lib/gdo32.dll: ...to here.
1644
1645 2009-07-01  Corinna Vinschen  <corinna@vinschen.de>
1646
1647         * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8,
1648         StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12,
1649         StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12,
1650         StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8,
1651         StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined
1652         entry points.
1653
1654 2009-06-24  Corinna Vinschen  <corinna@vinschen.de>
1655
1656         * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW,
1657         WTSEnumerateSessionsA): Add function prototypes.
1658         (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs.
1659         (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add
1660         defines dependent on UNICODE setting.
1661
1662 2009-06-07  Corinna Vinschen  <corinna@vinschen.de>
1663
1664         * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing
1665         and vice versa.
1666         * include/ddk/ntifs.h: Ditto.
1667         * include/ddk/winddk.h: Ditto.
1668         * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage,
1669         ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined
1670         in header, but missing in lib.  Omit NT4-only entry points.
1671
1672 2009-05-01  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1673
1674         * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE,
1675         SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define.
1676         * lib/shell32.def (SHGetImageList): Define.
1677
1678 2009-02-18  Corinna Vinschen  <corinna@vinschen.de>
1679
1680         * winnt.h: Add Vista token security extensions.
1681         (SID_HASH_SIZE): Define.
1682         (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP,
1683         TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN,
1684         TOKEN_MANDATORY_POLICY_VALID_MASK): Define.
1685         (SID_HASH_ENTRY): Define.
1686         (struct _SID_AND_ATTRIBUTES_HASH): Define.
1687         (struct _TOKEN_LINKED_TOKEN): Define.
1688         (struct _TOKEN_MANDATORY_LABEL): Define.
1689         (struct _TOKEN_MANDATORY_POLICY): Define.
1690         (struct _TOKEN_ELEVATION): Define.
1691         (struct _TOKEN_ACCESS_INFORMATION): Define.
1692         (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token
1693         information enumeration values.
1694
1695 2009-02-09  Corinna Vinschen  <corinna@vinschen.de>
1696
1697         * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition
1698         from ddk/ntifs.h.
1699
1700 2009-02-06  Linton Miller  <Linton.Miller@trivininc.com>
1701
1702         * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition.
1703
1704 2009-01-19  Corinna Vinschen  <corinna@vinschen.de>
1705
1706         * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard.
1707
1708 2009-01-11  Henry Nestler  <henry@bigfoot.de>
1709
1710         * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile,
1711         NtSetEaFile.
1712
1713 2009-01-07  Corinna Vinschen  <corinna@vinschen.de>
1714
1715         * include/winbase.h (SCS_64BIT_BINARY): Define.
1716
1717 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1718
1719         * include/w32api.h: Increment version to 3.13.
1720         * Makefile.in: Ditto.
1721
1722 2008-12-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1723
1724         * lib/glut.def: remove.
1725         * lib/glut32.def: ditto.
1726
1727 2008-11-11  Corinna Vinschen  <corinna@vinschen.de>
1728
1729         * include/winbase.h (PROCESS_DEP_ENABLE,
1730         PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1.
1731         (enum _DEP_SYSTEM_POLICY_TYPE): Ditto.
1732         (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto.
1733
1734 2008-10-09  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1735
1736         * include/mmsystem.h (sndAlias): Correct GCC4 warning.
1737
1738 2008-10-04  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1739
1740         * include/shellapi.h (NOTIFYICON_VERSION_4): Define.
1741
1742 2008-09-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1743
1744         * include/vfw.h (capSendMessage): Rename to __capSendMessage.
1745
1746 2008-09-24  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1747
1748         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
1749         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
1750         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
1751         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
1752         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
1753         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
1754         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
1755         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
1756         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
1757         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
1758         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
1759         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
1760         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
1761         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
1762         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
1763         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
1764         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
1765         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
1766         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
1767         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
1768         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
1769         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
1770         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
1771         WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER.
1772         (capSendMessage): Don't undef.
1773
1774 2008-09-21  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1775
1776         * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being
1777         undefined.
1778
1779 2008-09-13  mega-squall  <mega-squall@users.sf.net>
1780
1781         * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA,
1782         SUBLANG_ROMANIAN_ROMANIA): Correct definition.
1783         (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN,
1784         SUBLANG_ROMANIAN_MOLDOVA): Define.
1785
1786 2008-09-11  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1787
1788         * include/shlwapi.h (ASSOCSTR): Update enum.
1789
1790 2008-09-07  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1791
1792         * include/w32api.h: Increment version to 3.12.
1793         * Makefile.in: Ditto.
1794
1795 2008-09-07  Michael Hentschel  <mikeh42@users.sourceforge.net>
1796
1797         * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define.
1798
1799 2008-09-07  alsemm  <alsemm@users.sourceforge.net>
1800
1801         * include/mlang.h (IMLangFontLink2::MapFont): Fix definition.
1802
1803 2008-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
1804
1805         * include/ws2tcpip.h (IPV6_MREQ): Fix typo.
1806         Thanks to Richard Hughes for report.
1807
1808 2008-09-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1809
1810         * Makefile.in: Adjust to new naming standard for MinGW while maintaining old
1811         naming standard for Cygwin.
1812
1813 2008-08-30  Bo Yang  <techrazy@users.sourceforge.net>
1814
1815         * include/sspi.h: Fix PSecurityFunctionTableW structure.
1816
1817 2008-08-29  Andy Grover  <andy.grover@oracle.com>
1818
1819         * include/ddk/scsi.h: Define READ_TOC formats.
1820         * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export.
1821
1822 2008-08-29  Andy Grover  <andy.grover@oracle.com>
1823
1824         * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION,
1825         struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET,
1826         NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket,
1827         NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer,
1828         NdisMCancelTimer): Define.
1829         (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file.
1830         (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to
1831         eliminate warnings.
1832         (NdisReinitializePacket): Rename from NdisReinitializePacketCounts.
1833         * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer,
1834         NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId):
1835         Export.
1836
1837 2008-08-29  Andy Grover  <andy.grover@oracle.com>
1838
1839         * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA,
1840         RtlStringCbVPrintfA): define in terms of POSIX string functions.
1841
1842 2008-08-29  Andy Grover  <andy.grover@oracle.com>
1843
1844         * include/ddk/winddk.h (KeRaiseIrql): Define.
1845         (KfRaiseIrql, KfLowerIrql): remove incorrect definitions.
1846
1847 2008-08-29  Andy Grover  <andy.grover@oracle.com>
1848
1849         * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define.
1850         (KeGetCurrentProcessorNumber): Fix incorrect member reference.
1851         (InterlockedIncrement, InterlockedDecrement): fix warning.
1852         * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export.
1853         (KeNumberProcessors): Export.
1854
1855 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1856
1857         * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME,
1858         ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR,
1859         ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE,
1860         ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS,
1861         ASSOCF_INIT_IGNOREUNKNOWN): Define.
1862
1863 2008-08-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1864
1865         * include/commctrl.h (LVN_MARQUEEBEGIN): Define.
1866
1867         Thanks to Tim Kosse <botg at users dot sf dot net>.
1868
1869 2008-08-22  Bo Yang  <techrazy@users.sourceforge.net>
1870
1871         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
1872         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct.
1873         * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION,
1874         DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION,
1875         LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION,
1876         UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION,
1877         PROTECTED_DACL_SECURITY_INFORMATION): Define.
1878
1879 2008-08-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1880
1881         * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS,
1882         WTSQuerySessionInformation, WTSFreeMemory): Define.
1883
1884 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
1885
1886         * lib/gdi32.def (SetLayout): Export.
1887
1888 2008-07-25  Bo Yang  <techrazy@users.sourceforge.net>
1889
1890         * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM,
1891         struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty,
1892         CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey,
1893         CertCreateCertificateContext, CryptGetKeyIdentifierProperty,
1894         CertSetCertificateContextProperty, CertCompareCertificateName,
1895         CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA,
1896         CryptGetDefaultProviderW and many corresponding macroes): Define.
1897         * lib/crypt32.def (Export the above 11 functions): Export.
1898         * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related
1899         macroes): Define.
1900
1901
1902 2008-07-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
1903
1904         * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR,
1905         MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define.
1906
1907 2008-07-24  techrazy  <techrazy@users.sourceforge.net>
1908
1909         * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define.
1910
1911 2008-07-24  Corinna Vinschen  <corinna@vinschen.de>
1912
1913         * include/lmaccess.h (struct _USER_INFO_4): Define.
1914         (struct _USER_INFO_23): Define.
1915         (struct _GROUP_INFO_3): Define.
1916
1917 2008-07-14  Corinna Vinschen  <corinna@vinschen.de>
1918
1919         * include/iphlpapi.h (GetExtendedTcpTable): Add prototype.
1920         * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID,
1921         MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID,
1922         MIB_TCP6TABLE_OWNER_PID): Define.
1923         * lib/iphlpapi.def (GetExtendedTcpTable): Export.
1924
1925 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
1926
1927         * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota,
1928         GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead
1929         of 0x0502.
1930         Bug reported by Thomas Denk.
1931
1932 2008-06-25  Brandon Sneed  <nivenh@sourceware.org>
1933
1934         * include/winbase.h (InterlockedIncrement, InterlockedDecrement,
1935         InterlockedCompareExchange, InterlockedExchange,
1936         InterlockedCompareExchangePointer, InterlockedExchangeAdd,
1937         InterlockedExchangePointer): Modified from PLONG to LONG volatile *.
1938         Bug reported by Erik Blake.
1939
1940 2008-06-20  Danny Smith  <dannysmith@users.sourceforge.net>
1941
1942         * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix.
1943         * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix.
1944         Bug reported by Brian Hawley.
1945
1946 2008-06-17  Corinna Vinschen  <corinna@vinschen.de>
1947
1948         * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY,
1949         DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED,
1950         DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY,
1951         DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED,
1952         DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF,
1953         DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME,
1954         DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define.
1955         (DsGetDcNameW, DsGetDcNameA): Declare.
1956         (DsGetDcName): Define.
1957         * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export.
1958
1959 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1960
1961         * include/commctrl.h (NMLVODSTATECHANGE): Define.
1962
1963         Thanks to Tim Kosse <botg at users dot sf dot net>.
1964
1965 2008-05-28  Chris Sutcliffe  <ir0nh34d@users.sf.net>
1966
1967         * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition.
1968
1969         Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>.
1970
1971 2008-05-15  Corinna Vinschen  <corinna@vinschen.de>
1972
1973         * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define.
1974         (FILE_SUPPORTS_TRANSACTIONS): Define.
1975
1976 2008-05-01  Bart Oldeman  <bartoldeman@users.sf.net>
1977
1978         * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE,
1979         DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition.
1980
1981 2008-05-02  Ramiro Polla  <ramiro@lisha.ufsc.br>
1982
1983         * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW,
1984         WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD,
1985         WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW,
1986         WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM,
1987         WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT,
1988         WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW,
1989         WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW,
1990         WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA,
1991         WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA,
1992         WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA,
1993         WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA,
1994         WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT,
1995         WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE,
1996         WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT,
1997         WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY,
1998         WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS,
1999         WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP,
2000         WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP,
2001         WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW,
2002         WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT,
2003         WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME,
2004         WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW,
2005         WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE,
2006         WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR,
2007         WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME,
2008         WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE,
2009         WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB,
2010         WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN,
2011         WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus,
2012         capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream,
2013         capSetCallbackOnWaveStream, capGetUserData, capSetUserData,
2014         capDriverConnect, capDriverDisconnect, capDriverGetName,
2015         capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile,
2016         capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk,
2017         capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat,
2018         capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource,
2019         capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize,
2020         capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay,
2021         capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos,
2022         capGrabFrame, capGrabFrameNoStop, capCaptureSequence,
2023         capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup,
2024         capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort,
2025         capCaptureSingleFrameOpen, capCaptureSingleFrameClose,
2026         capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste,
2027         capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define.
2028         (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS,
2029         *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef.
2030
2031 2008-04-26  Yuval  <uvman@users.sourceforge.net>
2032
2033         * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED,
2034         SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER,
2035         SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE,
2036         LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS,
2037         SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED,
2038         SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS,
2039         SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData,
2040         SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL,
2041         SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION,
2042         *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS,
2043         *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION,
2044         *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS,
2045         *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP,
2046         *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER,
2047         *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER,
2048         *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE,
2049         *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD,
2050         *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION,
2051         *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN,
2052         *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP,
2053         *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY,
2054         *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY,
2055         *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS,
2056         *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER,
2057         *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK,
2058         *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER,
2059         *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON,
2060         *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE,
2061         LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER,
2062         *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED,
2063         *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH,
2064         *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn,
2065         SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn,
2066         SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn,
2067         SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn,
2068         SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn,
2069         SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn,
2070         SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn,
2071         SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn,
2072         SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn,
2073         SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn,
2074         SpMarshallSupplementalCredsFn, SpExportSecurityContextFn,
2075         SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE,
2076         SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn,
2077         *SpUserModeInitializeFn): Define.
2078         * include/sspi.h (SECURITY_STRING): Define.
2079
2080 2008-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
2081
2082         * include/specstrings.h: Add more dummy defines.
2083
2084 2008-04-22  Corinna Vinschen  <corinna@vinschen.de>
2085
2086         * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define.
2087         (SECURITY_MANDATORY_UNTRUSTED_RID): Define.
2088         (SECURITY_MANDATORY_LOW_RID): Define.
2089         (SECURITY_MANDATORY_MEDIUM_RID): Define.
2090         (SECURITY_MANDATORY_HIGH_RID): Define.
2091         (SECURITY_MANDATORY_SYSTEM_RID): Define.
2092         (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define.
2093         (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define.
2094         (SE_GROUP_INTEGRITY): Define.
2095         (SE_GROUP_INTEGRITY_ENABLED): Define.
2096
2097 2008-04-11  Corinna Vinschen  <corinna@vinschen.de>
2098
2099         * include/sddl.h (ConvertStringSidToSidA): Declare.
2100         (ConvertStringSidToSidW): Declare.
2101         (ConvertStringSidToSid): Define.
2102
2103 2008-03-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2104
2105         * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function
2106         and MPR_INTERFACE_3 structure since they are available only in Windows
2107         Server 2008
2108
2109         Thanks to crackedmind  <crackedmind at sf dot net>.
2110
2111 2008-02-24  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2112
2113         * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY
2114         definitions.
2115         * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove.
2116
2117 2008-02-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2118
2119         * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define.
2120
2121 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2122
2123         * include/specstrings.h (IN, OUT, OPTIONAL): Remove.
2124         * include/windef.h (IN, OUT, OPTIONAL): Define.
2125
2126 2008-02-02  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2127
2128         * include/specstrings.h: new file, move pseudo modifiers from windef.h.
2129         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2130         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2131         __out_bcount_opt): Move to specstrings.h.
2132
2133 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2134
2135         * lib/bthprops.def: new file, bluetooth imports.
2136
2137 2008-01-30  Brandon Sneed  <nivenh@sourceware.org>
2138
2139         * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
2140         __out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
2141         __out_bcount_opt): Defined additional pseudo-modifiers.
2142
2143 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2144         * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
2145         (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,
2146         dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount,
2147         dwRedialPause.
2148
2149 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2150
2151         * include/winnt.h (SYSTEM_POWER_CONDITION): typedef.
2152         * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE,
2153         DEVICE_NOTIFY_SERVICE_HANDLE): define.
2154         * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs.
2155         * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS,
2156         GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE,
2157         GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK,
2158         GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs.
2159         * include/winuser.h (RegisterPowerSettingNotification,
2160         UnregisterPowerSettingNotification): Add prototypes.
2161         * lib/user32.def: Added imports for the above prototypes.
2162         * lib/Makefile.in: Added build support for power-uuid.c.
2163         * lib/power-uuid.c: New file containing power GUID definitions.
2164
2165 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2166
2167         * include/ras.h (RAS_MaxDnsSuffix): define.
2168
2169 2008-01-29  Brandon Sneed  <nivenh@sourceware.org>
2170
2171         * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW):
2172         Add prototypes.
2173         * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12):
2174         Add exports.
2175
2176 2007-12-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2177
2178         * include/w32api.h: Increment version to 3.11.
2179         * Makefile.in: Ditto.
2180
2181 2007-12-11  Dave Korn  <dave.korn@artimi.com>
2182
2183         * include/wincrypt.h (PCRYPT_DECODE_PARA):  Add missing typedef.
2184         (CERT_POLICY_MAPPINGS_INFO):  Move before CERT_POLICY_MAPPING.
2185
2186 2007-12-03  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2187
2188         * include/wingdi.h: Change WINVER guard to _WIN32_WINNT.
2189
2190 2007-12-03  techrazy  <techrazy@users.sourceforge.net>
2191
2192         * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE,
2193         NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define.
2194
2195 2007-11-21  Kevin Conaway  <kevin_conaway@users.sourceforge.net>
2196
2197         * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define.
2198
2199 2007-11-21  elsapo  <elsapo@users.sourceforge.net>
2200
2201         * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG,
2202         CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG,
2203         CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR,
2204         X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA,
2205         X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS,
2206         CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME,
2207         PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID,
2208         X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2,
2209         X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED,
2210         X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED,
2211         X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY,
2212         X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS,
2213         X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE,
2214         X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT,
2215         X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION,
2216         X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT,
2217         X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE,
2218         X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO,
2219         PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB,
2220         PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS,
2221         ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO,
2222         CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST,
2223         X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME,
2224         OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE,
2225         OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED,
2226         CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE,
2227         CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED,
2228         CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD,
2229         CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG,
2230         CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG,
2231         CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG,
2232         CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG,
2233         CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG,
2234         szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS,
2235         szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS,
2236         szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2,
2237         X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS,
2238         szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER,
2239         szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR,
2240         szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL,
2241         szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS,
2242         szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY,
2243         szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME,
2244         szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE,
2245         szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS,
2246         szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP,
2247         szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2,
2248         szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO,
2249         PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO,
2250         CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO,
2251         PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE,
2252         CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO,
2253         CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO,
2254         CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING,
2255         PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject,
2256         CryptEncodeObjectEx): define.
2257
2258 2007-11-21  Brian Dessent  <dessent@users.sourceforge.net>
2259
2260         * include/winbase.h (CheckTokenMembership): define.
2261
2262 2007-10-03  Jiri Malak  <Jiri.Malak@iol.cz>
2263
2264         * include/rpcndr.h: Missing NdrClientCall2 entry.
2265         * lib/rpcrt4.def: Ditto.
2266
2267 2007-10-03  Frank Fesevur  <ffes@users.sourceforge.net>
2268         * lib/scnsave.c: Multi-monitor support.
2269
2270 2007-08-03  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2271
2272         * include/w32api.h: Increment version to 3.10.
2273         * Makefile.in: Ditto.
2274
2275 2007-08-02  Corinna Vinschen  <corinna@vinschen.de>
2276
2277         * include/winbase.h (ReOpenFile): Add prototype.
2278         * lib/kernel32.def (ReOpenFile@16): Add export.
2279
2280 2007-07-31  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2281
2282         * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define.
2283
2284 2007-7-30  Martijn Wargers  <martijnw22@users.sourceforge.net>
2285
2286         * include/wingdi.h (GetTextExtentExPointI): Add prototype.
2287         * lib/gdi32.def (GetTextExtentExPointI@28): Add export.
2288
2289 2007-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2290
2291         * include/wtypes.h (LPDECIMAL): Define.
2292         (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions.
2293
2294 2007-07-18  Corinna Vinschen  <corinna@vinschen.de>
2295
2296         * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define.
2297
2298 2007-07-17  Corinna Vinschen  <corinna@vinschen.de>
2299
2300         * include/winnt.h (FILE_READ_ONLY_VOLUME): Define.
2301         * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define.
2302
2303 2007-07-12  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2304
2305         * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE):
2306         Define.
2307
2308 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2309
2310         * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define.
2311         * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY,
2312         PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED,
2313         PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL,
2314         PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW,
2315         PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC):
2316         Sync with include/pbt.h.
2317
2318 2007-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
2319
2320         [mingw-Bugs-1751518]
2321         * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL,
2322         get_URL.
2323
2324         [mingw-Bugs-1751565]
2325         * include/basetyps.h (IID); Guard with __IID_DEFINED__.
2326
2327         [mingw-Bugs-1751595]
2328         * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP
2329         methods.
2330
2331         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2332
2333 2007-07-10  Danny Smith  <dannysmith@users.sourceforge.net>
2334
2335         [mingw-Bugs-1750898]
2336         * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping.
2337         Thanks to Yuji Kuwabara  <yujikuwabara at sf dot net>.
2338
2339 2007-07-09  Danny Smith  <dannysmith@users.sourceforge.net>
2340
2341         [mingw-Bugs-1749305]
2342         * lib/kernel32.def (GetConsoleProcessList@8):  Add export.
2343
2344 2007-07-02  Przemek Czerkas  <pczerkas@gmail.com>
2345
2346         * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO.
2347
2348 2007-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
2349
2350         * include/oaidl.h: Include windows.h and ole2.h,
2351         unless COM_NO_WINDOWS_H.
2352
2353         [mingw-Bugs-1742130]
2354         * include/oaidl.h (struct tagVARIANT): Add union members
2355         LONGLONG  * pllVal and ULONGLONG * pullVal.
2356
2357 2007-07-01  Danny Smith  <dannysmith@users.sourceforge.net>
2358
2359         * include/ws2tcpip.h (s6_addr32): Correct definition.
2360         Thanks to Alfred E. Heggestad <aeh at db dot org>
2361
2362 2007-05-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2363
2364         * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define.
2365
2366         Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for
2367         supplying the information.
2368
2369 2007-05-19  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2370
2371         * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define.
2372
2373 2007-04-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2374
2375         * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
2376         Vista.
2377
2378 2007-04-20  Matthias Miller  <matthiasmiller@users.sourceforge.net>
2379
2380          * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
2381         CRYPTPROTECT_LOCAL_MACHINE): Define.
2382
2383 2007-04-15  Piotr Wyderski  <piotr.wyderski@wp.pl>
2384
2385         * include/winbase.h (SetInformationJobObject, QueryInformationJobObject):
2386         Define.
2387
2388 2007-03-30  Brian Dessent  <brian@dessent.net>
2389
2390         * lib/kernel32.def (CreateMemoryResourceNotification@4): Define.
2391
2392 2007-03-25  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2393
2394         * include/w32api.h: Increment version to 3.9.
2395         * Makefile.in: Ditto.
2396
2397 2007-03-23  Corinna Vinschen  <corinna@vinschen.de>
2398
2399         * include/psapi.h (GetMappedFileName): Fix messed up checkin.
2400
2401 2007-03-23  Matthew Gregan  <kinetik@flim.org>
2402
2403         * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx.
2404
2405 2007-03-06  Brandon Sneed  <brandon@oqo.com>
2406
2407         * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA
2408         Added SetupConfigureWmiFromInfSectionW
2409         Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections
2410
2411         * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W
2412
2413         * include/winuser.h: Added PBT_APMQUERYSUSPEND
2414         Added PBT_APMQUERYSTANDBY
2415         Added PBT_APMQUERYSUSPENDFAILED
2416         Added PBT_APMQUERYSTANDBYFAILED
2417         Added PBT_APMSUSPEND
2418         Added PBT_APMSTANDBY
2419         Added PBT_APMRESUMECRITICAL
2420         Added PBT_APMRESUMESUSPEND
2421         Added PBT_APMRESUMESTANDBY
2422         Added PBT_APMBATTERYLOW
2423         Added PBT_APMPOWERSTATUSCHANGE
2424         Added PBT_APMOEMEVENT
2425         Added PBT_APMRESUMEAUTOMATIC
2426
2427         * include/wtsapi32.h: New file
2428
2429         * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines
2430
2431 2007-03-05  Jan Nijtmans  <nijtmans@users.sourceforge.net>
2432
2433         * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch
2434         argument to constant.
2435
2436 2007-02-18  Jiri Malak  <jiri.malak@iol.cz>
2437
2438         * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines.
2439         * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData):
2440         Add prototypes.
2441         [WATCOM] (NtCurrentTeb): Add protype and inline asm definition.
2442
2443 2007-02-18  Vesa Jääskeläinen  <chaac@users.sourceforge.net>
2444
2445         * lib/user32.def (InternalGetWindowText): Add stub.
2446
2447 2007-02-11  Daniel Atallah  <datallah@users.sourceforge.net>
2448
2449         * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN,
2450         LANG_BOSNIAN_NEUTRAL): Define.
2451
2452 2007-02-11  Daniel Schlyder  <thrug@users.sourceforge.net>
2453
2454         * include/winuser.h: Add guards around TITLEBARINFO and
2455         GetTitleBarInfo().
2456
2457 2007-01-11  Gisle Vanem  <giva@users.sourceforge.net>
2458
2459         * include/winbase.h (struct _OVERLAPPED): Change type of
2460         Internal, InternalHigh members to ULONG_PTR.
2461         (PAPCFUNC): Change DWORD parameter to ULONG_PTR.
2462         (CreateIoCompletionPort): Likewise.
2463         (PostQueuedCompletionStatus): Likewise.
2464         (QueueUserAPC): Likewise.
2465
2466 2007-01-06  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
2467
2468         * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25,
2469         DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR,
2470         DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS,
2471         DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID,
2472         DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR,
2473         DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME,
2474         DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID,
2475         DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY,
2476         DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB,
2477         DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values.
2478
2479 2006-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
2480
2481         * Makefile.in: Add aclocal.m4 to source release.
2482
2483 2006-11-18  Chris Sutcliffe  <ir0nh34d@users.sf.net>
2484
2485         * include/w32api.h: Increment version to 3.8.
2486         * Makefile.in: Ditto.
2487
2488 2006-11-13  Daniel Schlyder  <thrug@users.sourceforge.net>
2489
2490         * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS,
2491         VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define.
2492
2493         * include/winuser.h (SM_STARTER, SM_SERVERR2): Define.
2494
2495 2006-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
2496
2497         * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate.
2498
2499         * include/winnt.h (GetCurrentFiber): Remove extern declaration.  Make
2500         inline static.
2501         (GetFiberData): Likewise.
2502         * lib/kernel32.c: Remove.
2503         * lib/Makefile.in: Remove reference to kernel32.[co].
2504
2505 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2506
2507         * include/winnt.h (SE_RELABEL_NAME): Define.
2508         (SE_INCREASE_WORKING_SET_NAME): Define.
2509         (SE_TIME_ZONE_NAME): Define.
2510         (SE_CREATE_SYMBOLIC_LINK_NAME): Define.
2511
2512 2006-10-31  Corinna Vinschen  <corinna@vinschen.de>
2513
2514         * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define.
2515         (struct _REPARSE_DATA_BUFFER): Add missing Flags field to
2516         SymbolicLinkReparseBuffer substructure.
2517
2518 2006-10-29  Daniel Atallah  <datallah@users.sourceforge.net>
2519
2520         * lib/ws2_32.def (WSANSPIoctl): Add to lib.
2521
2522 2006-10-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2523
2524         * lib/Makefile.in: Fix order for 'all' rule.
2525
2526 2006-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
2527
2528         * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define.
2529
2530 2006-10-05  Danny Smith  <dannysmith@users.sourceforge.net>
2531
2532         * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE
2533         mappings.
2534         (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define.
2535         * lib/advapi.def (RegDeleteKeyEx{A|W}): Export.
2536
2537 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
2538
2539         * include/rpc.h: Add whitespace.
2540         * include/winnt.h (C_ASSERT): Define.
2541
2542 2006-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
2543
2544         [mingw-Bugs-1568067]
2545         * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define.
2546         * include/wingdi.h: (DM_POSITION): Define.
2547
2548 2006-10-03  Danny Smith  <dannysmith@users.sourceforge.net>
2549
2550         * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols.
2551         * lib/user32.def: Likewise.
2552
2553 2006-09-11  Chris Sutcliffe  <ir0n3h4d@users.sourceforge.net>
2554
2555         * lib/Makefile.in: fix typo.
2556         * lib/ddk/Makefile.in: fix typo.
2557         * lib/directx/Makefile.in: fix typo.
2558
2559         Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net)
2560         for pointing it out.
2561
2562 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2563
2564         * Makefile.in: Remove files from lib directory with distclean target
2565
2566 2006-09-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2567
2568         * include/winuser.h (CS_DROPSHADOW): Define.
2569
2570 2006-09-08  Michael Gerdau  <mgdde@users.sourceforge.net>
2571
2572         * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5,
2573         TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR,
2574         TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR,
2575         TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT):
2576
2577         Increase each constant by 1.
2578
2579 2006-09-07  Danny Smith  <dannysmith@users.sourceforge.net>
2580
2581         [mingw-Bugs-1553275]
2582         * include/wingdi.h (SetLayout): Add prototype.
2583         (GetLayout): Likewise.
2584
2585 2006-09-02  Danny Smith  <dannysmith@users.sourceforge.net>
2586
2587         [mingw-Bugs-1550139]
2588         * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype.
2589         Tanks to:  Samit Basu <samitbasu at sf dot net>
2590         (GetRecordInfoFromGuids): Add prototype.
2591
2592 2006-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
2593
2594         * include/winbase.h: Add comment about 'missing' SEM flag.
2595
2596 2006-08-30  Corinna Vinschen  <corinna@vinschen.de>
2597
2598         * configure.in: Substitute with_cross_host in depending files.
2599         * configure: Regenerate.
2600         * lib/Makefile.in: Add with_cross_host to allow more granular checks.
2601         Set installation directories accordingly.
2602         * lib/ddk/Makefile.in: Ditto.
2603         * lib/directx/Makefile.in: Ditto.
2604
2605 2006-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
2606
2607         * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here...
2608         * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here.
2609         Bug reported by: <macleone at users dot sf dot net>
2610
2611 2006-07-29  Danny Smith  <dannysmith@users.sourceforge.net>
2612
2613         Update some more IMAGE relocation type indicators
2614         to PECOFF v8 (May, 2006) specs.
2615
2616         * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE,
2617         IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32,
2618         IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD,
2619         IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4,
2620         IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG,
2621         IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG,
2622         IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION,
2623         IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION,
2624         IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB,
2625         IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN,
2626         IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO,
2627         IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO,
2628         IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR,
2629         IMAGE_REL_SHM_NOMODE): Add defines.
2630
2631         (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32,
2632         IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24,
2633         IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24,
2634         IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8,
2635         IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI,
2636         IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR,
2637         IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL,
2638         IMAGE_REL_M32R_TOKEN): Add defines.
2639
2640         (IMAGE_REL_MIPS_JMPADDR16): Add define.
2641
2642 2006-07-27  Danny Smith  <dannysmith@users.sourceforge.net>
2643
2644         Update some IMAGE flags to PECOFF v8 (May, 2006) specs.
2645         * include/winnt.h (IMAGE_FILE_MACHINE_AM33,
2646         IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC,
2647         IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16,
2648         IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16,
2649         IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000,
2650         IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP,
2651         IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5,
2652         IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2):
2653         Add defines.
2654
2655         (IMAGE_SUBSYSTEM_EFI_APPLICATION,
2656         IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER,
2657         IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM):
2658         Add defines.
2659
2660         (IMAGE_SYM_CLASS_CLR_TOKEN): Add define.
2661
2662         (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE,
2663         IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY,
2664         IMAGE_DLL_CHARACTERISTICS_NX_COMPAT,
2665         IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH,
2666         IMAGE_DLLCHARACTERISTICS_NO_BIND,
2667         IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines.
2668
2669         (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines.
2670
2671         (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64,
2672         IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32,
2673         IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2,
2674         IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4,
2675         IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION,
2676         IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN,
2677         IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32):
2678         Add defines.
2679
2680         (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22,
2681         IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64,
2682         IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M,
2683         IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22,
2684         IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22,
2685         IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32,
2686         IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22,
2687         IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X,
2688         IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F,
2689         IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M,
2690         IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32,
2691         IMAGE_REL_IA64_ADDEND): Add defines.
2692
2693         (IMAGE_SCN_GPREL): Add define.
2694
2695 2006-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
2696
2697         * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM.
2698         * include/basetyps.h:  Likewise.
2699         (_COM_interface): New define.
2700         (interface): Define to _COM_interface, conditional on !__OBJC__.
2701         Replace 'interface' with '_COM_interface', throughout.
2702         * include/comcat.h: Replace 'interface' with '_COM_interface', throughout.
2703         * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM.
2704         * include/docobj.h: Replace 'interface' with '_COM_interface', throughout.
2705         * include/mshtml.h: Likewise.
2706         * include/oaidl.h: Likewise.
2707         * include/objfwd.h: Likewise.
2708         * include/objidl.h: Likewise.
2709         * include/ocidl.h: Likwise.
2710         * include/olectl.h: Likewise.
2711         * include/oleidl.h: Likewise.
2712         * include/shlobj.h: Likewise.
2713         * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM.
2714         * include/vfw.h: Likewise.
2715         * include/windows.h. Likewise. Add comment.
2716         * include/directx/d3d9.h: Replace 'interface' with '_COM_interface',
2717         throughout.
2718
2719         * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM.
2720         Add test for conflict with '@interface'
2721
2722 2006-07-22  ipsoner  <ipsoner@users.sourceforge.net>
2723
2724         * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH,
2725         szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3,
2726         szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7,
2727         szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12,
2728         szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA,
2729         szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA,
2730         szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH,
2731         szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData,
2732         szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData,
2733         szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName,
2734         szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime,
2735         szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr,
2736         szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities,
2737         szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4,
2738         szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942,
2739         szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE,
2740         szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH,
2741         szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC,
2742         szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2,
2743         szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB,
2744         szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign,
2745         szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA,
2746         szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE,
2747         szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm,
2748         szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal,
2749         szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1,
2750         szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign,
2751         szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN,
2752         szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC,
2753         szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature,
2754         szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality,
2755         szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity,
2756         szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection,
2757         szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement,
2758         szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig,
2759         szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality,
2760         szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection,
2761         szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig,
2762         szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig,
2763         szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE,
2764         szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER,
2765         szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME,
2766         szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME,
2767         szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME,
2768         szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr,
2769         szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2,
2770         CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore,
2771         CertEnumCertificatesInStore, CertDuplicateCertificateContext,
2772         CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob,
2773         CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore,
2774         CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore,
2775         CertDeleteCertificateFromStore): Define.
2776         * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore,
2777         CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW,
2778         CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject,
2779         CertAddCertificateContextToStore, CertCompareCertificate,
2780         PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore):
2781         Define.
2782
2783 2006-07-22  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2784
2785         * lib/uuid.c: Remove.
2786
2787 2006-07-20  Elias Naur  <elias_naur@users.sourceforge.net>
2788
2789         * include/devguid.h: Add new file with missing GUID_DEVCLASS_*
2790         declarations. They were extracted from the registry with a script.
2791         * lib/devguid.c: Add new file with the implementation of the
2792         missing GUIDs.
2793         * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS.
2794
2795 2006-07-19  Elias Naur  <elias_naur@users.sourceforge.net>
2796
2797         * include/winuser.h (WM_INPUT): Add missing Raw Input
2798         notification define.
2799         (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD,
2800         RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs
2801
2802 2006-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
2803
2804         [mingw-Bugs-1525021]
2805         * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings.
2806         (IP_ADAPTER_MULTICAST_ADDRESS): Likewise.
2807         (IP_ADAPTER_UNICAST_ADDRESS): Likewise.
2808         (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise.
2809         (IP_ADAPTER_ADAPTER_PREFIX): Likewise.
2810         (IP_ADAPTER_ADDRESSES): Likewise.
2811
2812 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2813
2814         * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
2815         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
2816         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove.  Moved to
2817         extras-uuid.c.
2818         * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol,
2819         CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol,
2820         CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added.
2821         * lib/hlguids-uuid.c: State source of CLSIDs.
2822
2823 2006-06-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2824
2825         * lib/Makefile.in: Added extras-uuid as an object and source.
2826         * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate,
2827         IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding,
2828         IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo,
2829         IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG,
2830         IID_IEnumSTATURL): Remove.  Moved to extras-uuid.c.
2831         * lib/extras-uuid.c: New file.
2832         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
2833         net).
2834
2835 2006-06-12  Danny Smith  <dannysmith@users.sourceforge.net>
2836
2837         [mingw-Bugs-1424461]
2838         *include/imagehlp.h: Comment out IN, OUT and OPTIONAL,
2839         throughout.
2840         *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if
2841         _NO_W32_PSEUDO_MODIFIERS.
2842         *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL,
2843         throughout.
2844         *include/rpcnsip.h: Likewise.
2845         *include/windef.h: Don't define IN, OUT or OPTIONAL
2846         if _NO_W32_PSEUDO_MODIFIERS.
2847         *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL,
2848         throughout.
2849         *include/ddk/cfgmgr32.h: Likewise.
2850         *include/ddk/ddkmapi.h: Likewise.
2851         *include/ddk/hidclass.h: Likewise.
2852         *include/ddk/hidpi.h: Likewise.
2853         *include/ddk/kbdmou.h: Likewise.
2854         *include/ddk/mcd.h: Likewise.
2855         *include/ddk/miniport.h: Likewise.
2856         *include/ddk/minitape.h: Likewise.
2857         *include/ddk/ndis.h: Likewise.
2858         *include/ddk/ndistapi.h: Likewise.
2859         *include/ddk/ndiswan.h: Likewise.
2860         *include/ddk/ntapi.h: Likewise.
2861         *include/ddk/ntdd8042.h: Likewise.
2862         *include/ddk/ntddpcm.h: Likewise.
2863         *include/ddk/ntifs.h: Likewise.
2864         *include/ddk/ntpoapi.h: Likewise.
2865         *include/ddk/parallel.h: Likewise.
2866         *include/ddk/pfhook.h: Likewise.
2867         *include/ddk/scsiwmi.h: Likewise.
2868         *include/ddk/smbus.h: Likewise.
2869         *include/ddk/srb.h: Likewise.
2870         *include/ddk/storport.h: Likewise.
2871         *include/ddk/tdikrnl.h: Likewise.
2872         *include/ddk/upssvc.h: Likewise.
2873         *include/ddk/usbcamdi.h: Likewise.
2874         *include/ddk/usbscan.h: Likewise.
2875         *include/ddk/video.h: Likewise.
2876         *include/ddk/videoagp.h: Likewise.
2877         *include/ddk/win2k.h: Likewise.
2878         *include/ddk/winddi.h: Likewise.
2879         *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL
2880         if _NO_W32_PSEUDO_MODIFIERS.
2881         Comment out IN, OUT and OPTIONAL, throughout.
2882         *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL,
2883         throughout.
2884         *include/ddk/ws2san.h: Likewise.
2885
2886 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2887
2888         * lib/Makefile.in:  Added hlguids-uuid as source and object.
2889
2890 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2891
2892         * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink,
2893         CLSID_StdHlinkBrowseContext): Remove.  Moved to relevant files.
2894         * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added.
2895         * lib/hlguids-uuid.c: New file.
2896         Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot
2897         net).
2898
2899 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2900
2901         * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and
2902         objects.
2903         * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol,
2904         IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding,
2905         IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite,
2906         IID_IHlinkTarget): Remove.  Moved to new files.
2907         * lib/urlmon-uuid.c: New file.
2908         * lib/hlink-uuid.c: New file.
2909
2910 2006-06-10  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2911
2912         * lib/Makefile.in: Added ativscp-uuid as source and object.
2913         * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError,
2914         IID_IActiveScriptParse, IID_IActiveScriptSite,
2915         IID_IActiveScriptSiteWindow): Remove.  Moved to ativscp-uuid.c.
2916         * lib/ativscp-uuid.c: New file.
2917
2918 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2919
2920         * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity):
2921         Remove.  Moved to objidl-uuid.c
2922         * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy,
2923         IID_IServerSecurity): Defined.
2924
2925 2006-06-09  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2926
2927         * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and
2928         objects.
2929         * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage,
2930         CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile,
2931         CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo,
2932         IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug,
2933         IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker,
2934         IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString,
2935         IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory,
2936         IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo,
2937         IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove.  Moved to relevant
2938         files.
2939         * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
2940         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2,
2941         IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define.
2942         * lib/cguid-uuid.c: New file.
2943         * lib/olectlid-uuid.c: New file.
2944
2945 2006-06-08  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2946
2947         * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid
2948         exdisp-uuid mlang-uuid objidl-uuid as sources and objects.
2949         * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable,
2950         CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream,
2951         CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable,
2952         CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser,
2953         DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink,
2954         IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister,
2955         IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo,
2956         IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO,
2957         IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo,
2958         IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc,
2959         IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety,
2960         IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite,
2961         IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist,
2962         IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint,
2963         IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage,
2964         IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer,
2965         IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject,
2966         IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo,
2967         IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser,
2968         IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files.
2969         * lib/comcat-uuid.c: New file.
2970         * lib/docobj-uuid.c: New File.
2971         * lib/exdisp-uuid.c: New file.
2972         * lib/mlang-uuid.c: New file.
2973         * lib/oaidl-uuid.c: New file.
2974         * lib/objidl-uuid.c: New file.
2975         * lib/objsafe-uuid.c: New file.
2976
2977 2006-06-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
2978
2979         * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and
2980         objects.
2981         * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject,
2982         IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder,
2983         IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject,
2984         IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer,
2985         IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName,
2986         IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager,
2987         IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive,
2988         IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite,
2989         IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit,
2990         IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink,
2991         IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp,
2992         IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2,
2993         IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint,
2994         IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog,
2995         IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite,
2996         IID_ISpecifyPropertyPages): Remove. Moved to new files.
2997         * lib/oleidl-uuid.c: New file.
2998         * lib/oleacc-uuid.c: New file.
2999         * lib/ocidl-uuid.c: New file.
3000
3001 2006-06-04  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3002
3003         * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and
3004         objects.
3005         * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider):
3006         Remove.  Moved to unknwn-uuid and servprov-uuid.
3007         * lib/unknwn-uuid.c: New file.
3008         * lib/servprov-uuid.c: New file.
3009
3010 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3011
3012         * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_*
3013         enum.
3014
3015 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3016
3017         * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','.
3018
3019 2006-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
3020
3021         * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT,
3022         DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove.  Duplicates of
3023         wingdi.h defines.
3024
3025 2006-06-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3026
3027         * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove
3028         duplicate defines.
3029
3030         * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental
3031         removal.
3032         (SUBLANG_MARATHI_INDIA): Remove duplicate define.
3033
3034 2006-05-24  Christopher Faylor  <cgf@timesys.com>
3035
3036         * configure.in: Update to newer autoconf.
3037         (thanks to Steve Ellcey)
3038         * configure: Regenerate.
3039         * aclocal.m4: New file.
3040
3041 2006-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
3042
3043         * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition.
3044
3045 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3046
3047         * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW)
3048         (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define
3049         as macros.
3050         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3051
3052 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3053
3054         * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate)
3055         (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst)
3056         (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo)
3057         (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect)
3058         (MprAdminMIBSetTrapInfo): Declare functions.
3059         Note: MprAdminMIBSetTrapInfo is missing from mprapi.def.
3060         (MIB_SERVER_HANDLE): New typedef.
3061         (MprConfigTransportSetInfo): Declare function.
3062         * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum)
3063         (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size.
3064
3065 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3066
3067         * lib/rtutils.def: New file. Generated on Windows XP.
3068         (TracePrintf{AW},TracePrintfEx{AW}): Left out for now.
3069         * include/rtutils.h: New file.
3070         (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}):
3071         Commented out, they're missing from rtutils.def.
3072
3073 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3074
3075         * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind)
3076         (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet)
3077         (MprInfoCreate,MprInfoDelete,MprInfoDuplicate)
3078         (MprInfoRemoveAll): Declare functions.
3079
3080 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3081
3082         * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName)
3083         (MprConfigGetGuidName,MprConfigInterfaceCreate)
3084         (MprConfigInterfaceDelete,MprConfigInterfaceEnum)
3085         (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo)
3086         (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd)
3087         (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle)
3088         (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove)
3089         (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup)
3090         (MprConfigServerConnect,MprConfigServerDisconnect)
3091         (MprConfigServerGetInfo,MprConfigServerInstall)
3092         (MprConfigServerRestore,MprConfigTransportCreate)
3093         (MprConfigTransportDelete,MprConfigTransportEnum)
3094         (MprConfigTransportGetHandle,MprConfigTransportGetInfo)
3095         (MprConfigTransportSetInfo): Declare functions.
3096
3097 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3098
3099         * include/mprapi.h (MprAdminBufferFree)
3100         (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString)
3101         (MprAdminInterfaceConnect,MprAdminInterfaceCreate)
3102         (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo)
3103         (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect)
3104         (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials)
3105         (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle)
3106         (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult)
3107         (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx)
3108         (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd)
3109         (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove)
3110         (MprAdminInterfaceTransportSetInfo)
3111         (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes)
3112         (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification)
3113         (MprAdminServerConnect,MprAdminServerDisconnect)
3114         (MprAdminServerGetCredentials,MprAdminServerGetInfo)
3115         (MprAdminServerSetCredentials,MprAdminTransportCreate)
3116         (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions.
3117
3118 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3119
3120         * include/ipxtfflt.h: New file.
3121
3122 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3123
3124         * include/mprapi.h: Fix header guard. Cleanup.
3125         (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
3126         (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
3127         (MprAdminConnectionHangupNotification)
3128         (MprAdminConnectionHangupNotification2)
3129         (MprAdminGetIpAddressForUser,MprAdminInitializeDll)
3130         (MprAdminTerminateDll,MprAdminLinkHangupNotification)
3131         (MprAdminReleaseIpAddress): Declare functions.
3132         * lib/mprapi.def: Regenerate on Windows XP.
3133
3134 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3135
3136         * include/ipifcons.h: Cleanup.
3137         * include/ipxconst.h: Fix header guard.
3138         * include/ipxrtdef.h: include <ipxconst.h>.
3139
3140 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3141
3142         * include/ipxrtdef.h: Cleanup.
3143         (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE)
3144         (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE)
3145         (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE)
3146         (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE)
3147         (IPX_STATIC_NETBIOS_NAME_INFO_TYPE)
3148         (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE)
3149         (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE)
3150         (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define.
3151         * include/routprot.h: Cleanup.
3152         (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP)
3153         (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS)
3154         (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP)
3155         (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC)
3156         (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE)
3157         (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define.
3158         * include/fltdefs.h: New file.
3159         * include/ipinfoid.h: New file.
3160
3161 2006-05-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3162
3163         * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer)
3164         (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl)
3165         (IAMCertifiedOutputProtection): Add interfaces.
3166         * include/adsprop.h: New file.
3167         * include/cmnquery.h: New file.
3168         * include/dsadmin.h: New file.
3169         * include/dsclient.h: New file.
3170         * include/dsgetdc.h: New file.
3171         * include/dsquery.h: New file.
3172         * include/dsrole.h: New file.
3173         * include/ntdsapi.h: New file.
3174         * include/ntdsbcli.h: New file.
3175         * include/objsel.h: New file.
3176
3177 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3178
3179         * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures.
3180         (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums.
3181         (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES)
3182         (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP)
3183         (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL)
3184         (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH)
3185         (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO)
3186         (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define.
3187
3188 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3189
3190         * include/qedit.h: New file.
3191         * include/errors.h: Cleanup.
3192
3193 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3194
3195         * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to
3196         avoid dependency on <string.h>.
3197         There's no Win32 equivalent for memcmp:
3198         http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456
3199
3200 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3201
3202         * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory
3203         instead of memset to avoid dependency on <string.h>.
3204         * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL)
3205         (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE)
3206         (AM_WST_STYLE): Add enums.
3207         (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo,
3208         AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New
3209         structures.
3210         * include/errors.h (VFW_E_DVD_CMD_CANCELLED)
3211         (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT)
3212         (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION)
3213         (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC)
3214         (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE)
3215         (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED)
3216         (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC)
3217         (VFW_E_DVD_NO_RESUME_INFORMATION)
3218         (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED)
3219         (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE)
3220         (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW)
3221         (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC)
3222         (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define.
3223         * include/evcode.h (AM_WMT_EVENT_DATA): New structure.
3224         * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define.
3225         * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP)
3226         (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here...
3227         * include/strmif.h: ... to here. New file.
3228         * include/aviriff.h: New file.
3229         * include/bdatypes.h: New file.
3230         * include/control.h: New file.
3231         * include/dvdmedia.h: New file.
3232         * include/il21dec.h: New file.
3233         * include/ks.h: New file.
3234         * include/ksmedia.h: New file.
3235         * include/mmreg.h: New file.
3236         * include/mpegtype.h: New file.
3237         * include/vidcap.h: New file.
3238         * include/vmr9.h: New file.
3239         * include/vptype.h: New file.
3240         * include/xprtdefs.h: New file.
3241
3242 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3243
3244         * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE):
3245         Documented as defined on Windows 2000 or later.
3246         [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE)
3247         (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2)
3248         (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN)
3249         (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented
3250         but values unknown, Windows Vista or later.
3251         (CAL_UMALQURA): Cleanup.
3252         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3253         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3254         (CAL_SSHORTESTDAYNAME7): Cleanup.
3255         [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX)
3256         (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup.
3257
3258 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3259
3260         * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE)
3261         (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE)
3262         (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES)
3263         (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6)
3264         (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3)
3265         (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED)
3266         (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED)
3267         (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED)
3268         (DMPAPER_JAPANESE_POSTCARD_ROTATED)
3269         (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED)
3270         (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED)
3271         (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED)
3272         (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS)
3273         (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4)
3274         (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K)
3275         (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2)
3276         (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5)
3277         (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8)
3278         (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED)
3279         (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED)
3280         (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED)
3281         (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED)
3282         (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED)
3283         (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED)
3284         (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define.
3285         (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined.
3286         (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT)
3287         (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH)
3288         (DMDFO_CENTER): Define.
3289         (GetDCBrushColor,GetDCPenColor): Declare.
3290         * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs.
3291
3292 2006-05-10  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3293
3294         * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN)
3295         (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH)
3296         (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE)
3297         (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN)
3298         (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA)
3299         (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC)
3300         (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK)
3301         (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN)
3302         (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF)
3303         (LANG_DARI,LANG_MALAGASY)
3304         (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED)
3305         (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA)
3306         (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE)
3307         (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA)
3308         (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE)
3309         (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA)
3310         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN)
3311         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3312         (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA)
3313         (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE)
3314         (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA)
3315         (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK)
3316         (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND)
3317         (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA)
3318         (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA)
3319         (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES)
3320         (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS)
3321         (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA)
3322         (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND)
3323         (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL)
3324         (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY)
3325         (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA)
3326         (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA)
3327         (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND)
3328         (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN)
3329         (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA)
3330         (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA)
3331         (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR)
3332         (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA)
3333         (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG)
3334         (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA)
3335         (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND)
3336         (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK)
3337         (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC)
3338         (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA)
3339         (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN)
3340         (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL)
3341         (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR)
3342         (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA)
3343         (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA)
3344         (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN)
3345         (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY)
3346         (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY)
3347         (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND)
3348         (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA)
3349         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN)
3350         (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC)
3351         (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA)
3352         (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA)
3353         (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN)
3354         (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN)
3355         (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA)
3356         (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND)
3357         (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA)
3358         (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY)
3359         (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC)
3360         (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY)
3361         (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM)
3362         (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA)
3363         (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC)
3364         (SUBLANG_ZULU_SOUTH_AFRICA): Define.
3365         (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error.
3366         (SUBLANG_MARATHI_INDIA): Defined twice by error.
3367
3368 2006-05-05  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3369
3370         * lib/directx/Makefile.in: Remove reference to libquartz.a since
3371         it was moved.
3372
3373 2006-05-05  Earnie Boyd  <earnie@users.sf.net>
3374
3375         * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to
3376         SPI_SETSCREENSAVERUNNING.
3377         * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again.
3378
3379 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3380
3381         * include/winuser.h (SPI_SCREENSAVERRUNNING): Define.
3382         It had been removed because it's no documented, but Cygwin needs it.
3383
3384 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3385
3386         * include/amvideo.h (IFullScreenVideo): Define.
3387         (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE,
3388         SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros.
3389
3390 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3391
3392         * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX,
3393         CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented
3394         as available on Windows 98 and better.
3395         (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3)
3396         (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6)
3397         (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better.
3398
3399 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3400
3401         * include/amvideo.h: New file.
3402         * include/dshow.h: Include <amvideo.h>.
3403
3404 2006-05-04  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3405
3406         * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define.
3407         (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP)
3408         (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN)
3409         (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup.
3410         (HWND_BROADCAST): Cleanup.
3411         (HWND_MESSAGE): Windows 2000 only.
3412         (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup.
3413         (SMTO_NOTIMEOUTIFNOTHUNG): Define.
3414         (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS)
3415         (SIF_ALL): Cleanup.
3416         (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE)
3417         (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER)
3418         (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING)
3419         (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup.
3420         (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define.
3421         (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW)
3422         (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT)
3423         (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST)
3424         (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT)
3425         (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME)
3426         (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH)
3427         (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3428         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3429         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3430         (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS)
3431         (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER)
3432         (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING)
3433         (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS)
3434         (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS)
3435         (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU)
3436         (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH)
3437         (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE)
3438         (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY)
3439         (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME)
3440         (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME)
3441         (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH)
3442         (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE)
3443         (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE)
3444         (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI)
3445         (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define.
3446         (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP)
3447         (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS)
3448         (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY)
3449         (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT)
3450         (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF)
3451         (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT)
3452         (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS)
3453         (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS)
3454         (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS)
3455         (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS)
3456         (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA)
3457         (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING)
3458         (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER)
3459         (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER)
3460         (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH)
3461         (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH)
3462         (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY)
3463         (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS)
3464         (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY)
3465         (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE)
3466         (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT)
3467         (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE)
3468         (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED)
3469         (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS)
3470         (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS)
3471         (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup.
3472         (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error.
3473         (SPI_SCREENSAVERRUNNING): Removed.
3474         (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup.
3475         * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL)
3476         (ETO_IGNORELANGUAGE,ETO_PDY): Define.
3477         (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup.
3478
3479 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3480
3481         * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef.
3482         (MprAdminGetPDCServer): Add prototype.
3483         (MprAdminSendUserMessage): Add prototype.
3484         (MprAdminUserGetInfo): Add prototype.
3485         (MprAdminUserSetInfo): Add prototype.
3486         * lib/mprapi.def: Add stubs for above functions.
3487
3488 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3489
3490         * lib/directx/quartz.def: Move from here...
3491         * lib/quartz.def: ... to here.
3492
3493 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3494
3495         * include/amaudio.h: New file.
3496         * include/dshow.h: Include <amaudio.h>.
3497
3498 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3499
3500         * include/errors.h: New file.
3501         * include/dshow.h: Include <errors.h>.
3502
3503 2006-05-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3504
3505         * include/dshow.h: New file.
3506         * include/evcode.h: New file.
3507         * include/audevcod.h: New file.
3508         * include/dvdevcod.h: New file.
3509
3510 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3511
3512         * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef.
3513         (MprAdminConnectionClearStats): Add prototype.
3514         (MprAdminConnectionEnum): Add  prototype.
3515         (MprAdminConnectionGetInfo): Add prototype.
3516         (MprAdminConnectionRemoveQuarantine): Add prototype.
3517         (MprAdminPortClearStats): Add prototype.
3518         (MprAdminPortDisconnect): Add prototype.
3519         (MprAdminPortEnum): Add prototype.
3520         (MprAdminPortGetInfo): Add prototype.
3521         (MprAdminPortReset): Add prototype.
3522         * lib/mprapi.def: New file.
3523
3524 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3525
3526         *  include/mprapi.h: #include <lmcons.h>
3527         (MAX_DEVICETYPE_NAME): Add define.
3528         (MAX_PHONE_NUMBER_LEN): Add define.
3529         (ATADDRESSLEN): Add define.
3530         (IPADDRESSLEN): Add define.
3531         (IPXADDRESSLEN): Add define.
3532         (MPR_ENABLE_RAS_ON_DEVICE): Add define.
3533         (MPR_ENABLE_ROUTING_ON_DEVICE): Add define.
3534         (RAS_FLAGS_PPP_CONNECTION): Add define.
3535         (RAS_FLAGS_MESSENGER_PRESENT): Add define.
3536         (RAS_FLAGS_RAS_CONNECTION): Add define.
3537         (RAS_FLAGS_QUARANTINE_PRESENT): Add define.
3538         (RASCCPCA_STAC): Add define.
3539         (RASCCPCA_MPPC): Add define.
3540         (PPP_CCP_COMPRESSION): Add define.
3541         (PPP_CCP_ENCRYPTION40BITOLD): Add define.
3542         (PPP_CCP_ENCRYPTION40BIT): Add define.
3543         (PPP_CCP_ENCRYPTION128BIT): Add define.
3544         (PPP_CCP_ENCRYPTION56BIT): Add define.
3545         (PPP_CCP_HISTORYLESS): Add define.
3546         (RASPRIV_NoCallback): Add define.
3547         (RASPRIV_AdminSetCallback): Add define.
3548         (RASPRIV_CallerSetCallback): Add define.
3549         (RASPRIV_DialinPrivilege): Add define.
3550         (RASPRIV_CallbackType): Add define.
3551         (RASPRIV2_DialinPolicy): Add define.
3552         (PPP_LCP_PAP): Add define.
3553         (PPP_LCP_SPAP): Add define.
3554         (PPP_LCP_CHAP): Add define.
3555         (PPP_LCP_EAP): Add define.
3556         (PPP_LCP_CHAP_MD5): Add define.
3557         (PPP_LCP_CHAP_MS): Add define.
3558         (PPP_LCP_CHAP_MSV2): Add define.
3559         (PPP_LCP_MULTILINK_FRAMING): Add define.
3560         (enum _RAS_HARDWARE_CONDITION): Add.
3561         (enum _RAS_PORT_CONDITION): Add.
3562         (struct _PPP_ATCP_INFO): Add.
3563         (struct _PPP_ATCP_INFO): Add.
3564         (struct _PPP_IPCP_INFO): Add.
3565         (struct _PPP_IPCP_INFO2): Add.
3566         (struct _PPP_IPXCP_INFO): Add.
3567         (struct _PPP_LCP_INFO): Add.
3568         (struct _PPP_NBFCP_INFO): Add.
3569         (struct _PPP_INFO): Add.
3570         (struct _PPP_INFO_2): Add.
3571         (struct _RAS_CONNECTION_0): Add.
3572         (struct RAS_CONNECTION_1): Add.
3573         (struct _RAS_CONNECTION_2): Add.
3574         (struct RAS_PORT_0): Add.
3575         (struct _RAS_PORT_1): Add.
3576         (struct _RAS_USER_0): Add.
3577         (struct _RAS_USER_1): Add.
3578
3579 2006-05-02  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3580
3581         * include/mprapi.h: New file.
3582         * include/routprot.h: New file.
3583         * include/ipxrtdef.h: New file.
3584         * include/ipxconst.h: New file.
3585         * include/stm.h: New file.
3586
3587 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3588
3589         * include/ddk/winddk.h (KAFFINITY): Fix typo.
3590         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
3591
3592 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3593
3594         * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW)
3595         (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW)
3596         (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode
3597         versions.
3598         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
3599
3600 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3601
3602         * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo.
3603         Thanks to:    Oliver Stoeneberg <kidkat at sf dot net>
3604
3605 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3606
3607         * include/wingdi.h (BITMAPV5HEADER): New structure definition.
3608
3609 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3610
3611         * include/basetyps.h (REFFMTID): Define properly.
3612
3613 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3614
3615         * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define.
3616         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3617
3618 2006-04-28  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3619
3620         * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822)
3621         (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25)
3622         (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD)
3623         (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING)
3624         (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT)
3625         (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI)
3626         (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN)
3627         (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP)
3628         (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT)
3629         (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP)
3630         (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET)
3631         (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET)
3632         (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK)
3633         (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI)
3634         (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH)
3635         (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL)
3636         (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL)
3637         (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT)
3638         (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL)
3639         (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36)
3640         (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX)
3641         (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN)
3642         (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U)
3643         (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL)
3644         (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR)
3645         (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS)
3646         (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213)
3647         (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL)
3648         (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM)
3649         (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP)
3650         (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA)
3651         (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW)
3652         (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC
3653         (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC
3654         (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37)
3655         (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC)
3656         (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER)
3657         (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM)
3658         (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES)
3659         (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN)
3660         (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP)
3661         (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL)
3662         (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK)
3663         (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT)
3664         (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST)
3665         (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE)
3666         (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN)
3667         (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL)
3668         (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED)
3669         (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED)
3670         (IF_OPER_STATUS_OPERATIONAL): Define.
3671         * include/winbase.h (CancelWaitableTimer,UnregisterWait):
3672         Add function declaration.
3673         * include/mgm.h: New file.
3674         * lib/rtm.def: New file.
3675         Thanks to:    Bruce M Simpson <bms_spc at sf dot net>
3676
3677 2006-04-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3678
3679         * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment.
3680         This function cannot be made thread-safe, the API would have to be
3681         changed for that, just like strerror() -> strerror_r() and similar
3682         ISO C or POSIX functions...
3683
3684 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3685
3686         * include/edevdefs.h: New file.
3687
3688 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3689
3690         * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define.
3691         Use as guard for the WAVEFORMATEX structure instead of
3692         _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep
3693         _WAVEFORMATEX_ for compatibility.
3694         Thanks to:    Andrew Jones <guln at sf dot net>
3695
3696 2006-04-19  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3697
3698         * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW):
3699         Delete. Only CharNextExA and CharPrevExA are documented in MSDN.
3700         Thanks to:    David Golub <david_golub at sf dot net>
3701
3702 2006-04-18  Eric House  <ehouse@eehouse.org>
3703
3704         PocketPC support.
3705         * include/aygshell.h: New file [_WIN32_WCE]. Declare most common
3706         functions for using aygshell on PocketPC:
3707         SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen,
3708         SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange
3709
3710         * include/commctrl.h [_WIN32_WCE] Add function prototypes for
3711         command bar API on PocketPC:
3712         CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap,
3713         CommandBar_InsertComboBox, CommandBar_InsertMenubar,
3714         CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar,
3715         CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height,
3716         CommandBar_InsertButton, CommandBar_Destroy.
3717
3718         * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove
3719         fields not present on PocketPC.
3720         (GetCurrentThreadId): Conditionally declare as extern function
3721         without dllimport attribute on PocketPC.
3722         (ResetEvent): Likwise.
3723         (SetEvent): Likewise.
3724
3725         * include/wingdi.h [_WIN32_WCE]  (GetTextExtentPoint32{A|W}):
3726         Conditionally declare as extern function without dllimport
3727          attribute on PocketPC.
3728         * winuser.h  [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally
3729         declare as extern function without dllimport attribute on PocketPC.
3730
3731 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
3732
3733         * lib/test.c: Include icm.h.
3734
3735 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
3736
3737         * include/wingdi.h (ColorCorrectPalette): Add declaration.
3738         (CreateColorSpace): Add UNICODE mappings.
3739         * lib/gdi32.def (ColorCorrectPalette): Add stub.
3740         * include/icm.h: New file.
3741         * lib/mscms.def: New file.
3742         * lib/icmui.def: New file.
3743
3744 2006-04-18  Thorsten Dahlheimer  <dahlheim@users.sf.net>
3745
3746         * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define.
3747         (IMAGE_FILE_MACHINE_AMD64): New define.
3748         (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC):
3749         New defines.
3750         (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above.
3751         (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define.
3752         (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define.
3753         (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define.
3754         (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT)
3755         (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines.
3756         (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD)
3757         (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER):
3758         New defines.
3759         (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES)
3760         (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES)
3761         (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES)
3762         (IMAGE_SCN_ALIGN_8192BYTES): New defines.
3763         (IMAGE_DEBUG_TYPE_BORLAND): New define.
3764         (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32)
3765         (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure
3766         definitions and typedefs.
3767         (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above.
3768         (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64)
3769         (PIMAGE_NT_HEADERS64): New structure definitions and typedefs.
3770         (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above.
3771         (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64):
3772         New structure definition and typedefs.
3773         (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY):
3774         Likewise.
3775         (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise.
3776
3777 2006-04-18  Bart Oldeman  <bartoldeman@users.sf.net>
3778
3779         * lib/test.c: Fix typo in #inlcude.
3780         * include/aclui.h: INTERFACE should not remain
3781         defined at the end of the header.
3782         * include/servprov.h: Ditto.
3783
3784 2006-04-16  Danny Smith  <dannysmith@users.sourceforge.net>
3785
3786         * include/ws2tcpip.h (gai_strerror): Add thread-safety comment.
3787
3788 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3789
3790         * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline.
3791
3792 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3793
3794         * include/wsahelp.h (system_header): Add pragma.
3795         * include/ws2spi.h (system_header): Add pragma.
3796         * include/rasdlg.h (system_header): Add pragma.
3797         * include/rasdlg.h (_RASDLG_H): Define.
3798         Define instead of _RASDLG_H_, this is the w32api standard.
3799         * include/mlang.h (_MLANG_H): Define.
3800         Define instead of _MLANG_H_, this is the w32api standard.
3801         * include/setupapi.h (_SETUPAPI_H): Define.
3802         Define instead of _SETUPAPI_H_, this is the w32api standard.
3803
3804 2006-04-14  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3805
3806         * include/rpcndr.h (boolean): Add typedef.
3807         Thanks to:    James du Russel <ephelon at users dot sf dot net>
3808         * include/rpcndr.h (_RPCNDR_H): Define.
3809         Define in addition to __RPCNDR_H__, this is the w32api standard.
3810
3811 2006-04-14  Chris Sutcliffe  <ir0nh34d@users.sf.net>
3812
3813         * include/w32api.h: Increment version to 3.7.
3814         * Makefile.in: Ditto.
3815
3816 2006-04-13  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3817
3818         * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS,
3819         GET_MODULE_HANDLE_EX_FLAG_PIN,
3820         GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define.
3821         Thanks to:    Brandon Sneed <brandon at redf dot net>
3822
3823 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
3824
3825         * include/secext.h: Enclose function declarations in extern "C"
3826         if __cplusplus.
3827
3828 2006-04-11  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
3829
3830         * include/comcat.h: INTERFACE should not remain defined
3831         at the end of the header.
3832         * include/docobj.h: Ditto.
3833         * include/exdisp.h: Ditto.
3834         * include/intshcut.h: Ditto.
3835         * include/mlang.h: Ditto.
3836         * include/mshtml.h: Ditto.
3837         * include/oaidl.h: Ditto.
3838         * include/objidl.h: Ditto.
3839         * include/objsafe.h: Ditto.
3840         * include/ocidl.h: Ditto.
3841         * include/oleacc.h: Ditto.
3842         * include/oledlg.h: Ditto.
3843         * include/oleidl.h: Ditto.
3844         * include/richole.h: Ditto.
3845         * include/shldisp.h: Ditto.
3846         * include/shlobj.h: Ditto.
3847         * include/unknwn.h: Ditto.
3848         * include/vfw.h: Ditto.
3849         Thanks to:    Brandon Sneed <brandon at redf dot net>
3850
3851 2006-04-11  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3852
3853         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE)
3854         (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define.
3855         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
3856
3857 2006-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
3858
3859         * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2
3860         here also.
3861
3862 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3863
3864         * include/wincrypt.h (PROV_MS_EXCHANGE): Define.
3865         We should probably remove PROV_MS_MAIL but I'm keeping it for
3866         now for compatibility reasons.
3867         Thanks to:    Marcus Agehall <agehall at users dot sf dot net>
3868
3869 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3870
3871         * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL)
3872         (PD_RESULT_PRINT,PD_RESULT_APPLY): Define.
3873         Thanks to:    Wolfgang Glas <softadm at users dot sf dot net>
3874
3875 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3876
3877         * include/wingdi.h [WINVER >= 0x0410]
3878         (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better.
3879         Thanks to:    Alessandro Antonello <aleantonello at users dot sf dot net>
3880
3881 2006-04-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3882
3883         * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define.
3884         * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE)
3885         (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST)
3886         (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT)
3887         (L_MAX_URL_LENGTH): Define.
3888         (LITEM,LHITTESTINFO,NMLINK): Add structures.
3889         Thanks to:    Brandon Sneed <brandon at redf dot net>
3890
3891 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3892
3893         * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE.
3894
3895 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3896
3897         * include/w32api.h (_W32API_H): Define.
3898         Define in addition to _W32API_H_, this is the w32api standard.
3899
3900 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3901
3902         * include/w32api.h (WindowsVista): Define.
3903
3904 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3905
3906         * include/iptypes.h (IP_ADAPTER_*): Define parts that depend
3907         on SOCKET_ADDRESS only if winsock2.h has already been included.
3908
3909 2006-04-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3910
3911         * include/winuser.h (WM_IME_*): Remove. Defined in imm.h.
3912
3913 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3914
3915         * include/iphlpapi.h (GAA_FLAG_*): Define.
3916         (GetAdaptersAddresses): Add function declaration.
3917         * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub.
3918         Thanks to:    ross <rossboulet at users dot sf dot net>
3919
3920 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3921
3922         * include/iptypes.h (IP_INTERFACE_NAME_INFO,
3923         IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS,
3924         IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS,
3925         IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures.
3926         (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN,
3927         SCOPE_LEVEL): Add enums.
3928         (IP_ADAPTER_*): Define.
3929
3930 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3931
3932         * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h.
3933         Thanks to:    Sergey Philippov <phis at users dot sf dot net>
3934
3935 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3936
3937         * include/objidl.h (PIDSI_*): Define.
3938         (PRSPEC_*): Define.
3939         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
3940
3941 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3942
3943         * include/winbase.h (LOGON32_PROVIDER_WINNT40,
3944         LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK,
3945         LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT,
3946         LOGON32_LOGON_NEW_CREDENTIALS): Define.
3947         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
3948
3949 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3950
3951         * include/mq.h: New file.
3952         * lib/mqrt.def (MQ*): Define a few missing functions.
3953
3954 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3955
3956         * lib/mqrt.def: New file.
3957         Needs the mq.h file to work properly, working on it.
3958         Thanks to:    Pascal Obry <pobry at users dot sf dot net>
3959
3960 2006-04-05  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3961
3962         * include/winerror.h (STG_E_*):  Define.
3963         Thanks to:    Oliver Stoeneberg <kidkat at users dot sf dot net>
3964         * include/winerror.h (STG_S_*): Define.
3965         (CO_S_MACHINENAMENOTFOUND): Define.
3966         (RPC_E_*): Define.
3967         (NTE_*): Define.
3968
3969 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3970
3971         * include/commctrl.h (ListView_*):  Define and correct.
3972         (LVM_*): Define.
3973
3974 2006-04-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3975
3976         * include/winuser.h (WM_IME_*): Define (DWORD type).
3977         (EM_*IMESTATUS): Define.
3978         (WM_*): Define.
3979         (XBUTTON*): Define.
3980         Thanks to:    Steve Folly <spfolly at users dot sf dot net>
3981
3982 2006-03-31  Danny Smith  <dannysmith@users.sourceforge.net>
3983
3984         * include/winnetwk.h (WNetGetResourceInformationW):  Correct first param.
3985         Thanks to: Rene Rivera  <grafik at users dot sf dot net>
3986
3987 2006-03-29  Christopher Faylor  <cgf@timesys.com>
3988
3989         * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper
3990         version conditional.
3991
3992 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
3993
3994         * include/winspool.h (JOB_INFO_3): Add structure.
3995         (PROVIDOR_INFO_*{AW}): Add structure.
3996         * include/winspool.h [_WIN32_WINNT >= 0x0500]
3997         (PRINTER_ENUM_VALUES{AW}): Add structure.
3998         (PRINTPROCESSOR_CAPS): Add structure.
3999
4000 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4001
4002         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4003         (PRINTER_INFO_7A): Correct definition.
4004
4005 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4006
4007         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4008         (DRIVER_INFO_*{AW}): Add structure.
4009         (PRINTER_INFO_*{AW}): Add structure.
4010         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4011
4012 2006-03-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4013
4014         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4015         (DRIVER_*MODE): Define (DWORD type).
4016         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4017
4018 2006-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
4019
4020         * include/wincon.h (GetConsoleProcessList): Declare.
4021
4022 2006-03-27  Hansres Engel  <engel@node.ch>
4023
4024         * include/mlang.h: New file.
4025
4026 2006-03-26  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4027
4028         * include/winbase.h (SetProcessWorkingSetSize): Corrected define.
4029
4030 2006-03-26  Hansres Engel  <engel@node.ch>
4031
4032          Add Uniscribe API for typography and for complex scripts.
4033         * include/usp10.h: New file.
4034         * lib/usp10.def: New file.
4035
4036         * include/winver.h:  Change first argument of GetFileVersionInfo[...] to const.
4037
4038         * include/imm.h (IMECHARPOSITION): Add structure.
4039         (RECONVERTSTRING): Likwise.
4040
4041         * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define.
4042
4043         * lib/uuid.c (CMultiLanguage): Add UUID definition.
4044         (IMLangFontLink2): Likewise.
4045         (IMultiLanguage): Likewise.
4046
4047 2006-03-18  Julien Lecomte  <julienlecomte@users.sourceforge.net>
4048
4049         * include/wincon.h  (ENABLE_*): Add more defines.
4050
4051 2006-03-18  Jan Nijtmans  <nijtmans@users.sourceforge.net>
4052
4053         * include/winnt.h (INHERITED_ACE): Define.
4054         (VALID_INHERIT_FLAGS): Correct definition.
4055
4056 2006-03-18  Peter Ã…strand  <astrand@cendio.se>
4057
4058          * lib/wtsapi32.def: New file.
4059
4060 2006-03-15  Christopher Faylor  <cgf@timesys.com>
4061
4062         * include/winbase.h (STATUS_DLL_INIT_FAILED): New define.
4063         (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto.
4064
4065 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4066
4067         * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type).
4068         (FORM_USER,FORM_PRINTER): Define (DWORD type).
4069         * include/winspool.h [_WIN32_WINNT >= 0x0500]
4070         (DSPRINT_*): Define (DWORD type).
4071         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4072
4073 2006-03-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4074
4075         * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define.
4076         Thanks to:   Roland Schwingel <rolandschwingel at users dot sf dot net>
4077
4078 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4079
4080         * include/shellapi.h [_WIN32_IE >= 0x0600]
4081         (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on
4082         Windows XP SP1 and Windows XP respectively.
4083
4084 2006-03-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4085
4086         * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define.
4087         Thanks to:  Daniel Atallah <datallah at users dot sf dot net>
4088         * include/shellapi.h [_WIN32_IE >= 0x0500]
4089         (NIS_*): Introduced in Version 5.0.
4090
4091 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4092
4093         * include/wingdi.h (CS_*): Correct WINVER guard on
4094         Image Color Matching colour definitions.
4095
4096 2006-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
4097
4098         * include/shlobj.h (SFGAO_ISSLOW): Define.
4099         (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display
4100         attribute constants.
4101
4102 2006-03-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4103
4104         * include/wingdi.h [WINVER >= 0x0500]
4105         (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later.
4106         Thanks to: David A. Capello <dacap at users dot sf dot net>
4107
4108 2006-03-05  Paul J. Lucas  <pauljlucas@users.sourceforge.net>
4109
4110         * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure.
4111         (INTERNET_STATE_*): Define flags.
4112         (INTERNET_OPTION_CONNECTED_STATE): Define constant.
4113
4114 2006-03-05  Chris Wilson  <chris+mingw@qwirx.com>
4115
4116         * include/sddl.h: New file.
4117
4118 2006-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
4119
4120         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert
4121         last change.
4122         Remove file level #pragma pack(push,4)/#pragma pop.
4123
4124 2006-02-19  Corinna Vinschen  <corinna@vinschen.de>
4125
4126         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler
4127         value to force correct alignment.
4128
4129 2006-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
4130
4131         * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling.
4132         Thanks to: Sebastian Pipping <hartwork at users dot sf dot net>
4133         (PNM_CACHEHINT): Add backward compatibilty define.
4134         (LPNM_CACHEHINT): Likewise.
4135
4136 2006-02-06  Danny Smith  <dannysmith@users.sourceforge.net>
4137
4138         * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard.
4139
4140 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4141
4142         * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
4143         PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define.
4144         * lib/shell32.def (PathResolve): Define.
4145
4146 2006-02-06  Christopher Faylor  <cgf@timesys.com>
4147
4148         * include/shlobj.h (PathResolve): Fix typo.
4149
4150 2006-02-06  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4151
4152         * include/shlobj.h (PathResolve): Define.
4153         (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
4154         PRF_DONTFINDLNK): Ditto.
4155         * lib/shell32.def (PathResolve): Define.
4156
4157 2006-02-04  Ron Lee  <ronl@users.sourceforge.net>
4158
4159         * include/winnls.h: Remove stray end ';' from preprocessor defines.
4160
4161 2006-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
4162
4163         * lib/iphlpapi.def: (NotifyAddrChange@8): Define.
4164         Reported by: Daniel Atallah  <datallah at users dot sf dot net>
4165         (NotifyRouteChange@8): Define.
4166
4167 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4168
4169         * include/winsock2.h (WINSOCK_API_LINKAGE): Define.  Add to
4170         prototypes.
4171
4172 2006-01-29  Danny Smith  <dannysmith@users.sourceforge.net>
4173
4174         * include/winnt.h (FORCEINLINE): Define.
4175
4176 2006-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4177
4178         * include/winnt.h (DECLSPEC_SELECTANY): Define.
4179
4180 2006-01-26  Filip Navara  <xnavara@volny.cz>
4181
4182         * include/winnt.h (DECLSPEC_ALIGN): Define.
4183
4184 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4185
4186         * include/commctrl.h: Correct spelling of 'compatibility' in
4187         comments.
4188         * include/setupapi.h: Likewise.
4189         * include/ws2tcpip.h: Likewise.
4190
4191 2006-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
4192
4193         * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel.
4194
4195 2006-01-24  Jiri Malak  <Jiri.Malak@iol.cz>
4196
4197         WATCOM compatibility changes.
4198         * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec,
4199         rather than __attribute__.
4200         (DECL_EXPORT): Likewise.
4201         * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__.
4202         (DDKFASTAPI): Likewise.
4203         (DDKCDECLAPI): Likwise.
4204         (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code.
4205
4206 2006-01-23  Brandon Sneed  <brandon@redf.net>
4207
4208         * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h
4209         to exports.
4210
4211 2006-01-17  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4212
4213         * include/w32api.h: Increment version to 3.6.
4214         * Makefile.in: Ditto.
4215
4216 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4217
4218         * include/wincrypt.h (WINADVAPI): Add to prototypes of
4219         advapi32.dll functions.
4220
4221 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4222
4223         * include/winsock2.h (struct sockaddr_storage):  Use RFC 2553
4224         names for padding size constants.
4225
4226 2006-01-12  Danny Smith  <dannysmith@users.sourceforge.net>
4227
4228         * include/aclapi.h (WINADVAPI): Add to prototypes.
4229         * include/winreg.h (WINADVAPI): Likewise.
4230         * include/winsvc.h (WINADVAPI): Likewise.
4231
4232 2006-01-05  Michael Gerdau  <mgd@technosis.de>
4233
4234         * include/winbase.h (WINADVAPI): Define.
4235
4236 2006-01-03  Christopher Faylor  <cgf@timesys.com>
4237
4238         * include/winuser.h (CreateWindowStation): Correctly identify first
4239         argument as constant.
4240         (CreateWindowStation@): Ditto.
4241
4242 2006-01-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4243
4244         * include/uxtheme.h [_WIN32_WINNT >= 0x0501]
4245         (TMT_*, BT_*): Add constants.
4246
4247 2005-12-31  Corinna Vinschen  <corinna@vinschen.de>
4248
4249         * include/winsock2.h: Don't define struct sockaddr_storage when
4250         building Cygwin.
4251
4252 2005-12-22  Danny Smith  <dannysmith@users.sourceforge.net>
4253
4254         * lib/ws2_32.c: New file, defining IPv6 constants.
4255         * lib/Makefile.in (SOURCES): Add ws2_32.c
4256         (EXTRA_OBJS): Add ws2_32.o.
4257
4258 2005-12-21  Michael Jung  <mjung@iss.tu-darmstadt.de>
4259
4260         * lib/user32.def (PrivateExtractIconsA@32,
4261         PrivateExtractIconsW@32): Define.
4262         * lib/shell32.c (IID_IShellLinkDataList): Add GUID.
4263
4264 2005-12-12  Christopher Faylor  <cgf@timesys.com>
4265
4266         * include/winuser.h (WINSTA_ALL_ACCESS): Define.
4267
4268 2005-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
4269
4270         * lib/kernel32.def (CreateFiberEx): Correct suffix.
4271
4272 2005-12-09  Huw Davies  <hdavies@users.sourceforge.net>
4273             Danny Smith <dannysmith@users.sourceforge.net>
4274
4275         * lib/msxml-uuid.c: New file to generate UUIDs for
4276         MSXML interfaces.
4277         * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o.
4278
4279 2005-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4280
4281         * include/winbase.h (GetDevicePowerState): Add prototype.
4282         * lib/kernel32.def (GetDevicePowerState): Correct suffix.
4283
4284 2005-12-07  Brian Gunlogson  <gmb300@users.sourceforge.net>
4285
4286         * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64.
4287         Define as macro if !_WIN64.
4288         (SetClassLongPtr{AW}): Likewise.
4289         (GCLP_*): Add GetClassLongPtr defines.
4290         * lib/user32.def (GetClassLongPtr{AW}): Remove stubs.
4291         (SetClassLongPtr{AW}): Likewise.
4292
4293 2005-11-18  Brian Gunlogson  <gmb300@users.sourceforge.net>
4294
4295         * include/winuser.h (GetClassLongPtr{AW}): Add prototypes.
4296         (SetClassLongPtr{AW}): Likewise.
4297         (GCLP_*): Add GetClassLongPtr defines.
4298         * lib/user32.def (GetClassLongPtr{AW}): Add stubs.
4299         (SetClassLongPtr{AW}): Likewise.
4300
4301 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4302
4303         * include/commdlg.h (OPENFILENAMEW): Add members for
4304         _WIN32_WINNT >= 0x0500.
4305         Thanks to Ricardo Dalcorsso Fodra.
4306         (OPENFILENAMEA): Modify whitespace. Ansify comment.
4307
4308 2005-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
4309
4310         * include/wingdi.h (GetICMProfileA): Correct prototype.
4311         (GetICMProfileW): Likewise.
4312         Thanks to: Paul J Lucas
4313
4314 2005-11-04  Michael Jung  <mjung@iss.tu-darmstadt.de>
4315
4316         * lib/shell32.c (CLSID_ShellFSFolder): Add GUID.
4317
4318 2005-11-03  Danny Smith  <dannysmith@users.sourceforge.net>
4319
4320         * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData,
4321         CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx,
4322         CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs.
4323         Thanks to: F Richter  <res2002 at users dot sourceforge dot net>
4324
4325 2005-10-29  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4326
4327         * include/objbase.h: Fix typo.
4328         * include/w32api.h: Increment version to 3.5.
4329         * Makefile.in: Ditto.
4330
4331 2005-10-27  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4332
4333         * include/w32api.h: Increment version to 3.4.
4334         * Makefile.in: Ditto.
4335
4336 2005-10-12  Danny Smith  <dannysmith@users.sourceforge.net>
4337
4338         * include/winbase.h (GetProcessId): Remove duplicate declaration.
4339         Use _WIN32_WINNT >= 0x0501 guard.
4340
4341 2005-10-11  Christopher Faylor  <cgf@timesys.com>
4342
4343         * include/winbase.h (GetProcessId): Declare.
4344
4345 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4346
4347         * lib/ddk/newdev.def: Added.
4348         Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net>
4349
4350 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4351
4352         * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500
4353         component.
4354         Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net>
4355
4356 2005-09-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4357
4358         * lib/shell32.def (SHILCreateFromPath): Add stub.
4359         Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de>
4360
4361 2005-09-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4362
4363         * include/winbase.h (RegisterWaitForSingleObject,
4364         RegisterWaitForSingleObjectEx): Define.
4365         * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define.
4366         (RegisterWaitForSingleObject@16): Changed to
4367         RegisterWaitForSingleObject@24.
4368         Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net>
4369
4370 2005-09-19  Danny Smith  <dannysmith@users.sourceforge.net>
4371
4372         * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define.
4373         Thanks to: Gisle Vanem  <giva at bgnett dot no>
4374
4375 2005-09-08  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
4376
4377         * include/reason.h [_WIN32_WINNT >= 0x0501]
4378         (SHTDN_REASON_*): New file.
4379         * include/objbase.h: Avoid double header guard.
4380
4381 2005-08-17  Michael Jung  <mjung@iss.tu-darmstadt.de>
4382
4383         * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel,
4384         CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces,
4385         CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs.
4386
4387 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4388
4389         * include/shlobj.h (IContextMenu3): Define.
4390         * include/shlguid.h (IID_IContextMenu3): Declare.
4391         * lib/shell32.c (IID_IContextMenu3): Define.
4392
4393 2005-08-17  Martin Fuchs  <martin-fuchs@gmx.net>
4394
4395         * include/shlobj.h (SHFormatDrive): Declaration of function
4396         and associated constants.
4397
4398 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4399
4400         * include/ddk/hidsdi.h:  New file.
4401         * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for
4402         functions declared in hidsdi.h.
4403         Thanks to:  Alex J Lennon  <ajlennon at organixconsulting dot com>
4404
4405 2005-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
4406
4407         * lib/imm32.def (ImmDisableIME): Add stub.
4408         Thanks to: "kidmin"  <kidmin at users dot sourceforge dot net>
4409
4410 2005-08-10  Chris Sutcliffe  <ir0nh34d@users.sf.net>
4411
4412         * include/w32api.h: Increment version to 3.3.
4413         * Makefile.in: Ditto.
4414
4415 2005-07-28  Earnie Boyd  <earnie@users.sf.net>
4416
4417         * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN):
4418         Correct their values.
4419         Thanks to: Daniel K. O. <danielosmari at users dont sf dot net>
4420
4421 2005-07-25  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4422
4423         * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define.
4424
4425 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4426
4427         * include/wingdi.h (TT_PRIM_CSPLINE): Define.
4428         Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net>
4429
4430 2005-07-20  Danny Smith  <dannysmith@users.sourceforge.net>
4431
4432         * include/richedit.h (SETTEXTEX): Define structure and
4433         associated constants.
4434         (GT_SELECTION): Define GETTEXTEX flag constant.
4435
4436 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4437
4438         * include/wingdi.h (SYSPAL_NOSTATIC256): Define.
4439
4440 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4441
4442         * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT
4443         if __W32API_USE_DLLIMPORT__.   Use throughout to qualify
4444         prototypes.
4445
4446 2005-07-19  Danny Smith  <dannysmith@users.sourceforge.net>
4447
4448         * include/commctrl.h (RBBS_USECHEVRON): Define.
4449         (RBBS_*): Use hex notation, group together.
4450
4451 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4452
4453         * lib/kernel32.def (GetUserGeoID): Correct suffix.
4454         Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net>
4455
4456 2005-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
4457
4458         * include/commctrl.h (TreeView_SetItemState): Initilise
4459         _tvi.hItem.
4460         Thanks to:  Joseph Remes <jremes at users dot sourceforge dot net>
4461
4462 2005-07-18  Mattia Barbon  <mbarbon@users.sourceforge.net>
4463
4464         * include/commctrl.h (NMLVFINDITEM): Add structure.
4465
4466 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4467
4468         * include/wininet.h (WININET_API_FLAG_*): Add defines.
4469
4470 2005-07-18  Daniel Atallah  <datallah@users.sourceforge.net>
4471
4472         * include/winnt.h (VER_SET_CONDITION): Define.
4473
4474 2005-07-18  Michael Gerdau  <mgdde@users.sourceforge.net>
4475
4476         * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard.
4477         (ATTACH_PARENT_PROCESS): Define.
4478         (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN
4479         documentation.
4480
4481 2005-07-17  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4482
4483         * include/winbase.h (QueueUserWorkItem): Add prototype.
4484
4485 2005-07-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4486
4487         * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA,
4488         SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI,
4489         COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP,
4490         CM_CMYK_COLOR): Define.
4491
4492 2005-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
4493
4494         * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW,
4495         ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR.
4496         Thanks to: Christian  <chhd at users dot sf dot net>
4497
4498 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4499
4500         * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar
4501         field.
4502         Thanks to: Saulius Menkevicius  <bobas at users dot sf dot net>
4503
4504 2005-06-18  Danny Smith  <dannysmith@users.sourceforge.net>
4505
4506         * include/winbase.h (GlobalDiscard): Define as macro.
4507         Thanks to: David Golub  <david_golub  at users dot sf dot net>
4508
4509 2005-05-13  Corinna Vinschen  <corinna@vinschen.de>
4510
4511         * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration.
4512         (WNetGetResourceParentW): Ditto.
4513         * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define.
4514         (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define.
4515
4516 2005-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
4517
4518         * include/wininet.h (FtpGetFileSize): Add prototype.
4519         (FtpCommand[AW]): Correct prototypes.
4520         Reported by: <siger at users dot sf dot net>
4521
4522 2005-04-25  Danny Smith  <dannysmith@users.sourceforge.net>
4523
4524         * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes.
4525         (capGetDriverDescription[AW]): Likewise.
4526
4527 2005-04-03  Corinna Vinschen  <corinna@vinschen.de>
4528
4529         * include/winnt.h (SE_UNDOCK_NAME TEXT): Define.
4530         (SE_MANAGE_VOLUME_NAME TEXT): Ditto.
4531         (SE_IMPERSONATE_NAME TEXT): Ditto.
4532         (SE_ENABLE_DELEGATION_NAME TEXT): Ditto.
4533         (SE_SYNC_AGENT_NAME TEXT): Ditto.
4534
4535 2005-03-16  Christopher Faylor  <cgf@timesys.com>
4536
4537         * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below
4538         change.
4539
4540 2005-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
4541
4542         * include/winnt.h (_LUID): Add structure. Correct LUID typedef.
4543         Thanks to:
4544         Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net>
4545
4546 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
4547
4548         * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo):
4549         Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment.
4550         (gai_strerror[AW]): Put into #if 0 block.
4551
4552 2005-03-07  Danny Smith  <dannysmith@users.sourceforge.net>
4553
4554         * include/basetyps.h (__int16): Correct define.
4555
4556 2005-02-10  Jiri Malak  <Jiri.Malak@iol.cz>
4557             Danny Smith  <dannysmith@users.sourceforge.net>
4558
4559         * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New
4560         define for Open Watcom portability.
4561         * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c,
4562         dinput_mouse.c, dinput_mouse2.c): Use new macro in definition
4563         of local c_rgodfDI* objects. Replace .rdata section attribute
4564         with 'const' keyword in definition of global c_dfDI* objects.
4565
4566 2005-02-07  Danny Smith  <dannysmith@users.sourceforge.net>
4567
4568         * include/winioctl.h (IOCTL_VOLUME_BASE,
4569         IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED):
4570         Copy defines from include/ddk/ntdddvol.h.
4571         Bug reported to Debian by Anand Kumria  <wildfire@progsoc.org>
4572
4573 2005-01-27  Oliver Stoeneberg  <oliverst@online.de>
4574
4575         * include/winbase.h (PWIN32_FIND_DATA): Add typedef.
4576
4577 2005-01-26  Danny Smith  <dannysmith@users.sourceforge.net>
4578
4579         * include/winuser.h (SW_SMOOTHSCROLL): Add define.
4580         Reported by: Christian Ehrlicher  <chehrlic@users.sf.net>
4581
4582 2005-01-21  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4583
4584         * include/commdlg.h (OFN_DONTADDTORECENT): Added definition.
4585
4586 2005-01-18  Danny Smith  <dannysmith@users.sourceforge.net>
4587
4588         * lib/user32.def (MonitorFromPoint): Correct suffix.
4589
4590 2005-01-13  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4591
4592         * include/wininet.h (InternetCheckConnectionA,
4593         InternetCheckConnectionW) Add prototypes.
4594         (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE,
4595         INTERNET_CONNECTION_CONFIGURED): Add defines.
4596
4597 2005-01-07  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4598
4599         * include/commctrl.h (ComboBox_SetMinVisible,
4600         ComboBox_GetMinVisible): Added Macros.
4601         * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE):
4602         Added definitions.
4603
4604 2005-01-02  Jiri Malak  <Jiri.Malak@geac.cz>
4605
4606         * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline
4607         assembly code conditional on _X86_.
4608
4609 2005-01-02  Earnie Boyd  <earnie@users.sf.net>
4610
4611         * include/w32api.h: Increment version to 3.2.
4612         * Makefile.in: Ditto.
4613         * include/afxres.h: Remove the \r from the line ending.
4614         * include/errorrep.h: Ditto.
4615         * include/shldisp.h: Ditto.
4616         * include/tschema.h: Ditto.
4617         * lib/dhcpcsvc.def: Ditto.
4618         * lib/uxtheme.def: Ditto.
4619         * lib/wldap32.def: Ditto.
4620
4621 2005-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
4622
4623         * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):
4624         Correct typo.
4625         Thanks to: Aidan France  <aidan1@users.sourceforge.net>
4626
4627 2004-12-29  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4628
4629         *include/winuser.h (MNS_*, WM_MENUCOMMAND,
4630         WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER,
4631         WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP,
4632         SPI_GETFOREGROUNDLOCKTIMEOUT,
4633         SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions.
4634         *include/imm.h (WM_IME_REQUEST): Added definition.
4635         *include/shlobj.h (SLGP_RAWPATH,
4636         SLGP_UNCPRIORITY): Added definition.
4637
4638 2004-12-28  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4639
4640         *include/winuser.h (HSHELL_FLASH): Added definition.
4641
4642 2004-12-23  Chris Sutcliffe  <ir0nh34d@users.sourceforge.net>
4643
4644         * include/shldisp.h (IAutoComplete): Added interface definiton.
4645         * include/shldisp.h (IAutoComplete2): Added interface definiton.
4646         * include/shldisp.h (ACO_AUTOSUGGEST): Added definition.
4647         * include/shlobj.h (IObjMgr): Added interface definiton.
4648         * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete,
4649         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
4650         CLSID_ACListISF, IID_IACList): Added GUIDs.
4651         * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete,
4652         IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr,
4653         CLSID_ACListISF, IID_IACList): Added GUIDs.
4654
4655 2004-12-23  Danny Smith  <dannysmith@users.sourceforge.net>
4656
4657         * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define.
4658         Thanks to: Chris Sutcliffe  <ironhead@walled.net>
4659         (CDRF_*): Use hex notation for constants.
4660
4661 2004-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
4662
4663         * include/sqlext.h (SQL_INTERVAL_*): Correct macros.
4664         Reported by Eric Sharkey <sharkey at netrics dot com>
4665
4666 2004-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
4667
4668         * include/winnt.h (TOKEN_INFORMATION_CLASS): Add
4669         TokenGroupsAndPrivileges, TokenSessionReference,
4670         TokenSandBoxInert, TokenAuditPolicy, TokenOrigin.
4671         Reformat.
4672         (SID_NAME_USE): Add SidTypeComputer.  Reformat.
4673         Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net>
4674
4675 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
4676
4677         * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect,
4678         ImageList_Duplicate): Add stubs.
4679
4680 2004-12-02  Danny Smith  <dannysmith@users.sourceforge.net>
4681
4682         * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID.
4683         Thanks to "Pete" <pross@xvid.org>
4684
4685 2004-11-21 Benoit Blanchon  <bblanchon@users.sourceforge.net>
4686
4687         * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA,
4688         AC_DST_NO_ALPHA, ...): Add defines.
4689         * include/winuser.h (ULW_COLORKEY,ULW_ALPHA,
4690         ULW_OPAQUE): Add defines.
4691
4692 2004-11-21  Danny Smith  <dannysmith@users.sourceforge.net>
4693
4694         * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT
4695         guard.
4696         * lib/kernel32.def (VerSetConditionMask): Correct stdcall
4697         suffix.
4698         * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise.
4699
4700 2004-11-20  Danny Smith  <dannysmith@users.sourceforge.net>
4701
4702         * include/winbase.h (PPROCESS_INFORMATION): Add typedef.
4703         (CreateProcessWithLogonW): Declare.
4704         (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines.
4705         Thanks to: "jkmaki"  <jkmaki@users.sourceforge.net>
4706
4707 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
4708
4709         * include/sspi.h (SecPkgContext_Sizes): Fix typo.
4710         Thanks to: David Leonard  <leonard@users.sourceforge.net>
4711
4712 2004-11-19  Danny Smith  <dannysmith@users.sourceforge.net>
4713
4714         * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name.
4715         Thanks to: David Leonard  <leonard@users.sourceforge.net>
4716
4717 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
4718
4719         * include/winuser.h (MSLLHOOKSTRUCT): Add structure.
4720
4721 2004-11-19  Magnus Olsen  <greatlord@users.sourceforge.net>
4722
4723         * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP):
4724         Add defines.
4725         (LLKHF_ALTDOWN): Define based on KF_ALTDOWN.
4726
4727 2004-11-19  Benoit Blanchon  <bblanchon@users.sourceforge.net>
4728
4729         * include/shellapi.h (NIF_GUID): Add another define.
4730
4731 2004-11-18  Earnie Boyd  <earnie@users.sf.net>
4732
4733         * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter.
4734         Changed it twice due to inconsistent MSDN documentation.
4735         * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions.
4736
4737 2004-11-13  Danny Smith  <dannysmith@users.sourceforge.net>
4738
4739         * include/shlobj.h (SHGFP_TYPE): Add enum.
4740
4741 2004-11-12  Loïc Guilloux (glx@users.sourceforge.net>
4742
4743         * include/winuser.h (WM_THEMECHANGED): Add define.
4744
4745 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
4746
4747         * include/ddk/winddk.h (ExAllocateFromPagedLookasideList,
4748         ExFreeToPagedLookasideList): Guard inline versions with
4749         (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as
4750         external functions for earlier _WIN32_WINNT.
4751
4752 2004-11-11  Danny Smith  <dannysmith@users.sourceforge.net>
4753
4754         * include/ras.h (RASCONN[AW]): Remove dwSessionId field.
4755
4756 2004-11-09  Danny Smith  <dannysmith@users.sourceforge.net>
4757
4758         * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT
4759         if  undefined and __W32API_USE_DLLIMPORT__.
4760         Add WINBASEAPI token to prototypes, throughout.
4761
4762 2004-11-08  Danny Smith  <dannysmith@users.sourceforge.net>
4763
4764         * include/winnt.h (GetCurrentFiber): Support -masm=intel.
4765         (GetFiberData): Likewise.
4766         (NtCurrentTeb): Likewise.
4767
4768 2004-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
4769
4770         * include/shellapi.h (NIF_INFO): Add define.
4771         (NIIF_*) Add defines..
4772         Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net>
4773         (NIF_*): Convert constants to hex.
4774
4775 2004-11-02  Danny Smith  <dannysmith@users.sourceforge.net>
4776
4777         * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA,
4778         GetGlyphIndicesW): Declare.
4779         (GGI_MARK_NONEXISTING_GLYPHS): Define
4780         * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA,
4781         GetGlyphIndicesW): Add stubs.
4782
4783 2004-10-24  Dan Aloni  <da-x@colinux.org>
4784
4785         * include/ddk/ntapi.h (NtQueryFullAttributesFile,
4786         ZwQueryFullAttributesFile): Declare.
4787         * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U):
4788         Declare.
4789         lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile.
4790         ZwQueryVolumeInformationFile): Add stubs.
4791
4792 2004-10-18  Danny Smith  <dannysmith@users.sourceforge.net>
4793
4794         * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
4795         PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
4796
4797 2004-10-15  Robert Wruck  <wruck@tweerlei.de>
4798             Danny Smith  <dannysmith@users.sourceforge.net>
4799
4800         * include/winbase.h (InitializeSListHead, Interlocked*):
4801         Guard with !__USE_NTOSKRNL__.
4802
4803         * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define.
4804         * include/ddk/winddk.h (InitializeSListHead, Interlocked*):
4805         Guard with  __USE_NTOSKRNL__.
4806         (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList):
4807         Add prototypes.  Guard macro definition with __USE_NTOSKRNL__
4808         && _WIN32_WINNT >= 0x0501
4809         (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList,
4810         ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList):
4811         Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList
4812         with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList.
4813
4814         * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList,
4815         ExInterlockedPushEntrySList)  Add stubs with fastcall decoration.
4816         (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType,
4817         ExWindowStationObjectType, IoAdapterObjectType,
4818         IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType,
4819         IoDeviceObjectType, IoDriverObjectType, IoFileObjectType,
4820         LpcPortObjectType, MmSectionObjectType, SeTokenObjectType):
4821         Uncomment stubs.
4822
4823 2004-10-11  Robert Wruck  <wruck@tweerlei.de>
4824
4825         * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix
4826         definition
4827         (IoReleaseRemoveLock): Add definition.
4828
4829 2004-10-10  Danny Smith  <dannysmith@users.sourceforge.net>
4830
4831         * include/ddk/winnt4.h (Exi386InterlockedDecrementLong,
4832         Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong);
4833         Add prototypes.
4834         * include/winddk.h (ExInterlockedAddUlong,
4835         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
4836         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
4837         ExInterlockedPushEntryList): Change calling convention to
4838         DDKAPI.
4839         (ExfInterlockedAddUlong,ExInterlockedInsertHeadList,
4840         ExInterlockedInsertTailList, ExInterlockedRemoveHeadList,
4841         ExInterlockedPopEntryList, ExInterlockedPushEntryList):
4842         Add prototypes for DDKFASTAPI versions.
4843         Thanks to Vadim Yegor0v <zg at bmg dot lv> for report.
4844         * lib/ntoskrnl.def (ExInterlockedAddUlong,
4845         ExInterlockedInsertHeadList, ExInterlockedInsertTailList,
4846         ExInterlockedRemoveHeadList, ExInterlockedPopEntryList,
4847         ExInterlockedPushEntryList): Remove lead '@' from stubs.
4848         (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList,
4849         ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList,
4850         ExfInterlockedPopEntryList, ExfInterlockedPushEntryList):
4851         Add fastcall stubs.
4852         (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong,
4853         Exi386InterlockedIncrementLong); Add stdcall stubs.
4854
4855 2004-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
4856
4857         * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only
4858          if __W32API_USE_DLLIMPORT__ is defined.
4859         * include/winuser.h (WINUSERAPI): Likewise.
4860
4861 2004-09-29  Filip Navara  <xnavara@volny.cz>
4862
4863         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
4864         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h,
4865         mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h,
4866         newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h,
4867         ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h,
4868         ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h,
4869         ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h,
4870         scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h,
4871         tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h,
4872         usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h,
4873         winnt4.h, ws2san.h): Fixed packing.
4874         * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration.
4875         * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE,
4876         HID_INTERFACE_NOTIFY_PNP): Likewise.
4877         * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise.
4878         (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes
4879         <ayerkes@speakeasy.net>.
4880         * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed
4881         declaration.
4882         * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise.
4883         * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL,
4884         PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL,
4885         PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE,
4886         PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY,
4887         PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE,
4888         PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE,
4889         PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations.
4890         (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION.
4891         (SYNCH_LEVEL): Added definition.
4892         (KPCR, KPCR_TIB): Fixed declaration.
4893         (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't
4894         included and _WIN32_WINNT >= 0x0501.
4895         (RtlEqualLuid): Fixed macro definition.
4896         (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and
4897         KeRaiseIrql on i386 architectures.
4898
4899 2004-09-06  Hosaka Yuji  <hos@tamanegi.org>
4900
4901         * include/mshtml.h (IHTMLDocument2): Correct get_selection
4902         declaration.
4903         (IHTMLSelectionObject): Correct get_type declaration.
4904         (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase,
4905         IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement,
4906         IHTMLBodyElement2): Add interfaces.
4907         (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN,
4908         LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add
4909         typedefs.
4910         * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3):
4911         Add IIDs.
4912
4913 2004-09-05  Earnie Boyd  <earnie@users.sf.net>
4914
4915         * include/w32api.h: Increment version to 3.1.
4916         * Makefile.in: Ditto.
4917
4918 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
4919
4920         * include/winuser.h (MonitorFromPoint, MonitorFromRect,
4921         MonitorFromWindow): Add prototypes.
4922         * lib/user32.def (MonitorFromPoint, MonitorFromRect,
4923         MonitorFromWindowMonitorFromWindow): Add stubs.
4924         * include/shellapi.h (DuplicateIcon): Add prototype.
4925
4926 2004-09-05   Danny Smith  <dannysmith@users.sourceforge.net>
4927
4928         * include/winuser.h (WINUSERAPI): New define.
4929         Use it to mark user32.dll imports, throughout.
4930
4931 2004-09-05  Hosaka Yuji  <hos@tamanegi.org>
4932
4933         * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData,
4934         HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature,
4935         HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport,
4936         HidD_GetManufacturerString, HidD_GetMsGenreDescriptor,
4937         HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor,
4938         HidD_GetPreparsedData, HidD_GetProductString,
4939         HidD_GetSerialNumberString, HidD_SetConfiguration,
4940         HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport,
4941         HidP_GetButtonCaps, HidP_GetValueCaps): Add exports.
4942
4943 2004-08-25  Lars Rune Nøstdal  <daysleper@users.sourceforge.net>
4944
4945         * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE):
4946         Add XP defines.
4947         (PCOORD): Add typedef.
4948         (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes.
4949
4950 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
4951
4952         * include/winldap.h: Don't check value of UNICODE.
4953         Thanks to: "Jean-Do"  <spab@users.sourceforge.net>
4954
4955 2004-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
4956
4957         * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
4958
4959 2004-08-24  Sam Robb  <samrobb@users.sourceforge.net>
4960
4961         * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500
4962         guard.
4963
4964 2004-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
4965
4966         * include/winbase.h: Add WINBASEAPI token to prototypes, throughout.
4967
4968 2004-08-15  Ken Fitlike  <kenfitlike@users.sourceforge.net>
4969
4970         * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses.
4971
4972 2004-08-10  Sebastian Nowak  <snowak1@users.sourceforge.net>
4973
4974         * include/ws2spi.h (LPWSPSELECT): Correct typedef.
4975
4976 2004-08-10   Danny Smith  <dannysmith@users.sourceforge.net>
4977
4978         * include/wincrypt.h: Correct _WIN32_WINNT typo.
4979
4980 2004-08-10  Ed Schaller  <schallee@darkmist.net>
4981
4982         * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W)
4983         (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17)
4984         (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES):
4985         Add defines.
4986         (CALG_SHA1): Add define.
4987         (HP_HMAC_INFO): Add define.
4988         (HMAC_INFO): Add struct.
4989         (BLOBHEADER): Add typedef.
4990
4991 2004-07-26  Hartmut Honisch  <hhonisch@users.sourceforge.net>
4992
4993         * include/commctrl.h (TreeView_SetItemState): Define macro.
4994
4995 2004-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
4996
4997         * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB
4998         macros together.
4999
5000 2004-07-24  Brodie Thiesfield  <brofield@users.sourceforge.net>
5001
5002         * include/shlobj.h (FILEDESCRIPTOR): Unicode it.
5003         (FILEGROUPDESCRIPTOR): LIkewise.
5004
5005 2004-07-06  Corinna Vinschen  <corinna@vinschen.de>
5006
5007         * winbase.h (IsWow64Process): Add missing WINAPI qualifier.
5008
5009 2004-06-16  Danny Smith  <dannysmith@users.sourceforge.net>
5010
5011         * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ...
5012         (IMAGE_ORDINAL_FLAG{32,64}: New defines.
5013         (IMAGE_SNAP_BY_ORDINAL): Map to ...
5014         (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines.
5015         (IMAGE_ORDINAL): Map to ...
5016         (IMAGE_ORDINAL{32,64}: New defines.
5017         (IMAGE_THUNK_DATA):  Map to ...
5018         (IMAGE_THUNK_DATA{32,64}: New structures.
5019         (IMAGE_THUNK_DATA): Map to ...
5020         (IMAGE_THUNK_DATA{32,64}: New structures.
5021         (IMAGE_IMPORT_DESCRIPTOR):  Map to ...
5022         (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures.
5023         (IMAGE_IMAGE_TLS_DIRECTORY)  Map to ...
5024         (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures.
5025
5026 2004-06-16  Bang Jun-Young  <junyoung@NetBSD.org>
5027
5028         * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with
5029         _WIN32_WINNT >= 0x0500.
5030
5031 2004-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
5032
5033         * include/winbase.h (GetWriteWatch): Correct prototype.
5034         (WRITE_WATCH_FLAG_RESET): Define.
5035         Thanks to Sergey Philippov <phis@users.sourceforge.net>.
5036
5037 2004-06-02  Rocher Laurent  <lrocher@users.sourceforge.net>
5038
5039         * include/commctrl.h (Animate_OpenEx): Define.
5040         (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names.
5041         (ListView_GetNumberOfWorkAreas): Correct macro.
5042         (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat,
5043         ListView_SetItemCountEx, ListView_GetISearchString,
5044         TreeView_GetLastVisible, Header_CreateDragImage,
5045         Header_SetImageList, Header_GetImageList): Define.
5046         (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT,
5047         MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT,
5048         TBSTATE_ELLIPSES): Define.
5049         (MonthCal_SetRange): Correct macro.
5050         (ImageList_Duplicate): Declare.
5051
5052 2004-05-29  Filip Navara  <xnavara@volny.cz>
5053
5054         * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration.
5055
5056 2004-05-25  Al Slater  <al.slater@scluk.com>
5057
5058         * include/httpext.h (HSE_SEND_HEADER_EX_INFO,
5059         HSE_REQ_SEND_RESPONSE_HEADER_EX): Define.
5060
5061 2004-05-15  Filip Navara  <xnavara@volny.cz>
5062
5063         * include/ddk/kbdmou.h: New file.
5064         * lib/ddk/videoprt.def (VideoPortMapBankedMemory,
5065         VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix.
5066         * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf,
5067         _vsnwprintf, sprintf, swprintf): Export.
5068
5069 2004-05-15  Filip Navara  <xnavara@volny.cz>
5070
5071         * include/ddk/ntddk.h: Don't set 4-byte alignment on included
5072         headers.
5073
5074 2004-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
5075
5076         * include/wingdi.h: Correct non-unicode typedefs of
5077         ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV.
5078
5079 2004-05-07  Pascal Obry  <obry@act-europe.fr>
5080
5081         * include/winsock.h (IN_CLASSA): Fix macro.
5082         * include/winsock2.h (IN_CLASSA): Fix macro.
5083
5084 2004-04-29  Bart Oldeman  <bartoldeman@users.sourceforge.net>
5085
5086         * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type.
5087         * include/aclui.h: Remove '\r', throughout.
5088         * include/msacm.h: Likewise.
5089         * lib/aclui.def: Likewise.
5090
5091 2004-04-28  Luke Dunstan  <infidel@users.sourceforge.net>
5092
5093         * lib/comctl32.def (SetWindowSubclass): Add stub.
5094         Thanks to Eugene <egladysh@users.sourceforge.net>.
5095
5096 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5097
5098         * include/winbase.h (EXECUTION_STATE): Add typedef.
5099         (SetThreadExecutionState): Declare.
5100         * include/wingdi.h (_WINGDI_): Define.
5101         * include/objbase.h (_OBJBASE_H_): Define.
5102
5103 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5104
5105         * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER,
5106         SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines.
5107         (SM_CMETRICS): Adjust value.
5108         * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define.
5109         (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64):
5110         Add defines.
5111         Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net>
5112
5113 2004-04-24  Justin Forest  <vhex@users.sourceforge.net>
5114
5115         * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS,
5116         LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME,
5117         LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT,
5118         LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES,
5119         LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE,
5120         LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines.
5121
5122 2004-04-24  Luke Dunstan  <infidel@users.sourceforge.net>
5123
5124         * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY,
5125         DNSREC_ADDITIONAL): Add defines.
5126
5127 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5128
5129         * include/commctrl.h (LPNMLVDISPINFO): Add defines.
5130
5131 2004-04-23  Robert Wruck  <wruck@tweerlei.de>
5132
5133         * include/aclui.h: New file.
5134         * lib/aclui.def: New file.
5135         * lib/test.c: Add aclui.h to includes.
5136
5137 2004-04-21  Danny Smith  <dannysmith@users.sourceforge.net>
5138
5139         * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING,
5140         SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING,
5141         SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines.
5142
5143 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5144
5145         * include/wingdi.h: Protect non-unicode case of below.
5146
5147 2004-04-20  Christopher Faylor  <cgf@alum.bu.edu>
5148
5149         * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV,
5150         LPENUMLOGFONTEXDV with appropriate version check.
5151
5152 2004-04-18  Hans Leidekker  <hans@it.vu.nl>
5153
5154         * lib/directx/dxguid.c (CLSID_DirectSoundPrivate,
5155         DSPROPSETID_DirectSoundDevice): Add defines.
5156
5157 2004-04-20  Adrian Sandor  <aditsu@users.sourceforge.net>
5158
5159         * include/msacm.h: New file.
5160
5161 2004-01-09  Stuart Cunningham  <stuart_hc@users.sourceforge.net>
5162
5163         * include/objbase.h (STGFMT): Declare enum.
5164         (STGOPTIONS): Declare structure.
5165         (StgCreateStorageEx, StgOpenStorageEx): Declare.
5166         (STGOPTIONS_VERSION): Define.
5167         * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs.
5168
5169 2004-04-13  Filip Navara  <xnavara@volny.cz>
5170
5171         * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE,
5172         WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK,
5173         WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK,
5174         DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2,
5175         HELP_SETWINPOS): Define.
5176         (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500.
5177         (SPI_*): Add new definitions for WINVER >= 0x500.
5178         (CallMsgFilter[AW], SetWindowsHookA): Correct prototype.
5179         (InternalGetWindowText, SetWindowsHookW): Declare.
5180         * include/winbase.h (InitializeSListHead): Avoid conflicting
5181         definition with DDK headers.
5182
5183 2004-04-13  Gé van Geldorp  <gvg@reactos.com>
5184
5185         * include/winuser.h (GetLastError): Move from here...
5186         * include/winbase.h: ... to here.
5187
5188 2004-04-13  Filip Navara  <xnavara@volny.cz>
5189
5190         * include/winspool.h (DocumentPropertiesW): Correct prototype.
5191
5192 2004-04-13  Filip Navara  <xnavara@volny.cz>
5193
5194         * include/wingdi.h (ENHMETAHEADER): Add definitions for
5195         WINVER >= 0x400.
5196         (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare.
5197         (ENUMLOGFONTEXW): Fix definition.
5198         (ENUMLOGFONTEXDV[AW]): Declare.
5199
5200 2004-04-13  Filip Navara  <xnavara@volny.cz>
5201
5202         * include/wingdi.h: Declare the DirectDraw structures only if
5203         the DirectDraw kernel mode headers aren't included.
5204         (EMFINFO): Declare.
5205         (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs,
5206         STROBJ_bEnumPositionsOnly): Correct prototypes.
5207
5208 2004-04-13  Filip Navara  <xnavara@volny.cz>
5209
5210         * include/objidl.h (PRPCOLEMESSAGE): Declare.
5211         * include/rpc.h (RPCRTAPI): Define.
5212         * include/rpcdce.h (RpcServerRegisterIf2): Declare.
5213         * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare.
5214         (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN.
5215         (I_RpcBindingSetAsync): Correct prototype.
5216         * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field
5217         to w2kReserved.
5218         (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE,
5219         USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE,
5220         USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT,
5221         CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE,
5222         CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE,
5223         CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES,
5224         NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall,
5225         NdrUserMarshalBufferSize, NdrUserMarshalMemorySize,
5226         NdrUserMarshalFree): Declare.
5227         (MIDL_STUB_DESC): Add new fields that were added in W2K.
5228         * include/rpcproxy.h (CStdStubBuffer): Ditto.
5229
5230 2004-04-13  Filip Navara  <xnavara@volny.cz>, David Welch  <welch@cwcom.net>
5231
5232         * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread,
5233         LPC_MESSAGE_BASE_SIZE): Define.
5234         * include/ddk/ntifs.h: Move the pack pragma under header inclusion.
5235
5236 2004-04-13  Filip Navara  <xnavara@volny.cz>
5237
5238         * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]):
5239         Declare.
5240
5241 2004-04-18  Allan Bazinet  <bazineta@users.sourceforge.net>
5242
5243         * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from
5244         MONITORINFO when compiling as C++.
5245
5246 2004-04-17  Luke Dunstan  <infidel@users.sourceforge.net>
5247
5248         * README.w32api: List separate copyright conditions for some headers.
5249         * include/(winsock2.h, wsipx.h): Minor change to copyright header.
5250
5251 2004-04-15  Danny Smith  <dannysmith@users.sourceforge.net>
5252
5253         * include/wingdi.h (RGB): Correct macro.
5254
5255 2004-04-14  Robert Wruck  <rwruck@users.sourceforge.net>
5256
5257         * include/ddk/winddk.h (RtlEqualLuid): Correct macro.
5258
5259 2004-04-06  Luke Dunstan  <infidel@users.sourceforge.net>
5260
5261         * include/ocidl.h (QACONTAINERFLAGS): Correct typedef.
5262
5263 2004-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
5264
5265         * lib/Makefile.in: Add directx to .PHONY target.
5266         * lib/directx/dxerr.c: Remove dependence on mingw runtime.
5267         Don't include stdio.h or tchar.h.
5268         Replace _T() macro with TEXT() macro, throughout.
5269         Replace _stprintf with wsprintf, throughout.
5270
5271 2004-03-27  Hosaka Yuji  <hos@tamanegi.org>
5272
5273         * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE):
5274         Add define.
5275         (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct.
5276         * include/winuser.h (UnregisterDeviceNotification): Add prototype.
5277         * lib/user32.def (UnregisterDeviceNotification): Add export stub.
5278
5279 2004-03-27  Filip Navara  <xnavara@volny.cz>
5280
5281         * include/directx: New subdir.
5282         * lib/directx: Ditto.
5283         * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h,
5284         dxerr9.h): New files.
5285         * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def,
5286         d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def,
5287         dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c,
5288         dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def,
5289         dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def,
5290         dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c,
5291         dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def,
5292         strmiids.c, test.c): Ditto.
5293         * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c,
5294         dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed.
5295
5296 2004-03-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5297
5298         * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING,
5299         GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE,
5300         GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define.
5301
5302 2004-03-24  Filip Navara  <xnavara@volny.cz>
5303
5304         * include/commctrl.h (TB_GETSTRING[AW]): Add defines.
5305         (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto.
5306
5307 2004-03-24  Filip Navara  <xnavara@volny.cz>
5308
5309         * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION):  Rename
5310         TaggedQueueing to TaggedQueuing.
5311         (_HW_INITIALIZATION_DATA): Likewise.
5312
5313 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5314
5315         * include/docobj.h (IOleDocumentView::GetDocument): Correct
5316         prototype.
5317         Thanks to Buster Copley  <consequent@users.sourceforge.net>
5318
5319 2004-03-16  Danny Smith  <dannysmith@users.sourceforge.net>
5320
5321         * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix.
5322         (MmMapIoSpace): Likewise.
5323         Thanks to Dan Aloni  <da-x@colinux.org>
5324
5325 2004-03-16  Martin Fuchs  <martin-fuchs@gmx.net>
5326
5327         * include/shellapi.h (NIM_* NIS_*): Define constants for
5328         notification icons with _WIN32_IE >= 0x0500.
5329         (NOTIFYICONDATA): Add new structure members for notification
5330         icons with _WIN32_IE >= 0x0500.
5331
5332 2004-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
5333
5334         *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL):
5335         Add defines.
5336         (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines.
5337         (GROUPID) Add typedef.
5338         (INTERNET_CACHE_GROUP_INFO[AW]): Define structures.
5339         (CreateUrlCacheGroup): Add prototype.
5340         (DeleteUrlCacheGroup): Add prototype.
5341         (FindFirstUrlCacheGroup): Add prototype.
5342         (FindNextUrlCacheGroup): Add prototype.
5343         (GetUrlCacheGroupAttribute[AW]): Add prototypes.
5344         (SetUrlCacheGroupAttribute[AW]): Add prototypes.
5345
5346 2004-03-10  Al Slater  <al.slater@scluk.com>
5347
5348         * include/winsock2.h: Add missing LPFN_ typdefs for
5349         function pointers.
5350         Clean up whitespace.
5351
5352 2004-03-05  Filip Navara  <xnavara@volny.cz>
5353
5354         * include/ddk/scsi.h: Replace assert with ASSERT.
5355         * include/ddk/video.h: Ditto.
5356         * include/ddk/winddk.h: Ditto. Remove the assert macro.
5357         * include/ddk/tdi.h: Correct packing.
5358
5359 2004-03-04  Danny Smith  <dannysmith@users.sourceforge.net>
5360
5361         * include/wtypes.h (DECIMAL_SETZERO): Add definition for
5362         NONAMELESSUNION case.
5363
5364 2004-03-03  Martin Fuchs  <martin-fuchs@gmx.net>
5365
5366         * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use
5367         __VARIANT_NAME_ constants.
5368
5369 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5370
5371         * include/uxtheme.h: Include <commctrl.h>
5372
5373 2004-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
5374
5375         * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95.
5376
5377 2004-03-02  Martin Fuchs  <martin-fuchs@gmx.net>
5378
5379         * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE,
5380         VAR_FOURDIGITYEARS): Define new constants. Group VAR_*  defines
5381         together.
5382         (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros.
5383         (V_I8, V_I8REF): Correct macros.
5384         (V_DECIMAL): Correct macro definitions.
5385         (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define
5386         constants.
5387         (VTBIT_*): Define constants.
5388         (UDATE): Add structure definition.
5389         (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare
5390         functions.
5391         (SafeArrayCreateVector): Correct parameter type from UINT to ULONG
5392         (SafeArrayCreateVectorEx): Declare function.
5393         (Var*): declare VARIANT manipulation functions.
5394         * include/ocidl.h (IPicture_*): Define IPicture COBJ macros.
5395         * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ
5396         macros.
5397
5398 2004-03-01  Martin Fuchs  <martin-fuchs@gmx.net>
5399
5400         * include/oaidl.h (FADF_*): Define missing constants.
5401         (IDispatch_*): Define COBJ macros.
5402         (VARIANT): Add missing union members llVal and ullVal.
5403         (wireVARIANT): Likewise.
5404         (ITypeinfo_*): Define COBJ macros.
5405         * include/oleauto.h (Var*FromDisp): Correct parameter type from
5406         LPDISPATCH* to LPDISPATCH.
5407         (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*,
5408         VAR_CALENDAR_*): Add missing constants.
5409         (SafeArray[Get/Set]*): Add prototypes.
5410         (Var*From*):  Add missing prototypes.
5411         (NUMPRS_*): Add defines.
5412         (NUMPARSE): Define structure.
5413         (VarParseNumFromStr,VarNumFromParseNum): Add prototypes.
5414         * include/winerror.h (DISP_E_DIVBYZERO): Define constant.
5415         * include/winuser.h (COLOR_*): Define missing constants.
5416         * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR.
5417         (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions.
5418
5419 2004-02-23  Filip Navara  <xnavara@volny.cz>
5420
5421         * include/ddk/video.h: Corrected packing.
5422
5423 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5424
5425         * include/GL/glu.h (GLU_ERROR): Define.
5426         Thanks to Philip Lamb  <phil at rave dot co dot nz>
5427
5428 2004-02-19  Danny Smith  <dannysmith@users.sourceforge.net>
5429
5430         * include/GL/glu.h: Include <stddef.h>.
5431         Thanks to Greg Couch <gregcouch@users.sourceforge.net>
5432
5433 2004-02-15  Earnie Boyd  <earnie@users.sf.net>
5434
5435         * include/w32api.h: Increment version to 3.0.
5436         * Makefile.in: Ditto.
5437         * README.win32api: Modify license to Public Domain per agreement as
5438         found in the mingw-dvlpr list archive.
5439
5440 2004-02-13  Earnie Boyd  <earnie@users.sourceforge.net>
5441
5442         * include/ddk/winddk.h (DIRECTORY_QUERY): Add define.
5443         (DIRECTORY_TRAVERSE): Ditto.
5444         (DIRECTORY_CREATE_OBJECT): Ditto.
5445         (DIRECTORY_CREATE_SUBDIRECTORY): Ditto.
5446         (DIRECTORY_ALL_ACCESS): Ditto.
5447         Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net>
5448
5449 2004-02-12  Danny Smith  <dannysmith@users.sourceforge.net>
5450
5451         * include/basetypes.h (_REFIID_DEFINED): Correct typo.
5452
5453         * include/winuser.h (NCCALCSIZE_PARAMS): Define structure.
5454         Thanks to Mike Nordell <tamlin at algonet dot se>.
5455
5456 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5457
5458         * lib/dnsapi.def: New file.
5459         * lib/test.c: Include windns.h.
5460
5461 2004-02-11  Pierre A. Humblet  <Pierre.Humblet@ieee.org>
5462
5463         * include/windns.h: New file.
5464
5465 2004-02-11  Danny Smith  <dannysmith@users.sourceforge.net>
5466
5467         * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate
5468         defines.
5469         (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block.
5470         (SQLSetDescFieldW): Correct prototype.
5471         (SQLSetDescFieldA): Add prototype.
5472         (SQLGetDescFieldW): Add prototype.
5473
5474 2004-02-11  Pat Thoyts  <patthoyts@users.sourceforge.net>
5475
5476         * include/winuser.h (DFC_POPUPMENU): Add define.
5477
5478 2004-02-07  Dan Aloni  <da-x@gmx.net>
5479
5480         * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct
5481         suffix.
5482
5483 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5484
5485         * include/oleacc.h (LIBID_Accessibility): Declare.
5486         * lib/uuid.c (LIBID_Accessibility): Define.
5487
5488 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5489
5490         * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure.
5491         (FSCTL_GET_NTFS_VOLUME_DATA): Add macro.
5492
5493 2004-02-02  Danny Smith  <dannysmith@users.sourceforge.net>
5494
5495         * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add
5496         defines.
5497
5498 2004-01-31  Jiri Malak  <Jiri.Malak@geac.cz>
5499
5500         * include/winuser.h (RT_MANIFEST): Make conditional on
5501         RC_INVOKED.
5502         (CREATEPROCESS_MANIFEST_RESOURCE_ID,
5503         ISOLATIONAWARE_MANIFEST_RESOURCE_ID,
5504         ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add
5505         defines.
5506
5507 2004-01-16 Martin Fuchs  <martin-fuchs@gmx.net>
5508
5509         * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define.
5510
5511 2004-01-15  Filip Navara  <xnavara@volny.cz>
5512
5513         * include/ddk/mcd.h: Don't care about value of DBG define.
5514         * include/ddk/srb.h: Ditto.
5515         * include/ddk/storport.h: Ditto.
5516         * include/ddk/video.h: Ditto.
5517         * include/nspapi.h (SetServiceW, GetAddressByNameA,
5518         GetAddressByNameW): Correct protoype.
5519         * include/ntsecapi.h (PCUNICODE_STRING): Define.
5520
5521 2004-01-05  Filip Navara  <xnavara@volny.cz>
5522
5523         * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition.
5524         * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype.
5525         * include/cpl.h (CPL_STARTWPARMS[AW]): Correct.
5526         * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP,
5527         SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR,
5528         FOF_NOCOPYSECURITYATTRIBS): Add defines.
5529         * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED,
5530         CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK,
5531         CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR,
5532         SSF_*): Add defines.
5533         (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW],
5534         CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL,
5535         CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]):
5536         Correct.
5537         (IEnumIDList): Add COBJMACROS.
5538         * include/winuser.h (MIM_*): Add define.
5539
5540 2004-01-04  Filip Navara  <xnavara@volny.cz>
5541
5542         * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3,
5543         IID_IShellFolder2, IID_IFileSystemBindData): Add declarations.
5544         * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS,
5545         PERSIST_FOLDER_TARGET_INFO): Define structures.
5546         (IEnumExtraSearch, IShellFolder2, IFileSystemBindData,
5547         IPersistFolder2, IPersistFolder3): Add COM interface
5548         definitions.
5549         (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView,
5550         ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3):
5551         Add COBJMACROS.
5552         (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes.
5553         * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3,
5554         IID_IShellFolder2, IID_IFileSystemBindData): Add definitions.
5555
5556 2004-01-03  Danny Smith  <dannysmith@users.sourceforge.net>
5557
5558         * include/mshtml.h (IHTMLDocument2): Correct write, writeln
5559         declarations.
5560         Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>.
5561
5562 2004-01-03  Filip Navara  <xnavara@volny.cz>
5563
5564         * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID.
5565         * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces,
5566         declare IID's.
5567         (IErrorInfo): Add COBJMACROS.
5568         * include/objbase.h (STGM_NOSNAPSHOT): Add define.
5569         (CoGetPSClsid): Add protototype,
5570         (CoRegisterPSClsid): Likewise.
5571         * include/objidl.h (IMarshal): Correct methods.
5572         (IMallocSpy): Likewise,
5573         (LPPSFACTORYBUFFER): Add typedef.
5574         (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare
5575         IID.
5576         (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros.
5577         * include/ocidl.h (PROPBAG2_TYPE): Define enum.
5578         (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define
5579         structures.
5580         (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive,
5581         IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager,
5582         IQuickActivate): Define interfaces. Declare IID's.
5583         (IPersistPropertyBag2): Add COBJMACROS.
5584         (LPOLEUNDOMANAGER): Add typedef.
5585         (LPPROPERTYBAG2): Likewise.
5586         * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton.
5587         (BINDSPEED): Add definition.
5588         (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource,
5589         IDropTarget): Add COBJMACROS.
5590         * include/wtypes.h (MEMCTX, MSHCTX): Fix enum.
5591         * include/winerror.h (CO_S_NOTALLINTERFACES): Add define.
5592         * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager,
5593         IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer):
5594         Add IID definitions.
5595
5596 2004-01-02  Filip Navara  <xnavara@volny.cz>
5597
5598         * include/ddk/winddk.h: Don't care about value of
5599         DBG define.
5600
5601 2004-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
5602             Filip Navara  <xnavara@volny.cz>
5603
5604         * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER,
5605         _DDK_DUMMYUNION_N_MEMBER): New macros.
5606         (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList,
5607         ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList):
5608         Use them.
5609
5610 2004-01-01  Filip Navara  <xnavara@volny.cz>
5611
5612         * include/objbase.h: Don't care about value of DBG define.
5613         * include/objidl.h: Add some COBJMACROS.
5614         * include/ocidl.h: Ditto.
5615         * include/oleidl.h: Ditto.
5616         * include/servprov.h: Ditto.
5617         * include/shlobj.h: Ditto.
5618         * include/shlobj.h (IContextMenu2): Correct parent in
5619         DECLARE_INTERFACE.
5620         * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl):
5621         Define interfaces.
5622         * include/setupapi.h (SetupGetLineTextA): Correct prototype.
5623         Add new constants for _SETUPAPI_VER >= 0x501.
5624
5625 2004-01-01  Filip Navara  <xnavara@volny.cz>
5626
5627         * include/winnt.h (NtCurrentTeb): Add inline definition.
5628
5629 2004-01-01  Martin Fuchs  <martin-fuchs@gmx.net>
5630
5631         * include/shlobj.h (SHCoCreateInstance): Add prototype.
5632         * lib/shell32.def (SHCoCreateInstance): Add export stub.
5633
5634 2004-01-01  Igor Pechtchanski  <pechtcha@cs.nyu.edu>
5635
5636         * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export.
5637         (CM_Request_Device_Eject_Ex[AW]): Likwise.
5638         * include/ddk/cfg.h (DN_*): Add defines.
5639
5640 2004-01-01  Danny Smith  <dannysmith@users.sourceforge.net>
5641
5642         * lib/ddk/cfgmgr32.def: Remove duplicate symbol names.
5643
5644 2004-01-01  Mattia Barbon  <mbarbon@users.sourceforge.net>
5645
5646         * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings.
5647         (NMTVGETINFOTIP): Add structure.
5648
5649 2003-12-08  Danny Smith  <dannysmith@users.sourceforge.net>
5650
5651         * include/winuser.h (DISPLAY_DEVICE_*): Remove defines.
5652         * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE,
5653         DISPLAY_DEVICE_MODESPRUNED): Add defines.
5654
5655 2003-12-08  Hartmut Honisch  <hhonisch@users.sourceforge.net>
5656
5657         * include/commctrl.h (ListView_Get_State, ListView_Check_State):
5658         Add macros.
5659         * include/wingdi.h  (DISPLAY_DEVICE_*): Add multi-monitor
5660         constants.
5661         * include/shlobj.h (SHCOLUMNINIT): Add structure.
5662         (SHCOLUMNDAT): Likwise.
5663         (SHCOLUMNID): Likewise.
5664         (SHCOLUMNINFO): Likewise.
5665         (SHCOLSTATE): Add enum.
5666         (IColumnProvider): Add COM interface.
5667         (IQueryInfo): Likewise.
5668         (IShellIconOverlayIdentifier): Likewise.
5669         * include/shlguid.h (IID_IColumnProvider) Declare.
5670         (IID_IQueryInfo): Likweise.
5671         (IID_IShellIconOverlayIdentifier): Likwise.
5672         * lib/shell32.c (IID_IColumnProvider) Define.
5673         (IID_IQueryInfo): Likweise.
5674         (IID_IShellIconOverlayIdentifier): Likwise.
5675
5676 2003-12-08  Roald Ribe  <rrib@users.sourceforge.net>
5677
5678         * include/winuser.h (RT_MANIFEST): Add define.
5679
5680 2003-12-08  Pascal Buhler  <pbuhler@users.sourceforge.net>
5681
5682         * include/oleidl.h (IViewObject2): Inherit from IViewObject.
5683
5684 2003-12-01  Danny Smith  <dannysmith@users.sourceforge.net>
5685
5686         * include/winnt.h (GetCurrentFiber): Remove duplicate prototype.
5687         (GetFiberData): Likewise.
5688         (GetCurrentFiber): Change volatile to __volatile__.
5689         (GetFiberData): Likewise.
5690
5691 2003-11-27  Christopher Faylor  <cgf@redhat.com>
5692
5693         * lib/Makefile.in: Use make function to locate .mri file to allow
5694         building in directory other than source directory.
5695
5696 2003-11-27  Danny Smith  <dannysmith@users.sourceforge.net>
5697
5698         * lib/vfw32.def: Remove, replacing with ...
5699         * lib/msvfw32.def: New file.
5700         * lib/avicap32.def: New file.
5701         * lib/avifil32.def: New file.
5702         * lib/vfw32.mri: New file.
5703         * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for
5704         import libs with multiple dll's.
5705         (LIBS): Add MIMPLIBS.
5706         (DISTFILES): Add MRI_FILES.
5707         (libvfw32.a): Build using mri script.
5708
5709 2003-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
5710
5711         * include/winnt.h (PAGE_*): Group defines together. Change
5712         constants to hex notation.
5713
5714 2003-11-15  Manu B  <manubee@users.sourceforge.net>
5715
5716         * include/commctrl.h (TabCtrl_GetImageList): Add macro.
5717
5718 2003-11-13 Martin Fuchs  <martin-fuchs@gmx.net>
5719
5720         * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine,
5721         ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual,
5722         ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream):
5723         Add prototypes.
5724         * lib/shell32.def: Add stubs.
5725
5726         * include/commctrl.h (ListView_FindItem): Add type cast to avoid
5727         compiler warnings.
5728
5729 2003-11-13  Hans Leidekker  <hans@it.vu.nl>
5730
5731         * include/winbase.h (WIN32_STREAM_ID): Correct typedef.
5732
5733 2003-10-13  Andre Auzi  <aauzi@users.sourceforge.net>
5734
5735         * include/windows.h (CopyCursor): Define as macro.
5736
5737 2003-10-13  Steven Edwards  <Steven_Ed4153@yahoo.com>
5738
5739         * include/winnt.h (CONTAINING_RECORD): Add macro.
5740
5741 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
5742
5743         * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED,
5744         FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove
5745         defines.
5746
5747 2003-10-13  Filip Navara  <xnavara@volny.cz>
5748
5749         * include/commctrl.h (DSA_*): Add prototypes, typedefs and
5750         defines for Dynamic Storage Arrays.
5751         (DPA_*): Likewise, for Dynamic Pointer Arrays.
5752         (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes
5753         and defines for Flat ScrollBars.
5754         (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass,
5755         DefSubclassProc): Add prototypes for subclassing.
5756         (DrawShadowText): Add prototype.
5757         (COMCTL32_VERSION): Define.
5758
5759 2003-10-13  Martin Fuchs  <Martin-Fuchs@gmx.net>
5760
5761         * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR,
5762         CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions.
5763
5764 2003-10-13  Pierre Humblet  <pierre.humblet@ieee.org>
5765
5766         * include/winnt.h (SM_REMOTESESSION): Add define.
5767         * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto.
5768
5769 2003-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
5770
5771         * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE,
5772         KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove
5773         duplicate definitions.
5774         (KP_X, KP_Y): Correct typos.
5775
5776 2003-10-11  Manu B  <manubee@users.sourceforge.net>
5777
5778         * include/afxres.h: New file.
5779
5780         * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE,
5781         ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS,
5782         ENM_SCROLLEVENTS): Add constants.
5783
5784         * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants.
5785
5786 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5787
5788         * include/errorep.h: New file.
5789
5790         * lib/faultrep.def: New file.
5791
5792 2003-10-09  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5793
5794         * include/winbase.h (AddVectoredExceptionHandler): Define if
5795         _WIN32_WINNT >= 0x0500.
5796
5797         * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if
5798         _WIN32_WINNT >= 0x0500.
5799
5800 2003-10-08  Corinna Vinschen  <corinna@vinschen.de>
5801
5802         * include/winbase.h (AddVectoredExceptionHandler): Only define if
5803         _WIN32_WINNT >= 0x0501.
5804
5805 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5806
5807         * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW],
5808         UnregisterWaitEx): Add functions.
5809
5810         * include/winbase.h [_WIN32_WINNT >= 0x0500]
5811         (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add
5812         or guard function. The MSDN says it is available on Windows XP and
5813         better, and then it says it is declared for _WIN32_WINNT >= 0x0500.
5814         Huh?
5815
5816         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx,
5817         CreateActCtx[AW], SetFileShortName[AW], SetFileValidData,
5818         ZombifyActCtx, QueryActCtxW): Add functions.
5819
5820         * include/winbase.h [_WIN32_WINNT >= 0x0501]
5821         (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX,
5822         QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE,
5823         QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants.
5824
5825         * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW],
5826         SetFirmwareEnvironmentVariable[AW]): Add functions.
5827
5828         * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER,
5829         VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID,
5830         VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME,
5831         VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL,
5832         VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants.
5833
5834         * include/winnt.h [_WIN32_WINNT >= 0x0501]
5835         (PVECTORED_EXCEPTION_HANDLER): Add callback.
5836
5837         * include/winnt.h [_WIN32_WINNT >= 0x0501]
5838         (ACTIVATION_CONTEXT_INFO_CLASS,
5839         ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION,
5840         ACTIVATION_CONTEXT_DETAILED_INFORMATION,
5841         ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION):
5842         Add structures.
5843
5844         * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler,
5845         CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW],
5846         SetFileShortName[AW], SetFileValidData,
5847         SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx,
5848         VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions.
5849
5850 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5851
5852         * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic,
5853         ResetWriteWatch): Add function.
5854
5855         * include/winbase.h [_WIN32_WINNT >= 0x0500]
5856         (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]):
5857         Add functions.
5858
5859         * include/winbase.h [_WIN32_WINNT >= 0x0501]
5860         (GetSystemWow64Directory[AW], HeapQueryInformation,
5861         HeapSetInformation, InitializeSListHead, InterlockedFlushSList,
5862         InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob,
5863         IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx,
5864         RemoveVectoredExceptionHandler): Add functions.
5865
5866         * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS):
5867         Add enumeration.
5868
5869         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag):
5870         Add function.
5871
5872         * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError):
5873         Add function. The MSDN Magazine of June 2003 reads:
5874                 RestoreLastError is an enigma. It's code is identical to
5875                 SetLastError. It's unclear to me why it was made into a
5876                 separate API.
5877
5878         * lib/user32.def (GetSystemWindowsDirectory[AW],
5879         GetSystemWow64Directory[AW], GetThreadIOPendingFlag,
5880         HeapQueryInformation, HeapSetInformation, InitializeSListHead,
5881         InterlockedFlushSList, InterlockedPopEntrySList,
5882         InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process,
5883         ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx,
5884         RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch,
5885         RestoreLastError): Add functions.
5886
5887 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5888
5889         * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW],
5890         GetProcessIoCounters): Add functions.
5891
5892         * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT):
5893         Move around, needed by GetComputerNameEx.
5894
5895         * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid,
5896         FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo):
5897         Add functions.
5898
5899         * include/winbase.h [_WIN32_WINNT >= 0x0501]
5900         (ACTCTX_SECTION_KEYED_DATA): Add structure.
5901
5902         * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW],
5903         GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount,
5904         GetProcessId, GetSystemRegistryQuota): Add functions, available on
5905         Windows XP SP1 and better.
5906
5907         * include/winnt.h [_WIN32_WINNT >= 0x0501]
5908         (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION,
5909         ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION,
5910         ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION,
5911         ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION,
5912         ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION,
5913         ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION,
5914         ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION,
5915         ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants.
5916
5917         * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW],
5918         GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW],
5919         GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW],
5920         GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters):
5921         Add functions.
5922
5923 2003-10-07  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5924
5925         * include/winbase.h [_WIN32_WINNT >= 0x0501]
5926         (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess,
5927         DebugSetProcessKillOnExit): Add functions.
5928
5929         * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue,
5930         DeleteTimerQueueEx, DeleteTimerQueueTimer,
5931         DnsHostnameToComputerName[AW]): Add functions.
5932
5933         * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop,
5934         DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx,
5935         DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions.
5936
5937 2003-10-07  Kobun Fujimori  <kobun@users.sourceforge.net>
5938
5939         * include/winbase.h (GetVolumePathNamesForVolumeName): Available
5940         on Windows XP and later.
5941
5942 2003-10-07  Manu B  <manubee@users.sourceforge.net>
5943
5944         * include/commctrl.h (TreeView_Select): Returns BOOL.
5945
5946 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5947
5948         * include/winbase.h (CancelDeviceWakeupRequest): Add function.
5949
5950         * include/winbase.h [_WIN32_WINNT >= 0x0501]
5951         (CreateMemoryResourceNotification, DeactivateActCtx): Add functions.
5952
5953         * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue,
5954         CreateTimerQueueTimer): Add function.
5955
5956         * include/winbase.h [_WIN32_WINNT >= 0x0501]
5957         (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration.
5958
5959         * include/winbase.h [_WIN32_WINNT >= 0x0501]
5960         (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant.
5961
5962         * include/winnt.h (WT_*): Add constants.
5963
5964         * lib/user32.def (CancelDeviceWakeupRequest,
5965         CreateMemoryResourceNotification, CreateTimerQueueTimer,
5966         DeactivateActCtx): Add functions.
5967
5968 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5969
5970         * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread):
5971         Add function. Sometimes I don't understand MSDN. This function is
5972         available on Windows XP and Server 2003, but the SDK is supposed to
5973         make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN.
5974         Mmmh...
5975
5976         * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx):
5977         Guard function. Same remark as above.
5978
5979         * lib/user32.def (ConvertFiberToThread, CreateFiberEx):
5980         Add functions.
5981
5982 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
5983
5984         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*):
5985         Add constants.
5986
5987         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add
5988         structures.
5989
5990         * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add
5991         function. MSDN says the first argument is HACTCTX but I'm not sure
5992         where such a specialized handle is defined, so use HANDLE instead.
5993
5994         * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole,
5995         CheckNameLegalDOS8Dot3[AW]): Add functions.
5996
5997         * lib/user32.def (ActivateActCtx, AttachConsole,
5998         CheckNameLegalDOS8Dot3[AW]): Add functions.
5999
6000         * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions.
6001         Unfortunately I don't know which header to put the declarations in.
6002
6003 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6004
6005         * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA):
6006         Add constants.
6007
6008         * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add
6009         constants for National Language Support.
6010
6011         * include/winnls.h (NLSVERSIONINFO): Add structure for National
6012         Language Support.
6013
6014         * include/winnls.h (GEO_ENUMPROC): Add callback for National
6015         Language Support.
6016
6017         * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW],
6018         GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID):
6019         Add functions.
6020
6021         * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add
6022         functions. Strange... I am unable to find which library contains
6023         these functions. Can't find anything with pexports. Any clue?
6024
6025         * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID,
6026         SetUserGeoID): Add functions.
6027
6028 2003-10-06  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6029
6030         * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN,
6031         LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants.
6032
6033         * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC,
6034         SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong
6035         value for constants.
6036
6037 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6038
6039         * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY,
6040         INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying
6041         the algorithms.
6042
6043 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6044
6045         * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags.
6046
6047 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6048
6049         * include/wincrypt.h (KP_*): Add constants. Needed by
6050         CryptSetKeyParam() and other functions.
6051
6052 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6053
6054         * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*):
6055         Add constants, related to Console Accessibility.
6056
6057 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6058
6059         * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops...
6060         wrong value for constant.
6061
6062 2003-10-03  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6063
6064         * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants.
6065
6066         * include/uxtheme.h: Cleanup.
6067         * include/tmschema.h: Cleanup.
6068
6069 2003-10-02  Luke Dunstan  <infidel@users.sourceforge.net>
6070
6071         * include/winspool.h (GetDefaultPrinter[AW]): Add functions.
6072         * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs.
6073
6074 2003-10-01  Danny Smith  <dannysmith@users.sourceforge.net>
6075
6076         * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define.
6077
6078 2003-09-30  Danny Smith  <dannysmith@users.sourceforge.net>
6079
6080         * include/winuser.h (BSF_*, BSM_*):  Sync constants defined in
6081         both winuser.h and dbt.h.
6082         * include/dbt.h (BSF_*, BSM_*): Likewise.
6083
6084         * include/winuser.h (struct tagRAWINPUT): Remove
6085         _ANONYMOUS_UNION tag from named union.
6086         (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct.
6087
6088 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6089
6090         * include/dhcpcdsk.h: New file.
6091         Note that MSDN is confused about whether it should start constant
6092         and structure names with DHCPCAPI or DHCPAPI. It's using both but
6093         experience suggests it's DHCPCAPI with `C'.
6094
6095         * lib/dhcpcsvc.def: New file.
6096
6097 2003-09-30  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6098
6099         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT,
6100         RIM_INPUTSINK): Add constants, for use by WM_INPUT notification.
6101
6102         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE,
6103         RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK,
6104         RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants,
6105         for use in RAWINPUTDEVICE.
6106
6107         * include/winuser.h [_WIN32_WINNT >= 0x0501]
6108         (GetRawInputDeviceInfo[AW]): Ooops... there are
6109         ANSI/Unicode versions of this function.
6110
6111         * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there
6112         are ANSI/Unicode versions of this function.
6113
6114 2003-09-29  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6115
6116         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE,
6117         RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE,
6118         MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP,
6119         MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN,
6120         RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN,
6121         RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN,
6122         RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN,
6123         RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN,
6124         RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN,
6125         RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN,
6126         RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN,
6127         RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE,
6128         RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1,
6129         RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT,
6130         RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME,
6131         RIDI_DEVICEINFO): Add constants.
6132
6133         * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER,
6134         RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE,
6135         RAWINPUTDEVICELIST): Add structures.
6136
6137         * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc,
6138         GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo,
6139         GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions.
6140
6141         * lib/user32.def (DefRawInputProc, GetRawInputBuffer,
6142         GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList,
6143         GetRegisteredRawInputDevices): Add functions.
6144
6145 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6146
6147         * include/winable.h (BlockInput): Add function.
6148
6149         * include/winable.h (WS_ACTIVECAPTION): Add constant.
6150         For use with WINDOWINFO structure.
6151
6152         * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation):
6153         Add function.
6154
6155         * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled):
6156         Add function.
6157
6158         * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent):
6159         Add function...
6160
6161         * include/winable.h [WINVER < 0x0500] (UnhookWinEvent):
6162         ...and duplicate.
6163
6164         * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput):
6165         Guard function...
6166
6167         * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput):
6168         ...and duplicate.
6169
6170         * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent):
6171         Guard function...
6172
6173         * include/winable.h [WINVER < 0x0500] (NotifyWinEvent):
6174         ...and duplicate.
6175
6176         * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT,
6177         HARDWAREINPUT, INPUT): Guard structures...
6178
6179         * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT,
6180         HARDWAREINPUT, INPUT): ...and duplicate.
6181
6182         * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE,
6183         INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants...
6184
6185         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6186         INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate.
6187
6188         * include/winuser.h: Move around some lines. Reformat according
6189         to recommended or dominant style. Remove FAR keyword.
6190
6191         * include/winable.h: Move around some lines.
6192
6193         * lib/user32.def (BlockInput, IsWinEventHookInstalled,
6194         LockWorkStation, UnhookWinEvent): Add functions.
6195
6196 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6197
6198         * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow,
6199         PW_CLIENTONLY): Add function and constant.
6200
6201         * lib/user32.def (PrintWindow): Add function.
6202
6203 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6204
6205         * include/winuser.h (RealGetWindowClassA[AW]): Add function.
6206
6207         * lib/user32.def (RealGetWindowClassA[AW]): Add function.
6208
6209 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6210
6211         * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW],
6212         DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE,
6213         DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants.
6214
6215         * lib/user32.def (RegisterDeviceNotification[AW]): Add function.
6216
6217 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6218
6219         * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC,
6220         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6221         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6222
6223         * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC,
6224         WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS,
6225         WINEVENT_INCONTEXT): Add function, typedef, and constants.
6226
6227         * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess):
6228         Add function.
6229
6230         * lib/user32.def (SetWinEventHook, UserHandleGrantAccess):
6231         Add functions.
6232
6233 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6234
6235         * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT,
6236         ACE_OBJECT_TYPE_PRESENT): Add constants.
6237         For use with OBJECTS_AND_NAME structure.
6238
6239 2003-09-26  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6240
6241         * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]):
6242         Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use
6243         void* instead.
6244
6245         * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW],
6246         PINHERITED_FROM[AW]): Add structures.
6247
6248         * lib/user32.def (GetInheritanceSource[AW]): Add functions.
6249
6250 2003-09-26  Corinna Vinschen  <corinna@vinschen.de>
6251
6252         * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too.
6253
6254 2003-09-25  Danny Smith  <dannysmith@users.sourceforge.net>
6255
6256         * lib/version.def (LIBRARY): Quote name.
6257
6258 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6259
6260         * include/winuser.h (GetClipboardSequenceNumber): Add functions
6261         and constants.
6262
6263         * include/winuser.h (GetGuiResources, GR_GDIOBJECTS,
6264         GR_USEROBJECTS): Add functions and constants.
6265
6266         * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS,
6267         GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants.
6268
6269         * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK,
6270         ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and
6271         constants.
6272
6273         * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources,
6274         GetMouseMovePointsEx, InSendMessageEx): Add functions.
6275
6276 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6277
6278         * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA,
6279         BroadcastSystemMessageW, BroadcastSystemMessageEx,
6280         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6281         BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID,
6282         BSF_RETURNHDESK): Add functions and constants.
6283
6284         * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA,
6285         EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant.
6286
6287         * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx,
6288         GetProcessDefaultLayout, SetProcessDefaultLayout,
6289         RealChildWindowFromPoint, SetProcessDefaultLayout,
6290         SwitchToThisWindow): Add functions.
6291
6292         * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW,
6293         BroadcastSystemMessageExA, BroadcastSystemMessageExW,
6294         EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx,
6295         GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow,
6296         RealChildWindowFromPoint, SetProcessDefaultLayout,
6297         SwitchToThisWindow): Add function.
6298
6299 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6300
6301         * include/winuser.h (DeregisterShellHookWindow): Add function.
6302
6303         * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function.
6304
6305         * lib/user32.def (EndTask): Add function.
6306
6307         * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to
6308         use _WIN32_WINNT instead of WINVER to test for Windows 2000.
6309
6310         * include/winable.h: Reorder target macros.
6311
6312         * lib/*.def: Cleanup.
6313
6314 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6315
6316         * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add
6317         function.
6318
6319         * lib/user32.def (AnimateWindow): Add function. By the way
6320         there are ~ 140 symbols missing from this file when comparing
6321         to user32.dll on Windows XP.
6322
6323 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6324
6325         * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE,
6326         AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE,
6327         AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by
6328         AnimateWindow().
6329
6330 2003-09-25  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6331
6332         * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo,
6333         LPGUITHREADINFO): Add function and associated typedef...
6334
6335         * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo,
6336         LPGUITHREADINFO): ...and duplicate them in <winable.h> as
6337         seems to be required on older versions of Windows.
6338
6339 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6340
6341         * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro
6342         function. MSDN suggests using gluErrorUnicodeStringWIN
6343         instead of gluErrorString, as it allows both ANSI and Unicode
6344         error strings.
6345
6346         * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the
6347         returned pointer const for consistency reasons.
6348
6349 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6350
6351         * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function.
6352         Function exists in glu32.def but is undocumented on MSDN.
6353         A Google search came up with this declaration.
6354
6355 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6356
6357         * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3
6358         headers from OpenGL Sample Implementation. Windows ships with
6359         GLU 1.2 so some constants and functions were removed. Then some
6360         typedef's and function declarations were reworked to look like
6361         the previous GL/glu.h.
6362
6363 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6364
6365         * include/uxtheme.h (PROPERTYORIGIN): the documentation of
6366         PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation
6367         suggests it's actually `enum PROPERTYORIGIN'. Keep both.
6368
6369         * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests
6370         it's either `THEME_SIZE' or `THEMESIZE' but experimentation
6371         suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE'
6372         and `enum THEMESIZE'.
6373
6374 2003-09-24  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6375
6376         * include/uxtheme.h: New file.
6377         * include/tmschema.h: New file.
6378         * include/uxtheme.def: New file.
6379         * lib/test.c: Include uxtheme.h, tmschema.h.
6380
6381 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6382
6383         * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE):
6384         Add defines.
6385
6386 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6387
6388         * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE,
6389         INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in
6390         <winable.h> as seems to be required on older versions of
6391         Windows.
6392
6393 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6394
6395         * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF,
6396         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6397         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK):
6398         Add defines, the last one only on Windows XP...
6399
6400         * include/winable.h [WINVER < 0x0500] (CHILDID_SELF,
6401         GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE,
6402         GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate
6403         them in <winable.h> as seems to be required on older
6404         versions of Windows.
6405
6406 2003-09-23  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
6407
6408         * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO,
6409         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6410         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6411         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring
6412         back into <winuser.h>...
6413
6414         * include/winable.h [WINVER < 0x0500] (GUITHREADINFO,
6415         OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU,
6416         OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP,
6417         OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and
6418         comment out in <winable.h>. MSDN may say <winable.h> but this
6419         breaks many programs. It seems it used to be <winable.h> on
6420         older versions of Windows.
6421
6422 2003-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
6423
6424         * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI.
6425         Thanks to Will Levine  <willll@users.sourceforge.net>
6426
6427 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6428
6429         * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to
6430         const struct sockaddr*.
6431         (LPWSPCONNECT): Likewise.
6432         (LPWSPJOINLEAF): Likewise.
6433         (LPWSPSENDTO): Likewise.
6434         Tanks to Sebastian Nowak  <snowak1@users.spourceforge.net>
6435
6436 2003-09-15  Filip Navara  <xnavara@volny.cz>
6437
6438         * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED):
6439         Add definitions.
6440
6441 2003-09-15  Sascha Brawer  <brawer@dandelis.ch>
6442
6443         * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP,
6444         DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER,
6445         DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE,
6446         DISPLAY_DEVICE_MODESPRUNED): Define constants.
6447         (ChangeDisplaySettingsEx[A,W]): Add prototype.
6448
6449         * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports.
6450         (EnumDisplayDevices[A,W]): Likewise.
6451
6452 2003-09-15  Danny Smith  <dannysmith@users.sourceforge.net>
6453
6454         * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501,
6455         throughout.
6456
6457 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6458
6459         * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6460         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6461         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6462         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6463         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO,
6464         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6465         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6466         PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ...
6467         * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG,
6468         LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS,
6469         LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC,
6470         OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC,
6471         OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO,
6472         LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO,
6473         CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD,
6474         PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency
6475         with documentation.
6476         * include/olectl.h: Do #include <ocidl.h>.
6477         * include/ocidl.h: Don't #include <olectl.h>.
6478
6479 2003-09-13  Danny Smith  <dannysmith@users.sourceforge.net>
6480
6481         * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER):
6482         Change guards to use numeric constants, throughout.
6483
6484 2003-09-15  Earnie Boyd  <earnie@users.sf.net>
6485
6486         * include/w32api.h: Increment version to 2.5.
6487         * Makefile.in: Ditto.
6488
6489 2003-09-08  Justin Forest  <vhex@users.sourceforge.net>
6490
6491         * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE,
6492         PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines.
6493
6494 2003-09-08  Filip Navara  <xnavara@volny.cz>
6495
6496         * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V,
6497         GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines.
6498
6499 2003-09-05  Earnie Boyd  <earnie@users.sf.net>
6500
6501         * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01.
6502         * include/winbase.h (_NT5, etc): Ditto.
6503
6504 2003-09-02  Bart Oldeman  <bartoldeman@users.sourceforge.net>
6505
6506         * lib/snmpapi.def (LIBRARY) Add library name.
6507         Remove '\r', throughout.
6508         * lib/wsnmp32.def: Remove '\r', throughout.
6509         * lib/igmpagnt.def: Likewise.
6510
6511 2003-08-29  Steve Cleary  <scleary@jerviswebb.com>
6512
6513         * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines.
6514         (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with
6515         QS_RAWINPUT for _WIN32_WINNT >= 0x0501.
6516         (MWMO_*): Add flags.
6517
6518         * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW],
6519         MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW],
6520         MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW],
6521         MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions.
6522
6523 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
6524
6525         * lib/test.c: Add vfw.h to includes.
6526         * include/mmsystem.h: Add #ifndef guard to definition of
6527         mmioFOURCC macro.
6528         * include/vfw.h: Protect __OBJC__ from COM declarations.
6529
6530 2003-08-26  Filip Navara  <xnavara@volny.cz>
6531
6532         * include/vfw.h: New file.
6533
6534 2003-08-26  Filip Navara  <xnavara@volny.cz>
6535
6536         * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines.
6537         (IoSetCompletionRoutine): Cast _CompletionRoutine arg to
6538         PIO_COMPLETION_ROUTINE.
6539
6540 2003-08-26  Danny Smith  <dannysmith@users.sourceforge.net>
6541
6542         * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to
6543         includes.
6544
6545 2003-08-26  Filip Navara  <xnavara@volny.cz>
6546
6547         * include/snmp.h: New file.
6548         * include/winsnmp.h: New file.
6549         * include/mgmtapi.h: New file.
6550         * lib/snmpapi.def: New file.
6551         * lib/wsnmp32.def: New file.
6552         * lib/igmpagnt.def: New file.
6553         * lib/mgmtapi.def (SnmpMgrCtl) Add stub.
6554         (SnmpMgrGetTrapEx): Ditto.
6555         (SnmpMgrMIB2Disk): Remove.
6556         (dbginit): Remove.
6557
6558 2003-08-25  Steven Edwards  <Steven_Ed4153@yahoo.com>
6559
6560         * include/ddk/ntifs.h: Change all C++ style comments to C.
6561         * include/GL/gl.h: Ditto.
6562
6563 2003-08-25  Martin Fuchs  <Martin-Fuchs@gmx.net>
6564
6565         * include/shlobj.h (SFGAO_GHOSTED): Correct.
6566         (SFGAO_HIDDEN): Add define.
6567
6568 2003-08-25  Filip Navara  <xnavara@volny.cz>
6569
6570         * include/commctrl.h (ILCF_*): Add defines.
6571         (ILD_*): Ditto.
6572         (HDS_*): Ditto.
6573         (IPN_FIRST, IPN_LAST): Cast to UINT.
6574         (SBN_FIRST, SBN_LAST): Add defines.
6575         (PGN_*): Ditto.
6576         (HDF_JUSTIFYMASK): Fix typo.
6577         (HDM_*): Add defines.
6578         (HICF_*): Ditto.
6579         (I_INDENTCALLBACK,I_IMAGENONE): Ditto.
6580         (TBSTATE_MARKED): Add define.
6581         (TBSTYLE_EX_*): Add defines.
6582         (TBCDRF_*): Ditto.
6583         (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto.
6584         (TB_*): Ditto.
6585         (TBN_*): Ditto.
6586         (TBNRF_*): Ditto.
6587         (TTF_*): Ditto.
6588         (TBCD_*): Ditto.
6589         (TBDDRET_*): Ditto.
6590         (TBIMHT_*): Ditto.
6591         (TTM_*): Ditto.
6592         (UDM_*): Ditto.
6593         (TBIF_BYINDEX): Define as hex constant.
6594         (CDIS_*): Add defines.
6595         (CDDS_SUBITEM): Add define.
6596         (LVIF_*): Add defines.
6597         (LVM_*): Ditto.
6598         (LVGIT_UNFOLDED): Add define.
6599         (TVM_): Add defines.
6600         (TVE_EXPANDPARTIAL): Add define.
6601         (TVGN_LASTVISIBLE): Ditto.
6602         (TVN_*): Add defines.
6603         (TVNRET_*): Add defines.
6604         (TCIF_STATE): Add define.
6605         (NM_TOOLTIPSCREATED): Ditto.
6606         (CCM_*): Add defines.
6607         (INFOTIPSIZE): Add numeric value.
6608         (ODT_LISTVIEW): Ditto.
6609         (MCM_GETMAXTODAYWIDTH): Ditto.
6610         (MCHT_*): Add defines.
6611         (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER.
6612         (PGF_*): Add defines.
6613         (PGM_*): Ditto.
6614         (TBINSERTMARK): Add structure.
6615         (LPIMAGEINFO) Add typedef.
6616         (LPHDHITTESTINFO): Ditto.
6617         (NMLVGETINFOTIP[AW]: Add structures.
6618         (NMTBCUSTOMDRAW): Add structure.
6619         (TTTOOLINFOA_V*_SIZE): Add macros.
6620         (TTTOOLINFOW_V1_SIZE): Ditto.
6621         (IMAGELISTDRAWPARAMS): Add new members for WXP.
6622         (LVITEM[AW]: Ditto.
6623         (TCITEM[AW]):Ditto.
6624         (CCSIZEOF_STRUCT): Correct macro definition.
6625         (ListView_*): Add new macros.
6626         (HIMAGELIST): Correct typedef.
6627         (HTREEITEM): Ditto.
6628
6629 2003-08-25   Danny Smith  <dannysmith@users.sourceforge.net>
6630
6631         * commctrl.h (TC_HITTESTINFO): Remove. Add defines for
6632         TCHITTESTINFO for backward compatibility.
6633         (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward
6634         compatibility.
6635
6636 2003-08-24   Danny Smith  <dannysmith@users.sourceforge.net>
6637
6638         * include/objidl.h (COBJMACROS): Define macros only
6639         if using C interace.
6640         * include/unknwn.h: Ditto.
6641         * include/comcat.h: Ditto.
6642
6643 2003-08-24  Filip Navara  <xnavara@volny.cz>
6644
6645         * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE,
6646         PSH_NOCONTEXTHELP): Define.
6647         (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500.
6648         * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define.
6649         (LPDLGTEMPLATE[AW]): Add typedefs.
6650
6651 2003-08-22  Filip Navara  <xnavara@volny.cz>
6652
6653         * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]):
6654         Add prototypes.
6655         BuildImpersonateTrustee[AW]): Add prototypes.
6656         GetMultipleTrustee[AW]): Add prototypes.
6657         GetMultipleTrusteeOperation[AW]): Add prototypes.
6658
6659 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
6660
6661         * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define.
6662
6663 2003-08-22  Mihai Preda  <mihai_preda@users.sourceforge.net>
6664
6665         * include/shlobj.h (IPersistFolder::GetClassID):
6666         Correct declaration.
6667         (CMF_*) Add missing defines.
6668
6669 2003-08-22   Danny Smith  <dannysmith@users.sourceforge.net>
6670
6671         * include/winuser.h (DC_BUTTONS): Add define.
6672
6673 2003-08-22  Andrew Greenwood  <lists@silverblade.co.uk>
6674
6675         * include/winuser.h (DC_GRADIENT): Add define.
6676
6677 2003-08-22  Martin Fuchs  <Martin-Fuchs@gmx.net>
6678
6679         * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the
6680         older TBSTYLE_* constants.
6681
6682 2003-08-18  Danny Smith  <dannysmith@users.sourceforge.net>
6683
6684         * include/commctrl.h (TB_*) Group defines together.
6685
6686 2003-08-18  Martin Fuchs  <Martin-Fuchs@gmx.net>
6687
6688         * include/winuser.h (ICON_SMALL2): Define.
6689         * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS):
6690         Define.
6691         * include/shlobj.h (SHDRAGIMAGE): Define structure.
6692         (IDragSourceHelper) Define interface.
6693         (IDropTargetHelper): Likewise.
6694         (IExtractIcon): Unicode it.
6695         (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand,
6696         OnStateChange and IncludeObject methods.
6697
6698 2003-08-17  Martin Fuchs  <Martin-Fuchs@gmx.net>
6699
6700         * include/commctrl.h (TreeView_GetScrollTime,
6701         TreeView_SetScrollTime): Define macros.
6702         * include/winuser.h (GetShellWindow): Add prototype.
6703         * include/objidl.h (STGMEDIUM): Correct lpszFileName type.
6704
6705 2003-08-15  Martin Fuchs  <Martin-Fuchs@gmx.net>
6706
6707         * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper,
6708         IID_IDragSourceHelper): Declare.
6709         * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper,
6710         IID_IDragSourceHelper): Define.
6711
6712 2003-08-15  Andrew Greenwood  <lists@silverblade.co.uk>
6713
6714         * include/wingdi.h (DEVMODE[AW]) Correct structure definition.
6715         * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED.
6716         * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum.
6717
6718 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
6719
6720         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView,
6721         CGID_ShellServiceObject): Remove definitions.
6722         * lib/shell32.c (CGID_ShellServiceObject): Add definition.
6723
6724 2003-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
6725
6726         * include/shlobj.h (SHELLSTATE): Add structure.
6727         (SHGetSetSettings): Add prototype.
6728         (SHGetSettings): Add prototype.
6729         * lib/shell32.def (SHGetSetSettings): Add stub.
6730
6731 2003-08-10  Phil Krylov  <likewolf@users.sourceforge.net>
6732
6733         * include/commctrl.h (HDM_ORDERTOINDEX): Add define.
6734         (Header_OrderToIndex): Add macro.
6735         (Header_GetOrderArray): Add macro.
6736
6737         * include/commdlg.h (FR_MATCHALEFHAMZA,
6738         FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines.
6739
6740 2003-08-10  Martin Fuchs  <Martin-Fuchs@gmx.net>
6741
6742         * include/commctrl.h (TVM_GETSCROLLTIME,
6743         TVM_SETSCROLLTIME): Add defines.
6744
6745 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
6746
6747         * include/shlobj.h (SHELLFLAGSTATE): Add structure.
6748         (SHGetInstanceExplorer): Correct return type.
6749         (SHGetFolderPath[AW]): Likewise.
6750         Thanks to Magnus Olsen  <greatlord@sourceforge.users.net>
6751         for report.
6752
6753 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
6754
6755         * lib/test.c: Include winldap.h, ntldap.h, winber.h.
6756
6757 2003-08-01  Filip Navara  <xnavara@volny.cz>
6758
6759         * include/winldap.h: New file.
6760         * include/ntldap.h: New file.
6761         * include/winber.h: New file.
6762         * lib/winldap32.def: New file.
6763
6764 2003-08-01  Danny Smith  <dannysmith@users.sourceforge.net>
6765
6766         * include/ddk/atm.h: Remove stray '.';
6767
6768 2003-08-01  Gisle Vanem  <gvanem@broadpark.no>
6769
6770         * include/ddk/winddk.h: Remove trailing ';' from macros,
6771         throughout. Add () around defines with cast returns, throughout.
6772
6773 2003-07-31  Martin Fuchs  <Martin-Fuchs@gmx.net>
6774
6775         * include/shlobj.h (SFGAO_COMPRESSED): Add define.
6776         (SFGAOF, SHGDNF): Add typedef's.
6777         (SHCONTF): Extend enum.
6778
6779 2003-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
6780
6781         * include/shellapi.h: Include all structs within pshpack2.h/
6782         poppack.h block.
6783
6784 2003-07-26  Danny Smith  <dannysmith@users.sourceforge.net>
6785
6786         * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK,
6787         LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT,
6788         _WIN32_WINDOWS, not WINVER.
6789         (AllowSetForegroundWindow,LockSetForegroundWindow,
6790         SetLayeredWindowAttributes): Likewise.
6791         (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes.
6792         * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow):
6793         Add stubs.
6794
6795 2003-07-26  Eric R. Krause  <ekrause_98@users.sourceforge.net>
6796
6797         * include/objidl.h (IMalloc): Fix typo.
6798
6799 2003-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
6800
6801         * include/dkk/ntifs.h: Fix typo in guard for
6802         #pragma GCC system_header.
6803
6804 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
6805
6806         * include/objidl.h (PropVariant): Add CHAR cVal field
6807         to union.
6808         (FMTID_SummaryInformation, FMTID_DocSummaryInformation,
6809         FMTID_UserDefinedProperties): Declare.
6810
6811 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
6812
6813         * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes.
6814
6815 2003-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
6816
6817         * include/winbase.h (DUPLICATE_CLOSE_SOURCE,
6818         DUPLICATE_SAME_ACCESS): Remove defines.
6819         (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with
6820         ddk/ntapi.h defines.
6821         (SEM_*) : Likewise.
6822         * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with
6823         ddk/ntifs.h defines.
6824         (FILE_*): Likewise.
6825         (MEM_IMAGE, SEC_*): Likewise.
6826         (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS,
6827         DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines.
6828         (TOKEN_*): Sync with ddk/ntifs.h defines.
6829         * include/ddk/ntapi.h: Add comments noting definitions in
6830         winbase.h.
6831         * include/ddk/ntifs.h: Add comments noting definitions in
6832         winnt.h.
6833         * include/ddk/winddk.h: Add comments noting definitions in
6834         winnt.h.
6835
6836 2003-07-18  Danny Smith  <dannysmith@users.sourceforge.net>
6837
6838         * include/winnt.h (FILE_*): Sync with ddk/winddk.h.
6839         * include/winioctl.h (FILE_*): Sync with ddk/winddk.h.
6840
6841 2003-07-17  Pierre Humblet  <pierre.humblet@ieee.org>
6842
6843         * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define.
6844
6845 2003-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
6846
6847         Clean up warnings in ddk.
6848
6849         * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION,
6850         conditional on  __cplusplus.
6851         * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
6852         defines, throughout.
6853         (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus.
6854         * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma.
6855         * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C.
6856         * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines.
6857         * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
6858         defines, throughout.
6859         * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT
6860         defines, throughout. Remove trailing semicolon from *_S 'structure'
6861         macro expansion, throughout. Remove trailing semicolon from
6862         DECLARE_UNKNOWN_STRUCT macro expansion.
6863         * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add
6864         _ANONYMOUS_UNION.
6865         * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION,
6866         _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION.
6867         * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK):
6868         Add _ANONYMOUS_UNION.
6869         * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout.
6870         * include/ddk/ntddmou.h:  Add _ANONYMOUS_UNION, throughout.
6871         * include/ddk/ntifs.h:  Add _ANONYMOUS_UNION, throughout.
6872         (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to
6873         match proto in ntapi.h.
6874         (ZwSetInformationObject): Likewise.
6875         * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION.
6876         (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__.
6877         * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add
6878         _ANONYMOUS_UNION and _ANONYMOUS_STRUCT.
6879         * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION.
6880         * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove
6881         last comma.
6882         * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION.
6883         * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove
6884         trailing semicolon when expanding macro.
6885         (GENERAL_LOOKASIDE_S): Likewise.
6886         Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout.
6887         Change inline to __inline, throughout.
6888         * include/ddk/winnt4.h: Change inline to __inline, throughout.
6889
6890 2003-07-13  Casper S. Hornstrup  <chorns@users.sourceforge.net>
6891
6892         * include/ddk/ntifs.h (KeInsertQueueApc): Make return type
6893         BOOLEAN. Name parameter 4 PriorityBoost and make it of type
6894         KPRIORITY.
6895         * include/ddk/winddk.h (_KPCR): Put IDT field on next line.
6896         * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY,
6897         _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB):
6898         Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT
6899         to anonymous structs.
6900
6901 2003-07-12  Danny Smith  <dannysmith@users.sourceforge.net>
6902
6903         * include/winnt.h (PVOID): Move to before HANDLE typedef.
6904
6905         * include/winuser.h (mouse_event): Correct type of fifth param,
6906         Thanks to: Andrew Jones <guln at users dot sourceforge dot net>
6907
6908 2003-07-11  Earnie Boyd  <earnie@users.sf.net>
6909
6910         * include/winnt.h (HANDLE): Define based on STRICT filter.
6911         (THREAD_BASE_PRIORITY_MIN): Use parens around negative value.
6912         (THREAD_BASE_PRIOIRTY_IDLE): Ditto.
6913
6914 2003-07-08  Danny Smith  <dannysmith@users.sourceforge.net>
6915
6916         * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct
6917         names _TV_DISPINFO[AW] and typedefs. Add defines for backward
6918         compatability. Thanks to Magnus Olsen <greatlord@users.sf.net>
6919         for report.
6920
6921 2003-07-03  Earnie Boyd  <earnie@users.sf.net>
6922
6923         * config.guess, config.sub: Update with new versions from ftp.gnu.org.
6924
6925 2003-07-03  Luke Dunstan  <infidel@users.sf.net>
6926
6927         * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around
6928         macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>.
6929         * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY,
6930         MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines.
6931         (TPM_RECURSE): Add guard for Win98/Win2K.
6932         Thanks to Magnus Olsen <greatlord@users.sf.net>.
6933
6934 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
6935
6936         * include/basetyps.h (small, hyper): Change to __small and __hyper to
6937         avoid user namespace conflicts.
6938
6939 2003-07-01  Earnie Boyd  <earnie@users.sf.net>
6940
6941         * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003,
6942         _IE3, _IE4, _IE5, _IE6): Add definitions.
6943         * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or
6944         >= Win98.
6945         Change existing guards to use the above macro names as appropriate.
6946         * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define.
6947         Note: Also added to mingw/include/_mingw.h.
6948
6949 2003-06-28  Steven Edwards  <Steven_Ed4153@yahoo.com>
6950
6951         * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW,
6952         PathFindSuffixArrayA, PathFindSuffixArrayW,
6953         PathFindExtensionA, PathFindExtensionW, StrStrW
6954         StrStrA): Change unicode-macro'd LP[C]TSTR return values to
6955         explicit type.
6956
6957 2003-06-26  Mattia Barbon  <mbarbon@dsi.unive.it>
6958
6959         * include/richedit.h (PARAFORMAT2): Add definition.
6960         * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some
6961         missing constants.
6962
6963 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
6964
6965         * include/shellapi.h (SHQUERYRBINFO): Add structure,
6966         (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes.
6967         (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND):
6968         Add defines. Thanks to Brett Hart <brett at ncubedtech dot com>
6969
6970 2003-06-17  Danny Smith  <dannysmith@users.sourceforge.net>
6971
6972         * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags,
6973         GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact,
6974         LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment
6975         that these are obsolete no-ops.
6976
6977 2003-06-17  Bang Jun-Young  <junyoung@netbsd.org>
6978
6979         * include/winbase.h (GetProcessWorkingSetSize,
6980         GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc,
6981         LocalShrink, SignalObjectAndWait, WriteProcessMemory):
6982         Correct prototypes.
6983
6984 2003-06-18  Steven Edwards  <Steven_Ed4153@yahoo.com>
6985
6986         * include/winuser.h (TPM_RECURSE): Add define.
6987
6988 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
6989
6990         * lib/test.c: #include <powrprof.h>.
6991
6992 2003-06-06  James E. Lucas  <xelloss@sourceforge.net>
6993
6994         * include/powerprof.h: New file.
6995         * lib/powerprof.def: New file.
6996
6997 2003-06-06  Danny Smith  <dannysmith@users.sourceforge.net>
6998
6999         * include/winnt (SLIST_HEADER): Add C90 anonymous struct
7000         protection.
7001
7002 2003-06-05  Luke Dunstan  <infidel@users.sourceforge.net>
7003
7004         * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of
7005         hInstance members to HINSTANCE.
7006         Thanks to: Brenden T. <brenden@rcsis.com>
7007
7008 2003-06-05  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7009
7010         * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define.
7011         * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs.
7012
7013 2003-06-02  Danny Smith  <dannysmith@users.sourceforge.net>
7014
7015         * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove.
7016         * include/winnt.h (POWER_INFORMATION_LEVEL): Add.
7017         * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER):
7018         Remove.
7019         * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'.
7020
7021 2003-05-30  Mattia Barbon  <mbarbon@dsi.unive.it>
7022
7023         * lib/oleacc.def: New file.
7024         * include/winable.h: New file.
7025         * include/oleacc.h: Add extern "C" guard.
7026         (NAVDIR_*, ROLE_*, STATE_*): Add missing constants.
7027         (AccessibleChildren, AccessibleObjectFromEvent,
7028         AccessibleObjectFromPoint, AccessibleObjectFromWindow,
7029         CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW],
7030         GetStateText[AW], LresultFromObject, ObjectFromLresult,
7031         WindowFromAccessibleObject): Add prototypes and UNICODE mappings.
7032         * include/winuser.h (NotifyWinEvent): Add prototype.
7033         (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7034         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7035         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7036         OBJID_SOUND): Move from here to...
7037         * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR,
7038         OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL,
7039         OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT,
7040         OBJID_SOUND): Here, as per documentation.
7041         * lib/test.c: Include winable.h.
7042         * lib/user32.def (NotifyWinEvent): Add missing export.
7043
7044 2003-05-30  Bang Jun-Young  <junyoung@netbsd.org>
7045
7046         * include/winbase.h (HeapCompact): Correct prototype.
7047         * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY,
7048         SLIST_HEADER): Add.
7049
7050 2003-05-27  Andrew C. Stadt  <acstadt@sympatico.ca>
7051
7052         * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines.
7053
7054 2003-05-25  Bill C. Riemers  <cygwin@docbill.net>
7055
7056         * include/winuser.h (EnumDisplayDevicesW): Fix typo.
7057
7058 2003-05-23  Danny Smith  <dannysmith@users.sourceforge.net>
7059
7060         * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes.
7061         * include/wingdi.h (DISPLAY_DEVICE): UNICODE it.
7062
7063 2003-05-23  Andrew Dunbar  <hippietrail@users.sourceforge.net>
7064
7065         * include/wingdi.h (GCP_RESULTS[AW]) Correct type of
7066         lpGlyphs field to LPWSTR.
7067
7068 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
7069
7070         * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB,
7071         PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines.
7072         (PP_*): Add defines.
7073         (CryptContextAddRef): Add prototype.
7074         Thanks to: Shura Zam  <debil_urod@users.sourceforge.net>
7075
7076 2003-05-18  Manu B  <manubee@users.sourceforge.net>
7077
7078         * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure.
7079
7080 2003-05-18  Bang Jun-Young  <junyoung@netbsd.org>
7081
7082         * include/winbase.h (CREATE_DEFAULT_ERROR_MODE,
7083         DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED,
7084         DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS,
7085         IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS,
7086         CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT,
7087         CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS,
7088         CREATE_NO_WINDOW): Convert to hexadecimal form for better
7089         readability.
7090         (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS,
7091         CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add.
7092
7093 2003-05-15  Danny Smith  <dannysmith@users.sourceforge.net>
7094
7095         * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S):
7096         Unname anonymous unions if NONAMELESSUNION not defined.
7097
7098 2003-05-14  Bang Jun-Young  <junyoung@netbsd.org>
7099
7100         * include/winbase.h (GMEM_VALID_FLAGS): Add.
7101
7102 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7103
7104         * include/prsht.h (PROPSHEETHEADER[AW]: Mark
7105         anonymous unions as GCC extension.
7106
7107 2003-05-13  Danny Smith  <dannysmith@users.sourceforge.net>
7108
7109         * include/oleidl.h  (LPENUMOLEDOCUMENTVIEWS): Remove typedef.
7110         (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR.
7111         * include/docobj.h  (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously
7112         commented out).
7113         (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR.
7114
7115 2003-05-12  Earnie Boyd  <earnie@users.sf.net>
7116
7117         * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK,
7118         MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define.
7119         Thanks to: Robert Wishlaw  <rwishlaw @ shaw . ca>
7120
7121 2003-05-12  Danny Smith  <dannysmith@users.sourceforge.net>
7122
7123         * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7124         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7125         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7126         IProvideClassInfo2,IConnectionPointContainer,
7127         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7128         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7129         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7130         IPicture,IPictureDisp): Move from here to...
7131         * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite,
7132         IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit,
7133         IPersistMemory,IPropertyNotifySink,IProvideClassInfo,
7134         IProvideClassInfo2,IConnectionPointContainer,
7135         IEnumConnectionPoints,IConnectionPoint,IEnumConnections,
7136         IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing,
7137         IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp,
7138         IPicture,IPictureDisp): Here, as per documentation.
7139
7140 2003-05-12  Mattia Barbon  <mbarbon@dsi.unive.it>
7141
7142         * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes.
7143         * include/winbase.h (TerminateJobObject,
7144         AssignProcessToJobObject): Likewise.
7145         * include/servprov.h: New header.
7146         * lib/test.c: Include servprov.h.
7147
7148 2003-05-10  Danny Smith  <dannysmith@users.sourceforge.net>
7149
7150         * include/shlguid.h (CGID_ShellServiceObject): Declare.
7151         * lib/uuid.c (CGID_ShellServiceObject): Define guid.
7152         Thanks to Chris Sutcliffe  <ir0nh34d#users.sourceforge.net>
7153         * include/winuser.h (SetLayeredWindowAttributes): Add prototype.
7154         * lib/user32.def (SetLayeredWindowAttributes): Add stub.
7155         * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids.
7156
7157 2003-05-05  Danny Smith  <dannysmith@users.sourceforge.net>
7158
7159         * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME,
7160         TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS,
7161         HOTKEY_CLASS): Remove dupicate defines for UNICODE case.
7162
7163 2003-05-02  Steven Edwards  <Steven_Ed4153@yahoo.com>
7164
7165         * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW,
7166         EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE,
7167         EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION,
7168         EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS,
7169         EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS,
7170         EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX,
7171         EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines.
7172
7173 2003-05-02  Francois Ferrand  <typz@sourceforge.users.net>
7174
7175         * include/commctrl.h (TBM_*): Add missing trackbar defines.
7176
7177 2003-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
7178
7179         * include/cplext.h (CPLPAGE_MOUSE_WHEEL,
7180         CPLPAGE_DISPLAY_BACKGROUND): Add defines.
7181
7182 2003-04-30  Danny Smith  <dannysmith@users.sourceforge.net>
7183
7184         * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines.
7185         (SetDCPenColor, SetDCBrushColor): Add prototypes.
7186         * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs.
7187
7188 2003-04-26  Bang Jun-Young  <junyoung@netbsd.org>
7189
7190         * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro.
7191
7192 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7193
7194         * include/oaidl.h (ITypeMarshal): Add interface.
7195
7196 2003-04-26  Danny Smith  <dannysmith@users.sourceforge.net>
7197
7198         * include/winioctl.h: Clean up formatting.
7199         (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct.
7200         (CREATE_DISK): Add _ANONYMOUS_UNION macro.
7201         (DISK_CACHE_INFORMATION): Likewise.
7202         (DISK_DETECTION_INFO): Likewise.
7203         (DISK_PARTITION_INFO): Likewise.
7204         (PARTITION_INFORMATION_EX): Likewise.
7205         (DRIVE_LAYOUT_INFORMATION_EX): Likewise.
7206
7207 2003-04-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
7208
7209         * include/winbase.h (DeleteVolumeMountPoint[AW],
7210         FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW],
7211         FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW],
7212         GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW],
7213         SetVolumeMountPoint[AW]): Add prototypes.
7214         * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX,
7215         IOCTL_DISK_SET_PARTITION_INFO_EX,
7216         IOCTL_DISK_GET_DRIVE_LAYOUT_EX,
7217         IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK,
7218         IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF,
7219         IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION,
7220         IOCTL_DISK_GET_CACHE_INFORMATION,
7221         IOCTL_DISK_SET_CACHE_INFORMATION,
7222         IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES,
7223         FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS,
7224         FSCTL_MOVE_FILE): Define.
7225         (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK,
7226         DISK_CACHE_INFORMATION,
7227         DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO,
7228         DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION,
7229         DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION,
7230         GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS,
7231         DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR,
7232         PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT,
7233         PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX,
7234         MOVE_FILE_DATA,
7235         RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER,
7236         STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs.
7237         (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums.
7238         (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512,
7239         F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024,
7240         F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512,
7241         F3_240M_512, and F3_32M_512.
7242         * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add
7243         stubs.
7244
7245 2003-04-16  Earnie Boyd  <earnie@users.sf.net>
7246
7247         * include/wingdi.h (DM_SPECVERSION): Define.
7248         Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru>
7249         * include/rpcdce.h (UuidCreateSequential): Properly guard with
7250         appropriate _WIN32_WINNT values.
7251
7252 2003-04-15  Chris January  <chris@atomice.net>
7253
7254         * include/rpcdce.h: Add declaration for UuidCreateSequential.
7255         * lib/rpcrt4.def: Add entry for UuidCreateSequential.
7256
7257 2003-04-14  Phil Krylov  <likewolf@users.sourceforge.net>
7258
7259         * include/winuser.h (VK_*): Add missing defines.
7260
7261 2003-04-14  Vincent Béron  <papineau@users.sourceforge.net>
7262
7263         * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently
7264         documented typedefs for struct _NM_UPDOWN.
7265         Add defines for backward comapatibility.
7266         * include/commdlg.h (OFN_ENABLESIZING): Add define.
7267         * include/wininet.h (IRF_*): Add missing defines.
7268
7269 2003-04-14  Bang Jun-Young  <junyoung@netbsd.org>
7270
7271         * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports.
7272
7273 2003-04-11  Earnie Boyd  <earnie@users.sf.net>
7274
7275         * include/sspi.h: Add comment for FreeCredentialsHandle.
7276
7277 2003-04-07  Marcel Telka  <telka@users.sourceforge.net>
7278
7279         * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG.
7280
7281 2003-03-30  Hans E. Molin  <kvasi@users.sourceforge.net>
7282
7283         * include/olectl.h (OleLoadPicturePath): Correct prototype.
7284
7285 2003-03-30  Danny Smith  <dannysmith@users.sourceforge.net>
7286
7287         * lib/uuid.c (IID_IHTML*): Move definitions to...
7288         * lib/mshtml-uuid.c: New file.
7289         * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a
7290
7291 2003-03-30  Michael Sazonov  <traip@comset.net>
7292
7293         * lib/uuid.c (IID_IHTML*): Add new GUID definitions.
7294         * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement,
7295         IHTMLImgElement): Add interface definitions.
7296
7297 2003-03-29  Danny Smith  <dannysmith@users.sourceforge.net>
7298
7299         * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS,
7300         STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS,
7301         UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW,
7302         WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of
7303         RC_INVOKED guard.
7304         (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT,
7305         WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines.
7306
7307 2003-03-28  Bang Jun-Young  <junyoung@netbsd.org>
7308
7309         * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef.
7310
7311 2003-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
7312
7313         * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW],
7314         TranslateName[AW]): Add prototypes.
7315         * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW],
7316         TranslateName[AW]): Add stubs.
7317         * lib/test.c: Include secext.h.
7318
7319 2003-03-27  Vladimir Michl  <michlv@users.sourceforge.net>
7320
7321         * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock,
7322         NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock,
7323         NdisDprReleaseSpinLock): Change macro argument from SpinLock to
7324         _SpinLock.
7325
7326 2003-03-26  Earnie Boyd  <earnie@users.sf.net>
7327
7328         * include/w32api.h: Increment version to 2.4.
7329         * Makefile.in: Ditto.
7330
7331 2003-03-26  Danny Smith  <dannysmith@users.sourceforge.net>
7332
7333         * include/ddk/batclass.h (BATTERY_REPORTING_SCALE)
7334         Move structure from here...
7335         * include/winnt.h (BATTERY_REPORTING_SCALE): To here.
7336
7337         * include/ddk/ntapi.h (JOBOBJECT_*):
7338         Remove structures and enums definitions.
7339         (JOB_OBJECT*): Move defines from here...
7340         * include/winnt.h (JOB_OBJECT* ): To here.
7341
7342         * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY,
7343         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7344         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7345         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7346         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7347         SYSTEM_POWER_CAPABILITIES): Move enums, structures
7348         and associated defines from here ...
7349         * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY,
7350         SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY,
7351         PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY,
7352         ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION,
7353         PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE,
7354         SYSTEM_POWER_CAPABILITIES):To here.
7355
7356         * include/ddk/winddk.h (DEVICE_POWER_STATE,
7357         SYSTEM_POWER_STATE, POWER_ACTION): Move enums
7358         from here...
7359         * include/winnt.h (DEVICE_POWER_STATE,
7360         SYSTEM_POWER_STATE, POWER_ACTION): To here.
7361
7362 2003-03-19  Danny Smith  <dannysmith@users.sourceforge.net>
7363
7364         *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix.
7365         Thanks to: Vladimir Michl <michlv@users.sourceforge.net>
7366         (NdisUpdateSharedMemory): Likewise.
7367         (NdisMFreeSharedMemory: Likewise.
7368         (NdisMMapIoSpace: Likewise.
7369
7370 2003-03-18  Danny Smith  <dannysmith@users.sourceforge.net>
7371
7372         * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK.
7373         Thanks to: Fabricio D. Rossi  <gurusoda@users.sourceforge.net>
7374         (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too.
7375
7376 2003-03-17  Bang Jun-Young  <junyoung@netbsd.org>
7377
7378         * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes.
7379         (EnumResourceNames[AW]): Ditto.
7380         (EnumResourceTypes[AW]): Ditto.
7381         * include/wincon.h (CONSOLE_FONT_INFO): Add struct.
7382
7383 2003-03-16  Toby Malone  <malone@users.sourceforge.net>
7384
7385         * include/winuser.h (SendInput): Add prototype.
7386         * lib/user32.def (SendInput): Add stub.
7387
7388 2003-03-16  Vadim Yegorov  <zg@bmg.lv>
7389
7390         * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro.
7391         (FSCTL_DELETE_REPARSE_POINT): Likewise.
7392
7393 2003-03-15  Bang Jun-Young  <junyoung@netbsd.org>
7394
7395         * winnt.h (JOBOBJECTINFOCLASS): Define enum.
7396         (JOBOBJECT_*): Define corresponding structures.
7397
7398 2003-03-13  Danny Smith  <dannysmith@users.sourceforge.net>
7399
7400         * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect
7401         typedef.
7402
7403 2003-03-13  Bang Jun-Young  <junyoung@netbsd.org>
7404
7405         * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports.
7406         (Process32{First,Next}{,W}): Ditto.
7407         (Thread32{First,Next}): Ditto.
7408         * include/ntdef.h (PCUNICODE_STRING): Add typedef.
7409
7410 2003-03-12  Earnie Boyd  <earnie@users.sf.net>
7411
7412         * include/mswsock.h: Correct invalid filter for _WINSOCK2_H.
7413         Thanks to Jim Barton <jmbarton@users.sf.net>.
7414
7415 2003-03-12  Ranjit Mathew  <rmathew@hotmail.com>
7416
7417         * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose
7418         member SectionAlignment.
7419
7420 2003-03-11  Earnie Boyd  <earnie@users.sf.net>
7421
7422         * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid
7423         warnings.
7424         Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>.
7425         * Makefile.in (bindist): Correct process.
7426         * lib/Makefile.in (install): Ditto.
7427         Thanks to Jeff Bonnggren <jbon@users.sf.net>.
7428
7429 2003-03-10  Danny Smith  <dannysmith@users.sourceforge.net>
7430
7431         * include/rasdlg.h: New file.
7432         * lib/rasdlg.def: New file.
7433         * lib/test.c: Include rasdlg.h.
7434
7435 2003-03-06  Christopher January  <chris@atomice.net>
7436
7437         * include/winbase.h (FindFirstVolume): Add declaration.
7438         (FindNextVolume): Add declaration.
7439         (FindVolumeClose): Add declaration.
7440         (GetSystemTimes): Add declaration.
7441         * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE.
7442
7443 2003-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
7444
7445         *lib/kernel32.def (GetSystemTimes): Add stub.
7446
7447 2003-03-04  Heiko Gerdau  <hg@technosis.de>
7448
7449         * oleidl.h (IOleObject): Correct GetUserType prototype.
7450         (IViewObject2): Correct GetExtent prototype.
7451         * olectl.h (DISPIP_): Add new defines
7452         * ocidl.h (IOleInPlaceSiteWindowless): Add new interface.
7453
7454 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7455
7456         * include/olectl.h (OleLoadPictureEx) Add prototype.
7457         (OleLoadPictureFile): Ditto.
7458         (OleLoadPictureFileEx): Ditto.
7459         (OleLoadPicturePath): Ditto.
7460         (OleSavePictureFile): Ditto.
7461
7462 2003-03-01  Danny Smith  <dannysmith@users.sourceforge.net>
7463
7464         * include/objbase.h (CoAddRefServerProcess): Add prototype.
7465         (CoAddReleaseServerProcess): Ditto.
7466         (CoResumeClassObjects): Ditto.
7467         (CoSuspendClassObjects): Ditto.
7468         * include/oleauto.h (V_I1): Define.
7469         Thanks to: "Timofei"  <mmttmm@users.sourceforge.net>
7470
7471 2003-03-01  Heiko Gerdau  <hg@technosis.de>
7472
7473         * include/oleidl.h (USERCLASSTYPE): Add enum.
7474         * include/ocidl.h (IObjectWithSite): Add interface.
7475
7476 2003-02-28  Roland Schwingel  <roland.schwingel@onevision.de>
7477
7478         Fixup UNICODE thinko in 2003-02-22 patch.
7479         * include/wingdi.h (AddFontMemResourceEx): Add.
7480         (RemoveFontMemResourceEx): Ditto.
7481         (AddFontMemResourceEx[AW]): Remove.
7482         (RemoveFontMemResourceEx[AW]): Ditto
7483         * lib/gdi32.def: (AddFontResourceEx): Add.
7484         (RemoveFontMemResourceEx): Ditto.
7485         (AddFontMemResourceEx[AW]): Remove.
7486         (RemoveFontResourceEx[AW]): Ditto.
7487
7488 2003-02-23  Danny Smith  <dannysmith@users.sourceforge.net>
7489
7490         * include/winbase.h (EVENTLOG_SUCCESS): Add define.
7491         Thanks to: Thomas Weber  <thomasweber@sourceforge.net>
7492
7493 2003-02-22  Roland Schwingel  <roland.schwingel@onevision.de>
7494
7495         * include/wingdi.h (AddFontMemResourceEx[AW]): Add.
7496         (RemoveFontMemResourceEx[AW]): Ditto
7497         * lib/gdi32.def (AddFontMemResourceEx[AW]): Add.
7498         (RemoveFontMemResourceEx[AW]): Ditto.
7499
7500 2003-02-22  Bang Jun-Young  <junyoung@netbsd.org>
7501
7502         * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports.
7503         (NtCurrentTeb): Remove.
7504
7505 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7506
7507         * include/wsahelp.h: Remove ';' after closing
7508         #ifdef __cplusplus brace.
7509         * include/ws2spi.h: Likewise.
7510
7511 2003-02-22  Danny Smith  <dannysmith@users.sourceforge.net>
7512
7513         * include/winbase.h (MEMORYSTATUSEX): Add structure.
7514         (GlobalMemoryStatusEx): Add prototype.
7515         * lib/kernel32.def (GlobalMemoryStatusEx): Add stub.
7516
7517 2003-02-17  Vaclav Haisman  <V.Haisman@sh.cvut.cz>
7518
7519         * include/winioctl.h (FSCTL_SET_SPARSE): Define.
7520
7521 2003-02-12  Roland Schwingel  <roland.schwingel@onevision.de>
7522
7523         * include/wingdi.h (AddFontResourceEx[AW]): Add.
7524         (RemoveFontResourceEx[AW]): Ditto
7525         (FR_PRIVATE): Define.
7526         (FR_NOT_ENUM): Define.
7527         * lib/gdi32.def (AddFontResourceEx[AW]): Add.
7528         (RemoveFontResourceEx[AW]): Ditto.
7529
7530 2003-02-10  Earnie Boyd  <earnie@users.sf.net>
7531
7532         * include/w32api.h: Increment version to 2.3.
7533         * Makefile.in: Ditto.
7534
7535 2003-02-09  Earnie Boyd  <earnie@users.sf.net>
7536
7537         * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export.
7538         (Ke386QueryToAccessMap): Ditto.
7539         (Ke386SetIoAccessMap): Ditto.
7540         Thanks to Marcel Telka <telka@users.sf.net>
7541         * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT.
7542         * include/security.h: Include secext.h.
7543         * include/winbase.h: Declare COMPUTER_NAME_FORMAT.
7544         Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net>
7545         * include/GL/gl.h: Remove include of glext.h.
7546         Thanks to Greg Couch <gregcouch@users.sf.net>
7547
7548 2003-02-05  Earnie Boyd  <earnie@users.sf.net>
7549
7550         * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start
7551         using GUID_DEFINED instead.
7552         * include/sqltypes.h: Ditto.
7553         * include/winnt.h: Ditto.
7554         * include/ddk/scsiwmi.h: Ditto.
7555
7556 2003-02-04  Danny Smith  <dannysmith@users.sourceforge.net>
7557
7558         * include/shlwapi.h (PathRelativePathTo[AW]): Correct
7559         prototypes.
7560         Thanks to: John Dallaway  <jld@ecoscentric.com>.
7561
7562 2003-02-01  Danny Smith  <dannysmith@users.sourceforge.net>
7563
7564         * include/commctrl.h (TCM_*): Add missing defines.
7565
7566 2003-02-01  Jesus Alvarez  <jesus_alvarez@users.sourceforge.net>
7567             Danny Smith  <dannysmith@users.sourceforge.net>
7568
7569         * include/prsht.h (PSP_*, PSH_*): Add missing defines.
7570         (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle
7571         for (_WIN32_IE >= 0x0400).
7572         (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union
7573         fields for (_WIN32_IE >= 0x0400).
7574
7575 2003-01-31  Danny Smith  <dannysmith@users.sourceforge.net>
7576
7577         * include/winbase.h (CreateFiber): Change first parameter
7578         to SIZE_T.
7579         (CreateJobObject[AW], CreateHardLink[AW]):Guard with
7580         if (_WIN32_WINNT >= 0x0500).
7581
7582 2003-01-31  Bang Jun-Young  <junyoung@netbsd.org>
7583
7584         * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW):
7585         Add missing typedefs.
7586         (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing
7587         prototypes.
7588         (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE.
7589
7590 2003-01-27  Krzysztof Nikiel  <kni@poczta.onet.pl>
7591
7592         * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct
7593         define.
7594         * lib/largeint.c (LargeIntegerAdd): Add, don't multiply.
7595
7596 2003-01-27  Danny Smith  <dannysmith@users.sourceforge.net>
7597
7598         * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add
7599         define.
7600         * include/winbase.h (WAIT_TIMEOUT): Guard against prior
7601         definition.
7602         (WAIT_FAILED): Cast to DWORD.
7603         * include/winerror.h (WAIT_TIMEOUT): Guard against prior
7604         definition.
7605
7606 2003-01-27  Bang Jun-Young  <junyoung@netbsd.org>
7607
7608         * include/winerror.h: Protect against multiple
7609         definition of WSA* error codes.
7610         * include/winsock.h: Likewise.
7611         * include/winsock2.h: Likewise.
7612
7613 2003-01-27  Bang Dong-Heui
7614             Bang Jun-Young  <junyoung@netbsd.org>
7615
7616         * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*,
7617         DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes.
7618         (RPC_X_INVALID_PIPE_OPERATION): Remove define.
7619
7620
7621 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
7622
7623         * include/ras.h (RASCONN[AW]): Add dwSessionId for
7624         (WINVER >= 0x501).
7625
7626 2003-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
7627
7628         * include/ras.h (RASCONN[AW]): Guard szDeviceType,
7629         szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid
7630         fields for (WINVER >= 0x501).
7631
7632 2003-01-23  Danny Smith  <dannysmith@users.sourceforge.net>
7633
7634         * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo):
7635         Add stubs.
7636         * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket
7637         options.
7638
7639 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
7640
7641         * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM
7642         IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines.
7643
7644 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
7645
7646         * include/accctrl.h (enum _SE_OBJECT_TYPE): Add
7647         SE_REGISTRY_WOW64_32KEY.
7648         Reported by: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
7649
7650 2003-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
7651
7652         * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines.
7653         (tagNMHDDISPINFO[AW}: Add structures and typedefs.
7654         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
7655
7656 2003-01-10  Christopher Faylor  <cgf@redhat.com>
7657
7658         * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection.
7659
7660 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
7661
7662         * lib/dxguid.c: Don't #include <objbase.h>.
7663         * include/unknwn.h: Partially revert change of 2002-12-26.
7664         Don't include <ole2.h>.
7665
7666 2003-01-08  Danny Smith  <dannysmith@users.sourceforge.net>
7667
7668         * lib/dinput.c: Don't #include <objbase.h>.
7669
7670 2003-01-08  Bart Oldeman  <bartoldeman@users.sourceforge.net>
7671
7672         * include/windows.h (ole2.h):Do #include for
7673         __WATCOMC__.
7674
7675 2003-01-05  Danny Smith  <dannysmith@users.sourceforge.net>
7676
7677         * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define.
7678         * include/zmouse.h (WHEEL_DELTA): Guard against prior
7679         definition.
7680         (WHEEL_PAGESCROLL): Likewise.
7681         (SPI_SETWHEELSCROLLLINES): Define, if not already done.
7682
7683 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
7684
7685         * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define.
7686         (WHEEL_PAGESCROLL): Add define.
7687
7688 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
7689
7690         * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct
7691         names tagTBNOTIFY[AW] and typedefs. Add defines for backward
7692         compatability. Add RECT field. Add UNICODE mappings for new
7693         names.
7694         (tagNMREBARCHEVRON): Add struct and typedefs for
7695         _WIN32_IE >= 0x0500.
7696
7697 2003-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
7698
7699         * include/commctrl.h (TOOLINFO[AW]): Update structures.
7700         (LVHITTESTINFO): Likewise.
7701
7702         * include/wingdi.h (GRADIENT_TRIANGLE): Add structure.
7703         (GRADIENT_RECT): Likewise.
7704
7705 2003-01-03  Bang Jun-Young  <junyoung@netbsd.org>
7706
7707         * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED,
7708         ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY,
7709         ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS,
7710         ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED,
7711         ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN,
7712         ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH,
7713         ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE,
7714         ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE,
7715         ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED,
7716         ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS,
7717         ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED,
7718         RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL,
7719         RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY,
7720         ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME,
7721         ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND,
7722         ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY,
7723         ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE,
7724         ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR,
7725         ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT,
7726         ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID,
7727         ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED,
7728         ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT,
7729         ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD,
7730         ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND,
7731         ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF,
7732         ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME,
7733         ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT,
7734         ERROR_CTX_MODEM_RESPONSE_NO_CARRIER,
7735         ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY,
7736         ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR,
7737         ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS,
7738         ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE,
7739         ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE,
7740         ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT,
7741         ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED,
7742         ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD,
7743         ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED,
7744         ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET,
7745         ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID,
7746         ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY,
7747         ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX,
7748         ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS,
7749         ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED,
7750         ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER,
7751         ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION,
7752         ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN,
7753         ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR,
7754         ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY,
7755         ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS,
7756         ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED,
7757         ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION,
7758         ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE,
7759         ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN,
7760         ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN,
7761         ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER,
7762         ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER,
7763         ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER,
7764         ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER,
7765         ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER,
7766         ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD,
7767         ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START,
7768         ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED,
7769         ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY,
7770         ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS,
7771         ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED):
7772         Add missing error codes.
7773
7774 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
7775
7776         * lib/kernel32.c (GetCurrentFiber): Remove blank input field in
7777         asm code.
7778         (GetFiberData): Likewise.
7779
7780 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
7781
7782         * include/winnt.h (GetCurrentFiber): Remove blank input field in
7783         asm code.
7784         (GetFiberData): Likewise.
7785
7786 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
7787
7788         * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT,
7789         ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED,
7790         ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR,
7791         ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED,
7792         ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION,
7793         ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED,
7794         ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID,
7795         OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing
7796         error codes.
7797         Re-sort codes.
7798
7799 2003-01-02  Danny Smith  <dannysmith@users.sourceforge.net>
7800
7801         * include/winspool.h (PRINTER_INFO_6): Add.
7802         Reported by: Mat Nieuwenhoven  <matnieuw@users.sourceforge.net>
7803
7804 2002-12-30  Hartmut Honisch  <hhonisch@users.sourceforge.net>
7805
7806         * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD.
7807
7808         * lib/ntdll.def (NtConnectPort, NtOpenEvent,
7809         NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort,
7810         ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject):
7811         Add stubs.
7812
7813 2002-12-30  Danny Smith  <dannysmith@users.sourceforge.net>
7814
7815         * include/wingdi.h (wglGetLayerPaletteEntries): Correct
7816         prototype. Thanks to: Joe Krahn  <jkrahn at nc dot rr dot com>.
7817
7818 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
7819
7820         * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR.
7821
7822 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
7823
7824         * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET,
7825         VIETNAMESE_CHARSET): Remove duplicate defines.
7826         * lib/comctl32.def (ImageList_SetImageCount): Add stub.
7827
7828 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
7829
7830         * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version.
7831         Thanks to: Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
7832
7833 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
7834
7835         * include/unknwn.h: Include windows.h and ole2.h before header
7836         guard to avoid circular inclusion of COM headers.
7837
7838 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
7839
7840         * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam,
7841         ReuseDDElParam): Use __WIN64 compatible typedefs.
7842
7843 2002-12-26  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
7844
7845         * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make
7846         lpInheritProperty member const.
7847         (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member
7848         const.
7849
7850 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
7851
7852         * include/commcat.h: Don't include windows.h or ole2.h ifdef
7853         COM_NO_WINDOWS_H.
7854         * include/unknwn.h: Ditto.
7855
7856 2002-12-26  Danny Smith  <dannysmith@users.sourceforge.net>
7857
7858         * include/imm.h (ImmGetCompositionFont[AW],
7859         ImmSetCompositionFont[AW]): Add NOGDI guard.
7860
7861 2002-12-19  Danny Smith  <dannysmith@users.sourceforge.net>
7862
7863         * include/ddk/hidusage.h: Remove unneccessary #pragma pack's.
7864         * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define
7865         before using.
7866         (VIDEO_ACCESS_RANGE): Guard against prior definition.
7867         * include/ddk/minitape.h (INQUIRYDATA): Guard against prior
7868         definition.
7869         * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro.
7870         * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's.
7871         * include/ddk/scsi.h (INQUIRYDATA): Guard against prior
7872         definition.
7873         * include/ddk/scsiwmi.h (GUID): Define if not already done.
7874         (LPCGUID): Likewise.
7875         * include/ddk/tdi.h: Close "Listen flags" comment.
7876         * include/ddk/tdistat.h: Remove unneccessary #pragma pack's.
7877         * include/ddk/video.h:  Add #pragma pack(push,4) to balance.
7878         (VIDEO_ACCESS_RANGE): Guard against prior definition.
7879         * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance.
7880         * include/ddk/win2k.h: Likewise.
7881         * include/ddk/winddi.h: Likewise.
7882         * include/ddk/winddk.h: Likewise.
7883         * include/ddk/winnt4.h: Likewise.
7884         * include/ddk/ws2san.h: Likewise.
7885         * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop).
7886         * include/ddk/video.h: Don't process rest of file ifdef
7887         __WINDDI_H.
7888         * include/ddk/winddi.h: Don't process rest of file ifdef
7889         __VIDEO_H.
7890         * include/ddk/usb.h: Don't process rest of file ifdef
7891         __USBDI_H.
7892         * include/ddk/usbdi.h: Don't process rest of file ifdef
7893         __USB_H.
7894         * include/ddk/usbcamdi.h: Don't process rest of file if
7895         !defined(__USB_H) && !defined(__USBDI_H)
7896
7897 2002-12-18  James E. Lucas  <xelloss@users.sourceforge.net>
7898
7899         * include/winnetwk.h (WNetResourceInformation[AW]): Correct
7900         prototypes.
7901         * include/winuser.h (GetAncestor) Add prototype.
7902         (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines.
7903         (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500.
7904         (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER,
7905         SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING
7906         SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add
7907         defines.
7908         * lib/user32.def (GetAncestor@8): Add stub.
7909
7910 2002-12-15  Danny Smith  <dannysmith@users.sourceforge.net>
7911
7912         * include/windows.h: Guard inclusion of wingdi.h,
7913         commdlg.h, winspool.h, ole2.h with NOGDI.
7914         * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS,
7915         ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings):
7916         Guard with NOGDI.
7917
7918 2002-12-12  Dimitri Papadopoulos  <dimitri_at@sourceforge.users.net>
7919
7920         * include/oleacc.h (SELFLAG_*): Change to enum.
7921
7922 2002-12-11  Danny Smith  <dannysmith@users.sourceforge.net>
7923
7924         * include/shlobj.h (IShellLinkW::GetPath): Correct prototype.
7925         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
7926
7927 2002-12-09  Danny Smith  <dannysmith@users.sourceforge.net>
7928
7929         * include/shellapi.h (ExtractIconEx[AW]): Correct return type
7930         to UINT.
7931         Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net>
7932
7933 2002-12-07  Danny Smith  <dannysmith@users.sourveforge.net>
7934
7935         * include/winuser.h (AllowSetForegroundWindow,
7936         LockSetForegroundWindow): Add prototypes.
7937         (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines.
7938         Thanks to:  Pat Thoyts  <patthoyts@users.sourceforge.net>
7939         * lib/winuser.def (AllowSetForegroundWindow,
7940         LockSetForegroundWindow): Add stubs.
7941
7942 2002-12-06  Ken Fitlike  <kenfitlike@users.sourceforge.net>
7943
7944         * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and
7945         UNICODE mappings.
7946         (tagNMTTDISPINFO[AW]): Replace obsolete struct names
7947         tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward
7948         compatability. Add lParam field. Add UNICODE mappings for new
7949         names.
7950
7951 2002-12-02  Andrew Stadt  <acstadt@sympatico.ca>
7952
7953         * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW):
7954         Wrap with pshpack2.h/poppack.h to correct alignment.
7955
7956 2002-12-02  Ken Fitlike  <kenfitlike@users.sourceforge.net>
7957
7958         * include/commctrl.h (LVBKIF_*): Add defines.
7959         (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings.
7960         (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings.
7961         (LVBKIMAGE[AW]): Add defines and UNICODE mappings.
7962         (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings.
7963         (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings.
7964         (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings.
7965         (ListView_GetBkImage): Add define.
7966         (ListView_SetBkImage): Add define.
7967         (LVBKIMAGE): Add structures and typedefs.
7968
7969 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
7970
7971         * include/w32api.h: Increment to version 2.2
7972         * Makefile.in: Ditto.
7973
7974 2002-11-25  Earnie Boyd  <earnie@users.sf.net>
7975
7976         * lib/Makefile.in (dist, install): Correct the install destinations.
7977         * lib/ddk/Makefile.in (dist, install): Ditto.
7978
7979 2002-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
7980
7981         * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol,
7982         CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite,
7983         IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug
7984         in definitions.
7985         (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11,
7986         IID_IOleControlSite89): Remove.
7987
7988 2002-11-15  Christopher Faylor  <cgf@redhat.com>
7989
7990         * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition.
7991         (IID_IStdMarshalInfo): Ditto.
7992
7993 2002-11-15  Christopher Faylor  <cgf@redhat.com>
7994
7995         * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition.
7996         (IID_IPersistStorage): Ditto.
7997
7998 2002-11-15  Weiqi Gao  <weiqigao@users.sourceforge.net>
7999
8000         * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators,
8001         IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo,
8002         IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage,
8003         IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo):
8004         Correct definitions.
8005
8006 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8007
8008         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8009         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8010         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8011         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8012         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8013         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8014         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8015         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8016         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8017         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8018         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8019         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8020         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8021         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8022         xfilter.h): Change comment to refer w32api package, not MinGW.
8023
8024 2002-11-15  Danny Smith  <dannysmith@users.sourceforge.net>
8025
8026         * include/ddk/ntddk.h: Include winnt.h as system header.
8027
8028 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8029
8030         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8031         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8032         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8033         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8034         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8035         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8036         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8037         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8038         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8039         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8040         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8041         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8042         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8043         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8044         xfilter.h): Fix typo in disclaimer comment.
8045
8046 2002-11-12  Danny Smith  <dannysmith@users.sourceforge.net>
8047
8048         * include/exdisp.h: Include oaidl.h as system header.
8049
8050 2002-11-12  Earnie Boyd  <earnie@users.sf.net>
8051
8052         * include/w32api.h (__W32API_VERSION): Fix.
8053
8054 2002-11-09  Weiqi Gao  <weiqigao@users.sourceforge.net>
8055
8056         * lib/uuid.c (IID_ICatInformation): Correct definition.
8057
8058 2002-11-07  Danny Smith  <dannysmith@users.sourceforge.net>
8059
8060         * include/oleauto.h (DeregisterTypeLib): Remove.
8061         (UnRegisterTypeLib): Add prototype.
8062
8063 2002-11-07  Christopher January  <chris@atomice.net>
8064
8065         * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE.
8066
8067 2002-11-04  Danny Smith  <dannysmith@users.sourceforge.net>
8068
8069         * include/winnt.h (VerSetConditionMask): Add prototype.
8070         * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs.
8071
8072 2002-10-16  Danny Smith  <dannysmith@users.sourceforge.net>
8073
8074         * include/winuser.h (MONITORINFOEX[AW]): Add structure
8075         definitions and ANSI/UNICODE mappings.
8076         Cleanup whitespace.
8077
8078 2002-10-14  Earnie Boyd  <earnie@users.sf.net>
8079
8080         * Makefile.in: Add components for lib/ddk.  Adjust for autoconf-2.53.
8081         * configure.in: Ditto.
8082         * lib/Makefile.in: Ditto.
8083         * lib/ddk/Makefile.in: Correct installation procedure.  Adjust for
8084         autoconf-2.53.
8085         * configure: Regenerate.
8086
8087 2002-10-14  Danny Smith  <dannysmith@users.sourceforge.net>
8088
8089         * include/windows.h: Don't include basetyps.h.
8090         * include/objfwd.h: Do include basetyps.h.
8091
8092 2002-10-13  Danny Smith  <dannysmith@users.sourceforge.net>
8093
8094         * include/objbase.h: Include rpc.h and rpcndr.h
8095         before header guard.
8096
8097 2002-10-11  Danny Smith  <dannysmith@users.sourceforge.net>
8098
8099         * include/olectl.h (PROPPAGEINFO): Change type of
8100         field cb to ULONG.
8101
8102 2002-10-11  Steven Edwards  <Steven_Ed4153@yahoo.com>
8103
8104         * lib/ntdll.def (RtlAcquireResourceExclusive,
8105         RtlAcquireResourceShared, RtlDeleteResource,
8106         RtlInitializeResource, RtlReleaseResource,
8107         RtlTimeToSecondsSince1970) : Added missing exports.
8108
8109 2002-10-08  Heiko Gerdau  <hg@technosis.de>
8110
8111         * include/oleacc.h: New file.
8112         * include/winuser.h (ENDSESSION_LOGOFF) Add define.
8113         (OBJID_*) Add defines.
8114         * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible.
8115         * lib/test.c: Include oleacc.h.
8116
8117 2002-10-06  Casper Hornstrup  <chorns@it.dk>
8118
8119         * include/ddk: New subdir.
8120         * lib/ddk: Ditto.
8121         * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h,
8122         d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h,
8123         miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h,
8124         ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h,
8125         netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h,
8126         ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h,
8127         ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h,
8128         ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h,
8129         ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h,
8130         poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h,
8131         storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h,
8132         upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h,
8133         usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h,
8134         winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h,
8135         xfilter.h): New files.
8136         * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def,
8137         hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def,
8138         scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def,
8139         win32k.def): Ditto.
8140
8141 2002-10-04  Steven Edwards  <Steven_Ed4153@yahoo.com>
8142
8143         * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken,
8144         NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey,
8145         NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken,
8146         NtOpenThreadToken, NtQueryInformationToken, NtQueryKey,
8147         NtQueryValueKey, NtSetSecurityObject, NtSetValueKey,
8148         RtlAddAccessAllowedAce, RtlCreateAcl,
8149         RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz,
8150         RtlGetAce, RtlGetControlSecurityDescriptor,
8151         RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor,
8152         RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor,
8153         RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd,
8154         RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD,
8155         RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize,
8156         RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor,
8157         RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor,
8158         RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor,
8159         ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey,
8160         ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey,
8161         ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken,
8162         ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey
8163         ZwSetSecurityObject, ZwSetValueKey): Added missing exports.
8164
8165 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8166
8167         *include/windef.h (WPARAM): Update typedef.
8168         (LPARAM): Ditto.
8169         (LRESULT): Ditto.
8170
8171 2002-10-04  "KJK::Hyperion"  <noog@libero.it>
8172
8173         * include/shlobj.h (CSIDL_*): Add defines.
8174
8175 2002-09-24  Danny Smith  <dannysmith@users.sourceforge.net>
8176
8177         * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h
8178         has been included first.
8179
8180 2002-09-24  René Møller Fonseca  <fonseca@users.sourceforge.net>
8181
8182         * include/winbase.h (FindFirstFileEx): Fixed ANSI mode.
8183         * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define.
8184         * include/winuser.h (AppendMenu[AW]): Fixed prototypes.
8185
8186 2002-09-18  Eric R. Krause  <ekrause_98@users.sourceforge.net>
8187
8188         * include/winuser.h (DS_SHELLFONT): Define.
8189
8190 2002-09-17  Daniel Schlyder  <daniel@dascdev.net>
8191
8192         * include/winnt.h (VER_SUITE_BLADE): Define.
8193
8194 2002-09-17  Danny Smith  <dannysmith@users.sourceforge.net>
8195
8196         * include/shlobj.h (SHGetSpecialFolderPath[AW]):
8197         Add _WIN32_IE guard. Correct prototype for wide version.
8198         (SHGetFolderPath): Add comment on shfolder.dll.
8199         (SHGetFolderLocation): Add prototyope for WinME and W2K.
8200         (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP.
8201
8202 2002-09-16  Danny Smith  <dannysmith@users.sourceforge.net>
8203
8204         * lib/shell32.def (SHGetFolderPath[AW]): Add comment.
8205         * lib/shfolder.def: New file.
8206
8207 2002-09-12  Danny Smith  <dannysmith@users.sourceforge.net>
8208
8209         * include/winsock.h (timeval): Guard struct and associated
8210         macros with _TIMEVAL_DEFINED.
8211         * include/winsock2.h (timeval): Likewise.
8212
8213 2002-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
8214
8215         * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW],
8216         SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker,
8217         SHCreateShellItem,SHEmptyRecycleBin[AW],
8218         SHEnumerateUnreadMailAccountsW,SHExtractIconsW,
8219         SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW],
8220         SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation,
8221         SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW],
8222         SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW,
8223         SHInvokePrinterCommand[AW],SHIsFileAvailableOffline,
8224         SHLoadNonloadedIconOverlayIdentifiers,
8225         SHOpenFolderAndSelectItems,SHParseDisplayName,
8226         SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW],
8227         SHSetLocalizedName,SHSetUnreadMailCountW,
8228         SHUpdateRecycleBinIcon: Add missing stubs.
8229
8230 2002-09-07  Earnie Boyd  <earnie@users.sf.net>
8231
8232         * include/windef.h (WINVER): Add documentation.
8233         (_WIN32_WINNT): Ditto.
8234         Special thanks to Paul Schmidt <paul@tricattechnologies.com>
8235
8236 2002-09-06  Danny Smith  <dannysmith@users.sourceforge.net>
8237
8238         * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666.
8239
8240 2002-09-04  Kevin Chase  <kevincha99@hotmail.com>
8241
8242         * include/winbase.h (AllocateUserPhysicalPages,
8243         MapUserPhysicalPages, MapUserPhysicalPagesScatter,
8244         FreeUserPhysicalPages): Add prototypes.
8245         * lib/kernel32.def: Add function stubs for above.
8246
8247 2002-09-03  René Møller Fonseca  <fonseca@users.sourceforge.net>
8248
8249         * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines.
8250         Add WINVER guards for dialog box command id defines.
8251
8252 2002-09-03  Earnie Boyd  <earnie@users.sf.net>
8253
8254         * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard.
8255
8256 2002-08-30  Christopher January  <ccj00@doc.ic.ac.uk>
8257
8258         * include/wincon.h: Define GetConsoleWindow(void).
8259
8260 2002-08-28  Earnie Boyd  <earnie@users.sf.net>
8261
8262         * include/w32api.h: Increment version to 2.1.
8263         * Makefile.in: Ditto.
8264
8265 2002-08-26  Bart Oldeman  <bart.oldeman@btinternet.com>
8266
8267         * include/winsock2.h (SOCKET_ADDRESS): Define if
8268         __CSADDR_T_DEFINED is not defined (copied from nspapi.h)
8269         (CSADDR_INFO): Ditto.
8270         (nspapi.h) : Don't include. Removed FIXME comment.
8271         * include/nspapi.h (SOCKET_ADDRESS) Only define if
8272         __CSADDR_T_DEFINED is not defined.
8273         (CSADDR_INFO): Ditto.
8274         (BLOB): Add structure and typedef if not already defined.
8275         (NS_*): Add defines.
8276         (SERVICE_*): Ditto.
8277         (SERVICE_ADDRESS): Add structure and typedefs.
8278         (SERVICE_ADDRESSES): Ditto.
8279         (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings.
8280         (LPSERVICE_ASYNC_INFO): Add typedef.
8281         (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE
8282         mappings.
8283         * include/wsipx.h: New file.
8284         * include/svcguid.h: New file.
8285         * lib/test.c: Include wspix.h and svcguid.h.
8286
8287 2002-08-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8288
8289         * include/wsahelp.h: New file.
8290         * lib/test.c: Include wsahelp.h.
8291
8292 2002-08-21  Earnie Boyd  <earnie@users.sf.net>
8293
8294         * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam.
8295         Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>.
8296
8297 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8298
8299         * include/ws2spi.h: Modify comment about being part of
8300         mingw32 package.
8301         (winsock2.h): Change "" to <>.
8302
8303 2002-08-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8304
8305         * include/ws2spi.h: New file.
8306         * lib/test.c: Include ws2spi.h.
8307
8308 2002-08-20  Danny Smith  <dannysmith@users.sourceforge.net>
8309
8310         * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook,
8311         WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated
8312         functions.
8313
8314 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8315
8316         * include/winuser.h (CURSOR_SHOWING) Add define.
8317         Thanks to: Jan Hlavatý  <hlavac@users.sourceforge.net>
8318
8319 2002-08-17  Danny Smith  <dannysmith@users.sourceforge.net>
8320
8321         * include/winerror.h: Cast OLE error codes to HRESULT.
8322         Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net>
8323
8324 2002-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
8325
8326         * include/wincrypt.h (ALG_*): Add defines.
8327         (CALG_*): Ditto.
8328         (CRYPT_*): Ditto.
8329         (PP_*): Ditto.
8330         (PROV_*): Ditto.
8331         (PRIVATEKEYBLOB): Add define.
8332
8333 2002-08-14  Earnie Boyd  <earnie@users.sf.net>
8334
8335         * include/shlobj.h (SHGetFolderPath): Add define.
8336         * lib/shell32.def (SHGetSpecialFolderPath): Add export.
8337         (SHGetFolderPath): Ditto.
8338
8339 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8340
8341         * include/commdlg.h: Don't include COM headers or use
8342         COM-dependent symbols if __OBJC__.
8343
8344 2002-08-13  Danny Smith  <dannysmith@users.sourceforge.net>
8345
8346         * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey):
8347         Add prototypes.
8348
8349 2002-08-12  Andriy Palamarchuk  <apa3a@yahoo.com>
8350
8351         * include/shellapi.h (FOF_NOERRORUI): Add define.
8352
8353 2002-08-12  Danny Smith  <dannysmith@users.sourceforge.net>
8354
8355         * include/objidl.h (IEnumMoniker): Put 'interface' back.
8356
8357 2002-08-11  Danny Smith  <dannysmith@users.sourceforge.net>
8358
8359         * include/objidl.h (IEnumMoniker): Correct declaration.
8360
8361 2002-08-09  Mark Schreiber  <mark7@users.sourceforge.net>
8362
8363         * include/wincrypt.h (CRYPT_NOHASHOID): Add define.
8364
8365 2002-08-09  Danny Smith  <dannysmith@users.sourceforge.net>
8366
8367         * include/commctrl.h: Whitespace change.
8368
8369 2002-08-09  Lars Munch  <lars@segv.dk>
8370
8371         * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete
8372         struct name _TVHITTESTINFO and typedefs and add defines for
8373         backward compatability.
8374         (ListView_SetExtendedListViewStyleEx): Add macro.
8375
8376 2002-08-05  Danny Smith  <dannysmith@users.sourceforge.net>
8377
8378         * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt):
8379         Add prototypes.
8380         * lib/msimg32.def: New file, with stubs for above.
8381
8382 2002-08-03  Danny Smith  <dannysmith@users.sourceforge.net>
8383
8384         * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx,
8385         GetFileSizeEx, SetFilePointerEx): Add prototypes.
8386         (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes
8387         and UNICODE mappings.
8388
8389 2002-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
8390
8391         * include/winbase.h (ReadFileScatter, WriteFileGather):
8392         Change second parameter to pointer.
8393
8394 2002-07-31  Danny Smith  <dannysmith@users.sourceforge.net>
8395
8396         * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and
8397         UNICODE mappings.
8398         * lib/wininet.def: Regenerate.
8399
8400 2002-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
8401
8402         * include/windef.h (PVOID): Move typedef to...
8403         * include/winnt: ...here.
8404         (PVOID64): New typedef.
8405
8406         * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union.
8407         * include/winbase.h (ReadFileScatter, WriteFileGather):
8408         Add prototypes.
8409
8410         * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines.
8411         (PROCESSOR_INTEL_IA64): Add define.
8412
8413 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8414
8415         * include/oleidl.h (MK_ALT): Define.
8416
8417 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8418
8419         * include/exdisp.h: New file.
8420         * include/exdispid.h: New file.
8421         * include/mshtml.h: New file.
8422         * lib/test.c: #include exdisp.h and mshtml.h
8423         * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents,
8424         DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2,
8425         IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange,
8426         IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp):
8427         New GUIDs.
8428
8429 2002-07-26  Mattia Barbon  <mbarbon@dsi.unive.it>
8430
8431         * include/docobj.h: New file.
8432         * include/idispids.h: New file.
8433         * include/objidl.h (IID_IMoniker): Declare.
8434         * include/ocidl.h (READYSTATE): New enum.
8435         (IOleInPlaceSiteEx): New interface.
8436         * include/olectlid.h (IID_IEnumSTATSTG): New interface
8437         identifier.
8438         * include/oleidl.h (IOleItemContainer, IOleInPlaceObject,
8439         IOleInPlaceSite): New interfaces.
8440         * lib/test.c: #include docobj.h,idispids.h,
8441
8442 2002-07-25  Danny Smith  <dannysmith@users.sourceforge.net>
8443
8444         * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines.
8445         (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them.
8446
8447 2002-07-25  Mattia Barbon  <mbarbon@dsi.unive.it>
8448
8449         * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST.
8450         * include/commdlg.h: Likewise.
8451
8452 2002-07-24  Danny Smith  <dannysmith@users.sourceforge.net>
8453
8454         * include/oleauto.h (V_UNION): Correct definition for case of
8455         NONAMELESSUNION:
8456         (V_VT): Likewise.
8457
8458 2002-07-23  Danny Smith  <dannysmith@users.sourceforge.net>
8459
8460         * include/oleauto.h (V_BOOL): Define in terms of boolVal,
8461         not bool, for C as well as C++.
8462
8463 2002-07-22  Danny Smith  <dannysmith@users.sourceforge.net>
8464
8465         * include/shlwapi.h: New file.
8466         Thanks to: Mattia Barbon  <mbarbon@dsi.unive.it> and
8467         Victor Porton  <porton@narod.ru> for contributions.
8468         * lib/shlwapi.def: New file.
8469         * lib/test.c: #include shlwapi.h.
8470
8471 2002-07-21  Bart Oldeman  <bart.oldeman@btinternet.com>
8472
8473         * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus
8474         character.
8475         * include/winsock2.h (struct sockaddr): Use __int64 instead of
8476         long long.
8477         * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom
8478         does not need external *Fiber library functions.
8479
8480 2002-07-20  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8481
8482         * include/winbase.h (GetEnvironmentStringsA): Remove duplicate
8483         definition.
8484         (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to
8485         avoid compile error when already defined.
8486
8487 2002-07-20  Steven Edwards  <Steven_Ed4153@yahoo.com>
8488
8489         * include/winuser.h (WM_MENURBUTTONUP): Add define.
8490
8491 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8492
8493         * include/commdlg.h: Define CDN_* notification message constants
8494         as UINT.
8495
8496 2002-07-17  Mattia Barbon  <mbarbon@users.sourceforge.net>
8497
8498         * include/commctrl.h: Define notification message constants for
8499         NMHDR.code as UINT.
8500
8501 2002-07-17   Bart Oldeman  <bart.oldeman@btinternet.com>
8502
8503         * include/ddeml.h (MH_*) Add defines.
8504         (MONHSZSTRUCT): Add structure and typedefs.
8505         (MONLINKSTRUCT): Ditto.
8506         (MONCONVSTRUCT): Ditto.
8507         (MONCBSTRUCT): Ditto.
8508         (MONERRSTRUCT): Ditto.
8509         (MONMSGSTRUCT): Ditto.
8510         * include/windef.h: Don't define __cdecl or _cdecl for
8511         __WATCOM__.
8512         Don't define _export or __export for __WATCOM__.
8513         * include/windows.h (imm.h): #include.
8514         * include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
8515
8516 2002-07-17  Danny Smith  <dannysmith@users.sourceforge.net>
8517
8518         * include/wtypes.h: Remove duplicate #includes of rpc.h and
8519         rpcndr.h.
8520
8521 2002-07-05  Luke Dunstan  <infidel@users.sourceforge.net>
8522
8523         * include/winbase.h (OpenThread): Add prototype.
8524         * lib/kernel32.def (OpenThread): Add symbol.
8525
8526 2002-07-04  Luke Dunstan  <infidel@users.sourceforge.net>
8527
8528         * include/wtypes.h (HMETAFILEPICT): Add typedef.
8529
8530 2002-07-04  Danny Smith  <dannysmith@users.sourceforge.net>
8531
8532         * include/rpc.h: Conditionally include <windows.h> before
8533         header guard.
8534         * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before
8535         header guard.
8536
8537 2002-07-02  Danny Smith  <dannysmith@users.sourceforge.net>
8538
8539         * include/commctrl.h (WC_*): Remove some duplicate defines.
8540
8541 2002-07-02  Ken Fitlike  <kenfitlike@hotmail.com>
8542
8543         * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and
8544         UNICODE mappings.
8545         (IPM*): Add defines.
8546         (IPN_*): Add defines.
8547         (NMIPADDRESS): Add structure and typedefs.
8548         (MAKEIPADDRESS): Add macro.
8549         (MAKEIPRANGE): Add macro.
8550         (FIRST_IPADDRESS): Add macro.
8551         (SECOND_IPADDRESS): Add macro.
8552         (THIRD_IPADDRESS): Add macro.
8553         (FOURTH_IPADDRESS): Add macro.
8554
8555 2002-06-25  Conrad Scott  <conrad.scott@dsl.pipex.com>
8556
8557         * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant.
8558
8559 2002-06-26  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8560
8561         * include/winbase.h (WINBASEAPI): Don't define if prior
8562         definition.
8563
8564         * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13,
8565         PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM,
8566         PARTITION_UNIX): Add defines.
8567         (PDRIVE_LAYOUT_INFORMATION): Add typedef.
8568         (IsRecognizedPartition): Also check for PARTITION_FAT32,
8569         PARTITION_FAT32_XINT13 and PARTITION_XINT13.
8570         (IsContainerPartition): Add macro.
8571
8572 2002-06-25  Ken Fitlike  <kenfitlike@hotmail.com>
8573
8574         * include/commctrl.h: (CBEIF_*): Add defines.
8575         (CBEN_*): Add defines and UNICODE mappings
8576         (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings.
8577         (CBEMAXSTRLEN): Add define.
8578         (COMBOBOXEXITEM[AW]): Add structures and typedefs.
8579         (NMCOMBOBOXEX[AW]): Add structures and typedefs.
8580         (NMCBEDRAGBEGIN[AW]): Add structure and typedefs.
8581         (NMCBEENDEDIT[AW]): Add structure and typedefs.
8582
8583 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
8584
8585         * include/objidl.h (struct tagPROPVARIANT): Kill obsolete
8586         union member _VARIANT_BOOL bool.
8587
8588 2002-06-24  Danny Smith  <dannysmith@users.sourceforge.net>
8589
8590         * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define.
8591
8592 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8593
8594         * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG,
8595         PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL,
8596         PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS):
8597         Add typedefs.
8598         (CCHAR): Correct typedef.
8599         (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE):
8600         Add defines.
8601
8602 2002-06-24  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8603
8604         * README.w32api: Correct spelling error.
8605
8606 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8607
8608         * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD,
8609         INPUT_HARDWARE): Add defines.
8610         (HDEVNOTIFY): Add typedef.
8611         (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT,
8612         tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and
8613         typedefs.
8614         (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW],
8615         GetClassInfoEx[AW],GetKeyboardLayoutList,
8616         MessageBoxIndirect[AW],MsgWaitForMultipleObjects,
8617         MsgWaitForMultipleObjectsEx, RegisterClass[AW],
8618         RegisterClassEx[AW]): Correct prototypes.
8619
8620 2002-06-19  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8621
8622         * include/ddeml.h (DdeCreateStringHandle{AW]:Correct
8623         prototypes.
8624         * include/winsvc.h (StartServiceW): Correct prototype.
8625         * include/winbase.h (BackupRead,BackupSeek,BackupWrite,
8626         FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW],
8627         GetTickCount,InterlockedExchangeAdd,
8628         WritePrivateProfileStruct[AW]: Correct prototypes.
8629         (GetEnvironmentStrings): Correct mapping to
8630         GetEnvironmentStringsA.
8631         * include/winver.h (VerQueryValueA,VerQueryValueW):
8632         Correct prototypes.
8633         * include/wincon.h (CreateConsoleScreenBuffer): Correct
8634         prototype.
8635         * include/winreg.h (RegQueryMultipleValues[AW],
8636         RegQueryValueEx[AW]):Correct prototypes.
8637         * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA,
8638         PPOLYTEXTW): Add typedefs.
8639         (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add
8640         structures and typedefs.
8641         (MM_MAX_NUMAXES): Add define.
8642         (EnumFontsW,GetEnhMetaFilePixelFormat,
8643         wglGetLayerPaletteEntries): Correct prototypes.
8644         * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT,
8645         RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION,
8646         RPC_S_SEND_INCOMPLETE): Add defines.
8647
8648 2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
8649
8650         * include/windef.h (_fastcall, __fastcall, FASTCALL):
8651         Add defines.
8652
8653 2002-06-16  Egor Duda  <deo@logos-m.ru>
8654
8655         * include/ntdll.h: New file.
8656         * lib/ntdll.def: Add NtShutdownSystem.
8657
8658 2002-06-16  Steven Edwards  <Steven_Ed4153@yahoo.com>
8659
8660         * lib/dinput.def (DirectInputCreateEx): Add stub.
8661         * lib/ntdll.def: New file.
8662
8663 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
8664
8665         * include/w32api.h: Change to version 2.0 to reflect the change
8666         in the license.
8667         * README: Renamed.
8668         * README.w32api: Renamed from README.  Modified license to remove
8669         the restriction of notifying the author based on the fact that the
8670         author is unreachable at the notified address.
8671         * Makefile.in (VERSION): Change to 2.0.
8672
8673 2002-06-14  Earnie Boyd  <earnie@users.sf.net>
8674
8675         * include/wingdi.h (GetEnhMetaFileBits): Correct typo.
8676         * Makefile.in (bindist): Correct the MinGW distribution.
8677
8678 2002-06-13  Earnie Boyd  <earnie@users.sf.net>
8679
8680         * include/winuser.h (MOUSEHOOKSTRUCT): Define structure.
8681         * include/wingdi.h (GetEnhMetaFileBits): Define prototype.
8682
8683 2002-06-13  Danny Smith  <dannysmith@users.sourceforge.net>
8684
8685         * lib/test.c: #include comcat.h.
8686
8687 2002-06-13  John K. Hohm  <jhohm@acm.org>
8688
8689         * include/comcat.h: New file.
8690
8691 2002-06-09  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
8692
8693         * include/richedit.h (EM_*, TM_*, GT_*): Add new defines.
8694         (GETTEXTEX): Add structure definition.
8695
8696 2002-06-08  Danny Smith  <dannysmith@users.sourceforge.net>
8697
8698         * include/windows.h (ole2.h): #include if !__OBJC__ and
8699         __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN.
8700
8701 2002-06-07  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
8702
8703         * include/mapi.h: Change LPTSTR to LPSTR throughout.
8704
8705 2002-06-05  Danny Smith  <dannysmith@users.sourceforge.net>
8706
8707         * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE,
8708         PACCESS_DENIED_ACE): Add typedefs.
8709
8710 2002-06-03  Danny Smith  <dannysmith@users.sourceforge.net>
8711
8712         * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll.
8713
8714 2002-06-03 Steven Edwards  <Steven_Ed4153@yahoo.com>
8715
8716         * lib/kernel32.def (ConvertToGlobalHandle): Add stub.
8717
8718 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
8719
8720         * include/windef.h: Fix typo in last change.
8721
8722 2002-06-01  Danny Smith  <dannysmith@users.sourceforge.net>
8723
8724         * include/windef.h: Add no-op __try, __except, __finally
8725         defines from ...
8726         * include/excpt.h: Remove file.
8727         * include/windows.h: Don't include excpt.h.
8728
8729 2002-05-30  Christopher January  <chris@atomice.net>
8730
8731         * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING):
8732         Add missing typedefs.
8733
8734 2002-05-28  Earnie Boyd  <earnie@users.sf.net>
8735
8736         * include/w32api.h: Increment version to 1.5
8737         * Makefile.in: Ditto.
8738
8739
8740 2002-05-27  René Møller Fonseca  <fonseca@users.sourceforge.net>
8741
8742         * include/winreg.h: (RegConnectRegistry[AW]): Replace
8743         LP[W]STR with LPC[W]STR.
8744         (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines.
8745         Clean up whitespace.
8746
8747 2002-05-27  Rick Rankin  <rick_rankin@yahoo.com>
8748
8749         * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER.
8750
8751 2002-05-21  Earnie Boyd  <earnie@users.sf.net>
8752
8753         * Makefile.in: Increment VERSION to 1.4.
8754         (conf_prefix): New variable.
8755         (bindist): Modify target to use $(conf_prefix).
8756
8757 2002-05-20  Philip Aston  <philipa@mail.com>
8758
8759         * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7.
8760
8761 2002-05-20  René Møller Fonseca  <fonseca@users.sourceforge.net>
8762
8763         * include/lmaccess.h: (NetAccess*, NetGroup*,
8764         NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2],
8765         NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR.
8766
8767 2002-05-08  Danny Smith  <dannysmith@users.sourceforge.net>
8768
8769         * include/commctrl.h (ImageList_DragShowNolock): Remove
8770         conflicting redeclaration.
8771
8772 2002-05-07  Danny Smith  <dannysmith@users.sourceforge.net>
8773
8774         * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT,
8775         STRICT and related defines to ...
8776         * include/windef.h: Here.
8777
8778 2002-05-03  Danny Smith  <dannysmith@users.sourceforge.net>
8779
8780         * include/winsock2.h (int32): Remove typedef.
8781         (SERVICETYPE): Add typedef.
8782         (struct _flowspec):Revise struct definition,  Comment
8783         on types used for members.
8784
8785 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
8786
8787         * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove
8788         more defines added in earlier change.
8789         * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag.
8790
8791 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
8792
8793         * include/winnt.h (THREAD_PRIORITY_*): Remove defines
8794         added in last change.
8795
8796 2002-05-02  Danny Smith  <dannysmith@users.sourceforge.net>
8797
8798         * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*,
8799         SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines.
8800
8801 2002-05-01  Manu B  <contact.manu@wanadoo.fr>
8802
8803         * include/commctrl.h (SNDMSG): Define and use throughout
8804         in other macros instead of SendMessage.
8805         * include/commdlg.h (SNDMSG): Ditto.
8806
8807 2002-04-22  José Fonseca  <jrfonseca@users.sf.net>
8808
8809         * include/GL/gl.h: New file.
8810         * include/GL/glext.h: Ditto.
8811         * include/GL/glu.h: Ditto.
8812
8813 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
8814
8815         * include/w32api.h: Increment version.
8816         * Makefile.in: Ditto.
8817
8818 2002-04-09  Earnie Boyd  <earnie@users.sf.net>
8819
8820         * Makefile.in (bindist): Use * instead of . for file list for tar
8821         command.
8822
8823 2002-04-02  Danny Smith  <dannysmith@users.sourceforge.net>
8824
8825         * include/wtypes.h (enum tagCLSCTX): Change formatting.
8826
8827 2002-04-02  Pat Thoyts  <patthoyts@users.sourceforge.net>
8828
8829         * include/objidl.h (IRunningObjectTable.Register): Correct
8830         prototype.
8831         * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE,
8832         ROTFLAGS_ALLOWANYCLIENT): Add defines.
8833
8834 2002-03-31  Victor Porton  <porton@narod.ru>
8835
8836         * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define.
8837
8838 2002-03-29  David Robinow  <drobinow@yahoo.com>
8839
8840         * include/wingdi.h (SetPixelFormat): Correct prototype.
8841
8842 2002-03-29  Phil Krylov  <likewolf@users.sourceforge.net>
8843
8844         * include/richedit.h (EM_SHOWSCROLLBAR): Add define.
8845
8846 2002-03-26  Phil Krylov  <likewolf@users.sourceforge.net>
8847
8848         * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS):
8849         Add defines.
8850
8851 2002-03-14  Gunnar Degnbol  <gdegnbol@users.sourceforge.net>
8852
8853         * include/richedit.h (RICHEDIT_CLASS): UNICODE it.
8854         * include/shlobj.h (IContextMenu2): Put methods in right order.
8855         * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for
8856         CINTERFACE before defining.
8857
8858 2002-03-09  Danny Smith  <dannysmith@users.sourceforge.net>
8859
8860         * include/accctrl.h: Add #pragma GCC system_header
8861         if __GNUC__ >= 3.
8862         * include/aclapi.h: Same.
8863         * include/basetsd.h: Same.
8864         * include/basetyps.h: Same.
8865         * include/cderr.h: Same.
8866         * include/cguid.h: Same.
8867         * include/commctrl.h: Same.
8868         * include/commdlg.h: Same.
8869         * include/cpl.h: Same.
8870         * include/cplext.h: Same.
8871         * include/custcntl.h: Same.
8872         * include/dbt.h: Same.
8873         * include/dde.h: Same.
8874         * include/ddeml.h: Same.
8875         * include/dlgs.h: Same.
8876         * include/excpt.h: Same.
8877         * include/httpext.h: Same.
8878         * include/imagehlp.h: Same.
8879         * include/imm.h: Same.
8880         * include/initguid.h: Same.
8881         * include/intshcut.h: Same.
8882         * include/ipexport.h: Same.
8883         * include/iphlpapi.h: Same.
8884         * include/ipifcons.h: Same.
8885         * include/iprtrmib.h: Same.
8886         * include/iptypes.h: Same.
8887         * include/isguids.h: Same.
8888         * include/largeint.h: Same.
8889         * include/lm.h: Same.
8890         * include/lmaccess.h: Same.
8891         * include/lmalert.h: Same.
8892         * include/lmapibuf.h: Same.
8893         * include/lmat.h: Same.
8894         * include/lmaudit.h: Same.
8895         * include/lmbrowsr.h: Same.
8896         * include/lmchdev.h: Same.
8897         * include/lmconfig.h: Same.
8898         * include/lmcons.h: Same.
8899         * include/lmerr.h: Same.
8900         * include/lmerrlog.h: Same.
8901         * include/lmmsg.h: Same.
8902         * include/lmremutl.h: Same.
8903         * include/lmrepl.h: Same.
8904         * include/lmserver.h: Same.
8905         * include/lmshare.h: Same.
8906         * include/lmsname.h: Same.
8907         * include/lmstats.h: Same.
8908         * include/lmsvc.h: Same.
8909         * include/lmuse.h: Same.
8910         * include/lmuseflg.h: Same.
8911         * include/lmwksta.h: Same.
8912         * include/lzexpand.h: Same.
8913         * include/mapi.h: Same.
8914         * include/mciavi.h: Same.
8915         * include/mcx.h: Same.
8916         * include/mmsystem.h: Same.
8917         * include/mswsock.h: Same.
8918         * include/nb30.h: Same.
8919         * include/nddeapi.h: Same.
8920         * include/nspapi.h: Same.
8921         * include/ntdef.h: Same.
8922         * include/ntsecapi.h: Same.
8923         * include/ntsecpkg.h: Same.
8924         * include/oaidl.h: Same.
8925         * include/objbase.h: Same.
8926         * include/objfwd.h: Same.
8927         * include/objidl.h: Same.
8928         * include/odbcinst.h: Same.
8929         * include/ole.h: Same.
8930         * include/ole2.h: Same.
8931         * include/ole2ver.h: Same.
8932         * include/oleauto.h: Same.
8933         * include/olectl.h: Same.
8934         * include/olectlid.h: Same.
8935         * include/oledlg.h: Same.
8936         * include/oleidl.h: Same.
8937         * include/pbt.h: Same.
8938         * include/prsht.h: Same.
8939         * include/psapi.h: Same.
8940         * include/rapi.h: Same.
8941         * include/ras.h: Same.
8942         * include/raserror.h: Same.
8943         * include/rassapi.h: Same.
8944         * include/regstr.h: Same.
8945         * include/richedit.h: Same.
8946         * include/richole.h: Same.
8947         * include/rpc.h: Same.
8948         * include/rpcdce.h: Same.
8949         * include/rpcdce2.h: Same.
8950         * include/rpcdcep.h: Same.
8951         * include/rpcndr.h: Same.
8952         * include/rpcnsi.h: Same.
8953         * include/rpcnsip.h: Same.
8954         * include/rpcnterr.h: Same.
8955         * include/rpcproxy.h: Same.
8956         * include/schannel.h: Same.
8957         * include/schnlsp.h: Same.
8958         * include/scrnsave.h: Same.
8959         * include/security.h: Same.
8960         * include/setupapi.h: Same.
8961         * include/shellapi.h: Same.
8962         * include/shlguid.h: Same.
8963         * include/shlobj.h: Same.
8964         * include/sql.h: Same.
8965         * include/sqlext.h: Same.
8966         * include/sqltypes.h: Same.
8967         * include/sqlucode.h: Same.
8968         * include/sspi.h: Same.
8969         * include/subauth.h: Same.
8970         * include/tlhelp32.h: Same.
8971         * include/unknwn.h: Same.
8972         * include/userenv.h: Same.
8973         * include/w32api.h: Same.
8974         * include/winbase.h: Same.
8975         * include/wincon.h: Same.
8976         * include/wincrypt.h: Same.
8977         * include/windef.h: Same.
8978         * include/windows.h: Same.
8979         * include/windowsx.h: Same.
8980         * include/winerror.h: Same
8981         * include/wingdi.h: Same.
8982         * include/wininet.h: Same.
8983         * include/winioctl.h: Same.
8984         * include/winnetwk.h: Same.
8985         * include/winnls.h: Same.
8986         * include/winnt.h: Same.
8987         * include/winperf.h: Same.
8988         * include/winreg.h: Same.
8989         * include/winresrc.h: Same.
8990         * include/winsock.h: Same.
8991         * include/winsock2.h: Same.
8992         * include/winspool.h: Same.
8993         * include/winsvc.h: Same.
8994         * include/winuser.h: Same.
8995         * include/winver.h: Same.
8996         * include/ws2tcpip.h: Same.
8997         * include/wsnetbs.h: Same.
8998         * include/wtypes.h: Same.
8999         * include/zmouse.h: Same.
9000         * include/mapi.h: Change header guard name to _MAPI_H  for
9001         consistency.
9002
9003 2002-03-08  Danny Smith  <dannysmith@users.sourceforge.net>
9004
9005         * include/accctrl.h (_ACCCTRL_H): Correct typo.
9006         Remove unnecessary inclusion of <wtypes.h>.
9007         * ChangeLog: Fix omission of name in recent entries.
9008
9009 2002-03-08  Antony Blakey  <antony.blakey@ihug.com.au>
9010
9011         * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define.
9012
9013 2002-03-06  Danny Smith  <dannysmith@users.sourceforge.net>
9014
9015         * include/mswsock.h: Group winsock2 dependants
9016         together and protect with #ifdef _WINSOCK2_H.
9017         * lib/test.c: Only test ws2tcpip.h if winsock2.h
9018         has been included.
9019
9020 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
9021
9022         * include/mswsock.h (TP_*): Add new defines.
9023         (TRANSMIT_PACKETS_ELEMENT): Define new structure.
9024         (WSAMSG): Likewise.
9025         (WSACMSGHDR): Likewise.
9026         (DisconnectEx): Add new prototype.
9027         (WSARecvMsg): Likewise.
9028         (WSA_CMSG_*) Add empty macros, guarded by #if 0.
9029
9030 2002-03-02  Danny Smith  <dannysmith@users.sourceforge.net>
9031
9032         * ChangeLog: Fix typo in last entry.
9033         * include/winsock2.h (IPPROTO_*): Add IPv6 defines.
9034         * include/ws2tcpip.h: (IP_*): Add new defines.
9035         (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines.
9036         (NI_*): Add getnameinfo constants and bitmasks.
9037         (AI_*): Add getaddrinfo flags.
9038         (EAI_*): Add getaddrinfo error codes.
9039         (ip_mreq_source): Add new structure.
9040         (ip_msfilter): Add new structure.
9041         (IP_MSFILTER_SIZE): Add new macro.
9042         (in_pktinfo): Add new structure.
9043         Add preliminary IPv6 support.
9044         (in6_addr): Add new structure and some defines.
9045         (sockaddr_in6): Add new structure.
9046         (in6addr_any, in6addr_loopback): Declare extern structures.
9047         (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add
9048         initialization macros for above.
9049         (IN6_ARE_ADDR_EQUAL): Define macro.
9050         (IN6_IS_ADDR_*): Define address testing macros.
9051         (socklen_t) Add new typedef.
9052         (ipv6_mreq): Add new structure.
9053         (in6_pktinfo): Same.
9054         (addrinfo): Same.
9055         (freeaddrinfo):Add new prototype.
9056         (getaddrinfo): Same.
9057         (gai_strerror[AW]): Same.
9058         (getnameinfo): Same.
9059         (sockaddr_in6_old): Add structure.
9060         (sockaddr_gen): Add union definition.
9061         (INTERFACE_INFO): Use sockaddr_gen as members.
9062         (INTERFACE_INFO_OLD): Add comment on workaround for problems
9063         with INTERFACE_INFO on NT4 prior to sp4.
9064
9065 2002-02-28  Danny Smith  <dannysmith@users.sourceforge.net>
9066
9067         * include/windows.h: Remove test for __W32API_MAJOR_VERSION
9068         when selecting winsock interface.
9069         * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure
9070         and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>.
9071         Expand FIXME comment.
9072         (WSACOMPLETIONTYPE): Add enum.
9073         (WSACOMPLETION): Add structure and typedefs.
9074         (WSANSPIoctl): Add function prototpe and callback typedef.
9075         (SIO_NSP_NOTIFY_CHANGE): Add define.
9076         (sockaddr_storage): Add structure and typedefs.
9077
9078 2002-02-16  Andriy Palamarchuk  <apa3a@yahoo.com>
9079
9080         * include/winuser.h (OIC_*): Add resource constants.
9081
9082 2002-02-14 Mattia Barbon  <mbarbon@users.sourceforge.net>
9083
9084         * include/ntsecpkg.h: New file.
9085         * include/schannel.h: New file.
9086         * include/schnlsp.h: New file.
9087         * include/security.h: New file.
9088         * include/sspi.h: New file.
9089         * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT,
9090         MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants
9091         * include/wincrypt.h (CALG_*, X509_ASN_ENCODING.
9092         PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND,
9093         USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants
9094         (struct _CRYPTOAPI_BLOB): Add structure and typedefs.
9095         (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData,
9096         CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS,
9097         CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB,
9098         CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT,
9099         CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH,
9100         CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA,
9101         CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT,
9102         CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO,
9103         CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO,
9104         CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN,
9105         CERT_CHAIN_CONTEXT): Add missing structures.
9106         (CertCloseStore, CertGetCertificateChain,
9107         CertVerifyCertificateChainPolicy, CertFreeCertificateChain,
9108         CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore,
9109         CertFindCertificateInStore, CertFreeCertificateContext,
9110         CertGetIssuerCertificateFromStore,
9111         CertFindChainInStore): Add missing functions.
9112         (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR,
9113         CERT_FIND_ISSUER_STR): Add Unicode mappings.
9114         * lib/crypt32.def: New file.
9115         * lib/secur32.def: Add mising stubs.
9116         * lib/test.c: Include new headers.
9117
9118 2002-02-14  Danny Smith  <dannysmith@users.sourceforge.net>
9119
9120         * include/windef.h (PROC,FARPROC,NEARPROC): Remove void
9121         parameter.
9122
9123 2002-01-30  Danny Smith  <dannysmith@users.sourceforge.net>
9124
9125         * lib/test.c: Include mapi.h.
9126         * include/commctrl.h (TBSTYLE_*): Add missing defines.
9127         Thanks to: "Ron"  <ron@debian.org>
9128
9129 2002-01-30  John Fattaruso  <fattaruso@ieee.org>
9130
9131         * include/mapi.h: New file.
9132         * lib/mapi.def: Add missing function stubs.
9133
9134 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9135
9136         * include/winuser.h (GetWindowLongPtr[AW],
9137         SetWindowLongPtr[AW]): Add prototypes for _WIN64.
9138
9139 2002-01-28  Mattia Barbon  <mbarbon@users.sourceforge.net>
9140
9141         * include/winuser.h (GWLP_*,DWLP_*): Add missing constants.
9142         (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to
9143         {Get Set}WindowLong[AW], as in Win32 they are equivalent.
9144         (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings.
9145
9146 2002-01-28  Danny Smith  <dannysmith@users.sourceforge.net>
9147
9148         * lib/test.c: Include wsnetbs.h.
9149
9150 2002-01-28  Kai Henningsen  <kai-henningsen@users.sourceforge.net>
9151
9152         * include/wsnetbs.h: New file.
9153
9154 2002-01-25  Earnie Boyd  <earnie@users.sf.net>
9155
9156         * include/winnt.h: Remove merge conflict.
9157
9158 2002-01-25  Danny Smith  <dannysmith@users.sourceforge.net>
9159
9160         * include/winnt.h (_TCHAR): Add typedefs.
9161
9162 2002-01-25  Tim Hughes  <tjh@delcam.com>
9163
9164         * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing
9165         defines.
9166
9167 2002-01-25  Andriy Palamarchuk  <apa3a@yahoo.com>
9168
9169         * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE):
9170         Add defines.
9171         (LPACCESSTIMEOUT): Add typedef.
9172
9173 2002-01-24  Phillip Susi  <psusi@cfl.rr.com>
9174
9175         * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines.
9176
9177 2002-01-24  Danny Smith  <dannysmith@users.sourceforge.net>
9178
9179         * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to
9180         _HDITEM[AW], with parallel changes to typedefs. Use defines for
9181         backward compatability with old names. Update UNICODE mappings.
9182         (HDLAYOUT): Remove struct _HD_LAYOUT_XP.  Use new typedefs
9183         for struct _HD_LAYOUT and add defines for backward
9184         compatability with old names.
9185         (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with
9186         parallel chages to typedefs. Add defines for backward
9187         compatability with old names.
9188         (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard.
9189
9190 2002-01-21  Robert Collins  <rbtcollins@hotmail.com>
9191
9192         * include/winnt.h: Add missing MEM_ defines, and convert existing to
9193         hex for readability.
9194
9195 2002-01-17  Marcus Geelnard  <marcus.geelnard@home.se>
9196
9197         * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct
9198         and typedefs.
9199         (SPI_SETSCREENSAVERRUNNING): Add define.
9200         (LLKHF_ALTDOWN): Add define.
9201         * include/wingdi.h (PFD_GENERIC_ACCELERATED,
9202         PFD_DEPTH_DONTCARE): Add defines.
9203
9204 2002-01-17  Danny Smith  <dannysmith@users.sourceforge.net>
9205
9206         * include/objbase.h (CoGetObject): Add prototype.
9207
9208 2002-01-14  Timothy J. Wood  <tjw@omnigroup.com>
9209
9210         * include/winuser.h (ENUM_CURRENT_SETTINGS,
9211         ENUM_REGISTRY_SETTINGS): Add defines.
9212
9213 2002-01-14  Danny Smith  <dannysmith@users.sourceforge.net>
9214
9215         * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant.
9216         (FILE_ATTRIBUTE_DEVICE): Add define.
9217
9218 2002-01-14  Corinna Vinschen  <vinschen@redhat.com>
9219
9220         * include/winnt.h: Add INVALID_FILE_ATTRIBUTES.
9221
9222 2002-01-11  Danny Smith  <dannysmith@users.sourceforge.net>
9223
9224         * ChangeLog: correct date in last entry.
9225
9226 2002-01-11  Timothy J. Wood  <tjw@omnigroup.com>
9227
9228         * include/winuser.h (MONITORENUMPROC): Add typedef.
9229         (EnumDisplayMonitors): Add prototype.
9230         * lib/user32.def (EnumDisplayMonitors): Add stub.
9231
9232 2002-01-11 Ralf Habacker  <Ralf.Habacker@freenet.de>
9233
9234         * include/ntsecapi.h:  Fixed missing void parameter type in some
9235         prototypes.
9236         * include/objbase.h: Ditto.
9237         * include/rapi.h: Ditto.
9238         * include/rpc.h: Ditto.
9239         * include/rpcdce.h: Ditto.
9240         * include/rpcdcep.h: Ditto.
9241         * include/rpcndr.h: Ditto.
9242         * include/rpcnsip.h: Ditto.
9243         * include/rpcproxy.h: Ditto.
9244         * include/windef.h: Ditto.
9245
9246 2002-01-07  Danny Smith  <dannysmith@users.sourceforge.net>
9247
9248         * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL.
9249
9250 2002-01-04  TAMURA Kent  <tkent@users.sourceforge.net>
9251
9252         * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED,
9253          LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines.
9254         * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED,
9255         WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE,
9256         WS_EX_NOINHERITLAYOUT): Add defines.
9257         * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE,
9258         PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN,
9259         MEM_WRITE_WATCH): Add defines.
9260
9261
9262 2002-01-04  Danny Smith  <dannysmith@users.sourceforge.net>
9263
9264         * include/winbase.h (InitializeCriticalSectionAndSpinCount):
9265         Add prototype.
9266         (SetCriticalSectionSpinCount): Likewise.
9267
9268 2001-12-30  Guido Serassio  <serassio@libero.it>
9269
9270         * include/winsvc.h: Add EnumServiceStatusEx(),
9271         QueryServiceStatusEx()
9272         & RegisterServiceCtrlHandlerEx()
9273
9274 2001-12-21  Robert Collins  <rbtcollins@hotmail.com>
9275
9276         * include/wingdi.h: Add GetRandomRgn and SYSRGN.
9277
9278 2001-12-20  Christopher Faylor  <cgf@redhat.com>
9279
9280         * lib/Makefile.in: Revert inst_installdir definitions to working
9281         versions.
9282
9283 2001-12-17  Guido Serassio  <serassio@libero.it>
9284
9285         * include/winsvc.h: Add ChangeServiceConfig2() &
9286         QueryServiceConfig2() definition
9287
9288 2001-12-17  Robert Collins  <rbtcollins@hotmail.com>
9289
9290         * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based
9291         on MSDN documentation for XP.
9292
9293 2001-12-15  Andrew Begel  <abegel@eecs.berkeley.edu>
9294
9295         * include/winbase.h (CreateHardLink): Correct typo in UNICODE
9296         mappings.
9297
9298 2001-12-11  Phillip Susi  <psusi@cfl.rr.com>
9299
9300         * include/commctrl.h (ACS_*): Add new defines.
9301         (PGS_*): Ditto.
9302         (CBES_*): Ditto.
9303         (TBSTYLE_*): Ditto.
9304         (TB_*): Ditto.
9305         (TTS_*): Ditto.
9306         (UDS_HOTTRACK): Add define.
9307         (SBT_TOOLTIPS): Ditto.
9308         (TBS_*): Add new defines.
9309         (HDS_*): Ditto.
9310         (LVS_EX_*) Ditto.
9311         (LVKF_*): Ditto.
9312         (TCM_GETEXTENDEDSTYLE): Add define.
9313         (TVS_NOHSCROLL): Ditto.
9314         (TVIF_INTEGRAL): Ditto.
9315         (DTS_SHORTDATECENTURYFORMAT): Ditto.
9316         (TCS_*): Add new defines.
9317         (CBEM_*): Add defines.
9318         (tagNMITEMACTIVATE): Add structure definition and typedefs.
9319         (tagTVITEMEX[AW]: Ditto.
9320         (tagTVINSERTSTRUCT[AW]: Add union member.
9321         * include/winbase.h (VirtualAllocEx): Add prototype.
9322         * include/winuser.h (SS_*): Add new defines.
9323
9324 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9325
9326         * Makefile.in: Increment VERSION.
9327         * include/w32api.h: Ditto.
9328
9329 2001-12-07  Earnie Boyd  <earnie@users.sf.net>
9330
9331         * Makefile.in: Increment VERSION.
9332         * include/w32api.h: Ditto.
9333
9334 2001-12-07  Danny Smith  <dannysmith@users.sourceforge.net>
9335
9336         * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW],
9337         SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey,
9338         SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey,
9339         SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey,
9340         SetupDiOpenDevRegKey): Correct function names.
9341
9342 2001-12-04  Earnie Boyd  <earnie@users.sf.net>
9343
9344         * include/winuser.h (IDC_STATIC): Don't define.
9345
9346 2001-12-04  Danny Smith  <dannysmith@users.sourceforge.net>
9347
9348         Cleanup merge between SourceForge and winsup CVS.
9349         * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove
9350         definitions.
9351         * include/winnt.h (VER_NT*): Remove duplicate defines.
9352         (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines.
9353
9354 2001-12-03  Earnie Boyd  <earnie@users.sf.net>
9355
9356         * include/accctrl.h: Change \r\n to \n.
9357
9358 2001-11-30  Danny Smith  <dannysmith@users.sourceforge.net>
9359
9360         * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS):
9361         Add structure definition.
9362         * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto.
9363         * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry,
9364         DeleteIPAddress,DeleteProxyArpEntry,EnableRouter,
9365         FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo,
9366         GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress,
9367         UnenableRouter) Declare functions.
9368         * lib/iphlpapi.def: Add function names to import lib.
9369
9370 2001-11-24  Danny Smith  <dannysmith@users.sourceforge.net>
9371
9372         * include/winnt.h (PACCESS_MASK): Add typedef.
9373         * include/aclapi.h: New file.
9374         * include/acctrl.h: New file.
9375         * lib/advapi32.def: Add missing symbols.
9376         * lib/test.c: Add #include <aclapi.h>.
9377
9378 2001-11-23  Danny Smith  <dannysmith@users.sourceforge.net>
9379
9380         * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s,
9381         VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from
9382         here ...
9383         * include/winnt.h: ... to here.
9384         * include/winbase.h (VerifyVersionInfo[AW]): Add declaration.
9385         * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions
9386         and typedefs.
9387         (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER):
9388         Add defines.
9389
9390 2001-11-19  Pierre Muller  <muller@ics.u-strasbg.fr>
9391
9392         * w32api/include/winnt.h: prepare SSE register support.
9393         (CONTEXT_EXTENDED_REGISTERS): Add new define.
9394         (MAXIMUM_SUPPORTED_EXTENSION): New define.
9395         (struct CONTEXT): ExtendedRegisters field added.
9396
9397 2001-11-16  Danny Smith  <dannysmith@users.sourceforge.net>
9398
9399         * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO,
9400         tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO
9401         tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO,
9402         tagLASTINPUTINFO ): Define new structures.
9403         (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo,
9404         GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo,
9405         GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo,
9406         GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo
9407         SetMenuInfo): Add new prototypes.
9408         * lib/user32.def: Add import stubs for above functions.
9409
9410         * include/winuser.h (IDC_STATIC): Protect against prior
9411         definition.
9412
9413 2001-11-12  Corinna Vinschen  <corinna@vinschen.de>
9414
9415         * include/winbase.h (OSVERSIONINFOEX): Add definition.
9416         * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines.
9417
9418 2001-11-10  Robert Collins  <rbtcollins@hotmail.com>
9419
9420         * include/winnt.h: Add Danny Smith's text comment about gcc compiler
9421         warnings with _AUTHORITY #defines.
9422
9423 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9424
9425         * include/winnt.h (GetCurrentFiber): Create a prototype before the
9426         implementation.
9427         (GetFiberData): Ditto.
9428
9429 2001-11-09  Robert Collins  <rbtcollins@hotmail.com>
9430
9431         * include/winnt.h: Backout last change.
9432
9433 2001-11-08  Robert Collins  <rbtcollins@hotmail.com>
9434
9435         * include/winnt.h: Define *_SID_AUTHORITY appropriately,
9436         GetCurrentFiber: Create a prototype before the implementation.
9437         GetFiberData: Ditto.
9438
9439 2001-11-06  Danny Smith  <dannysmith@users.sourceforge.net>
9440
9441         * include/winuser.h (IDC_STATIC): Add define.
9442         Thanks to: Benoit Laniel.
9443
9444 2001-11-05  Danny Smith  <dannysmith@users.sourceforge.net>
9445
9446         * include/commdlg.h: Include <unknwn.h> rather than local
9447         definition of LPUKNOWN.
9448         * include/rpcproxy.h: Don't include if ndef CINTERFACE.
9449         Emit warning.
9450
9451 2001-11-05  Mattia Barbon  <mbarbon@dsi.unive.it>
9452
9453         * include/windef.h (DECLSPEC_NORTEURN): Add an empty version
9454         for Watcom.
9455         (DECLARE_STDCALL_P): Use it to add __stdcall decoration for
9456         functions of the form 'type * function(...)' in a way compatible
9457         with both Watcom and GCC.
9458         * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P.
9459         * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare
9460         zero-sized arrays for Watcom. Mark as __extension for __GNUC__.
9461         * include/windows.h: Watcom can use anonymous structs/unions.
9462         * include/winnt.h: Watcom can use 64 bit ints.
9463         (GetCurrentFiber): Add another inline definition using
9464         Watcom inline assembly syntax.
9465         (GetFiberData): Likewise.
9466         * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P.
9467         (gethostbyname): Likewise.
9468         (gethostbyaddr}: Likewise.
9469         (getservbyport}: Likewise.
9470         (getservbyname}: Likewise.
9471         (getprotobynumber}: Likewise.
9472         (getprotobyname}: Likewise.
9473         * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P.
9474         (gethostbyname}: Likewise.
9475         (gethostbyaddr}: Likewise.
9476         (getservbyport}: Likewise.
9477         (getservbyname}: Likewise.
9478         (getprotobynumber}: Likewise.
9479         (getprotobyname}: Likewise.
9480         * lib/diinut.c: Correction for Watcom.
9481         * lib/kernel32.c (GetCurrentFiber): Add another definition
9482         using Watcom inline assembly syntax.
9483         (GetFiberData): Likewise.
9484         * lib/scrnsave.c (WinMain): Add break after default:
9485         clause.
9486
9487 2001-11-04  "stefan"  <stefan@lkcc.org>
9488
9489         * include/winnt.h (GetCurrentFiber): Add prototype.
9490         (GetFiberData): Likewise.
9491
9492 2001-11-04  Christopher Faylor  <cgf@redhat.com>
9493
9494         * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in
9495         parallel invocations.
9496
9497 2001-11-03  Christopher Faylor  <cgf@redhat.com>
9498
9499         * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning.
9500
9501 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9502
9503         * include/basetyps.h (DECLARE_INTERFACE): Don't add
9504         __attribute__((com_interface)) for __GNUC__ >= 3.
9505
9506 2001-11-01  Danny Smith  <dannysmith@users.sourceforge.net>
9507
9508         * include/commdlg.h (PRINTPAGERANGE): Add structure
9509         definition.
9510         (PRINTDLGEX[AW]): Likewise.
9511         (PrintDlgEx[AW]): Add function declaration.
9512         * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs.
9513         * ChangeLog: Fix typo in last entry.
9514
9515 2001-11-01  TAMURA Kent  <tkent@users.sourceforge.net>
9516
9517         * include/objbase.h (CoGetClassObject): Change third parameter
9518         to COSERVERINFO*.
9519
9520 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
9521
9522         * include/winuser.h (MOUSEEVENTF_WHEEL): Define.
9523         Thanks to: Kim Saunders.
9524         * include/oleauto.h: Define VARIANT* flags for VariantChangeType.
9525         Thanks to: Pat Thoyts.
9526         * include/winnt.h: Change C++ style comment to C style.
9527         * include/shlobj.h: Ditto.
9528         * include/objbase.h (enum tagCOINIT): Remove comma at end of
9529         list.
9530         * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto.
9531         * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__
9532         (enum not limited to range of int).
9533         * include/oaidl.h (struct tagVARIANT): Mark as __extension__
9534         (struct with no named members), ifndef NONAMELESSUNION.
9535
9536 2001-10-30  Danny Smith  <dannysmith@users.sourceforge.net>
9537
9538         * include/winuser.h (CREATESTRUCT): UNICODE it.
9539         (CBT_CREATEWND): Likewise.
9540
9541 2001-10-20  Corinna Vinschen  <corinna@vinschen.de>
9542
9543         * include/winnetwk.h (WNetGetResourceInformationA): Add declaration.
9544         (WNetGetResourceInformationW): Ditto.
9545         (WNetGetResourceInformation): Add define.
9546
9547 2001-10-12  Pedro A Aranda  <paaguti@hotmail.com>
9548
9549         * include/winuser.h (POINTSTOPOINT): Use explicit casts
9550         before extracting words.
9551
9552 2001-10-04  Danny Smith  <dannysmith@users.sourceforge.net>
9553
9554         * include/winnt.h: Add PF_* defines.
9555         Thanks to: "Wizord"  <wizord@argoslabs.com>
9556
9557 2001-09-18  Danny Smith  <dannysmith@users.sourceforge.net>
9558
9559         * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure
9560         field as _ANONYMOUS_STRUCT.
9561         * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef
9562         for UNICODE.
9563         * include/ipexport.h (icmp_echo_reply): Remove extra ';'.
9564         * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header
9565         test.
9566
9567 2001-09-17  Mattia Barbon  <mbarbon@dsi.unive.it>
9568
9569         * include/commctrl.h: Add some ListView constants.
9570
9571 2001-09-17  Earnie Boyd  <earnie@sf.net>
9572
9573         * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/
9574         portion of the directory from the install.
9575         (inst_libdir): Ditto.
9576         * Makefile.in (VERSION): Increment.
9577         * include/w32api.h: Increment version.
9578
9579 2001-09-13  Earnie Boyd  <earnie@SF.net>
9580
9581         * lib/Makefile.in (inst_includedir): Change to always use w32api
9582         subdirectory for target == cygwin.
9583         (inst_libdir): Ditto.
9584
9585 2001-09-13  Earnie Boyd  <earnie@SF.net>
9586
9587         * lib/Makefile.in (config_prefix): New variable.
9588         (inst_includedir): Manipulate special value only if target == cygwin
9589         and build == target and prefix != config_prefix.
9590         (inst_libdir): Ditto.
9591
9592 2001-09-12  Earnie Boyd  <earnie@SF.net>
9593
9594         * Makefile.in (TARFLAGS): New variable.
9595         (TARFILEEXT): Ditto.
9596
9597 2001-09-12  Earnie Boyd  <earnie@SF.net>
9598
9599         * Makefile.in: Increment version.
9600         * include/w32api.h: Ditto.
9601         * lib/Makefile.in: Add usr/ to install directory special for cygwin.
9602
9603 2001-09-11  Danny Smith  <dannysmith@users.sourceforge.net>
9604
9605         * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with
9606         !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT).
9607         (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME.
9608
9609 2001-09-05  Danny Smith  <dannysmith@users.sourceforge.net>
9610
9611         * include/wininet.h (InternetAutodial): Add prototype.
9612         (InternetAutodialHangup): Ditto.
9613         (InternetDial): Ditto.
9614         (InternetGetConnectedState): Ditto.
9615         (InternetGoOnline): Ditto.
9616         (InternetHangUp): Ditto.
9617         (InternetSetDialState): Ditto.
9618         Add associated INTERNET_* auto dial flags.
9619         Guard typedefs and prototypes with #ifndef RC_INVOKED.
9620
9621 2001-09-04  Earnie Boyd  <earnie@SF.Net>
9622
9623         * lib/Makefile.in: Move the setting of variable libdir to after the
9624         setting of exec_prefix since the value of libdir is dependant on it.
9625
9626 2001-09-04  Christopher Faylor  <cgf@cygnus.com>
9627
9628         * include/winbase.h: Add missing closing parentheses to
9629         InterlockedExchangePointer declaration.
9630
9631 2001-09-01  Danny Smith  <dannysmith@users.sourceforge.net>
9632
9633         * include/shlobj.h (CFSTR_* ): Add new defines.
9634         Thanks to: "Ron" <ron@debian.org> .
9635         Unicode them.
9636
9637 2001-09-01  Christopher Faylor  <cgf@cygnus.com>
9638
9639         * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if
9640         anonymous structs are available rather than just testing preprocessor
9641         variable directly.
9642
9643 2001-08-31  Corinna Vinschen  <corinna@vinschen.de>
9644
9645         * include/winnt.h: Change definition of `SYSTEM_LUID' to comply
9646         with new `LARGE_INTEGER' definition.
9647
9648 2001-08-30  Christopher Faylor  <cgf@cygnus.com>
9649
9650         * include/winsock2.h: Remove "extra token" after #endif.
9651
9652 2001-08-31  Earnie Boyd  <earnie@SF.Net>
9653
9654         * config.guess: Remove the \r from the end of line.
9655         * config.sub: Ditto.
9656
9657 2001-08-30  Danny Smith  <dannysmith@users.sourceforge.net>
9658
9659         * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER
9660         if __cplusplus as well as if _ANONYMOUS_STRUCT.
9661
9662 2001-08-29  Earnie Boyd  <earnie@SF.Net>
9663
9664         * config.guess: Add the MSYS system.
9665         * config.sub: Ditto.
9666         * include/winsock.h: Add the __INSIDE_MSYS__ protections.
9667         * incldue/winsock2.h: Ditto.
9668
9669 2001-08-29  Eric Kohl  <ekohl@users.sourceforge.net>
9670
9671         * include/winnt.h: Allow anonymous (Xxx.LowPart) or
9672         non-anonymous (Xxx.u.LowPart) access to HighPart and
9673         LowPart of a LARGE_INTEGER or ULARGE_INTEGER.
9674
9675 2001-08-24  TAMURA Kent  <tkent@users.sourceforge.net>
9676
9677         * include/wingdi.h (HANGUL_CHARSET): Add define.
9678
9679 2001-08-21  Earnie Boyd  <earnie@SF.Net>
9680
9681         * include/setupapi.h: Formatting.
9682
9683 2001-08-21  Earnie Boyd  <earnie@SF.Net>
9684
9685         * include/shlobj.h: Remove \r from the line endings.
9686
9687 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
9688
9689         * include/setupapi.h : New file.
9690         * lib/setupapi.def:New file.
9691         * lib/test.c: Include setupapi.h.
9692
9693 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
9694         * include/winioctl.h (_DISK_PERFORMANCE): Correct typo.
9695
9696 2001-08-21  Mattia Barbon  <mbarbon@dsi.unive.it>
9697
9698         * include/richedit.h (ENLINK): Add structure definition.
9699         (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines.
9700
9701 2001-08-21  Danny Smith  <dannysmith@users.sourceforge.net>
9702
9703         * include/shlobj.h (CMIC_*): Remove duplicate defines.
9704         (CMDSTR_*): Remove duplicates; UNICODE string constants.
9705         (GCS_*): Make UNICODE.
9706         (CSIDL_*): Add more defines.
9707         * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef.
9708         (_DISK_GEOMETRY): Ditto.
9709         (_DISK_PERFORMANCE): Ditto.
9710         * include/winbase.h (HasOverlappedIoCompleted): Add macro.
9711
9712 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9713
9714         * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside
9715         of block protected by #ifndef VOID.
9716         (This reverts 1998-12-01 Anders Norlander change.)
9717         * include/odbcinst.h: End file with newline.
9718         * include/raserror.h: Ditto.
9719
9720 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9721
9722         * include/winsock2.h (#include <wtypes.h): Don't.
9723         (_BLOB): Define instead, if not already done.
9724         (__BLOB_T_DEFINED: New define for guarding _BLOB.
9725         * include/wtypes.h (_BLOB): Guard against prior definition.
9726
9727 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9728
9729         * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions
9730         as __extension__.
9731         (tagTYPEDESC): Ditto.
9732         (_wireBRECORD): Add structure definition.
9733         (_wireSAFEARR_BRECORD): Ditto.
9734         (_wireSAFEARR_HAVEIID): Ditto.
9735         (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr,
9736         SAFEARR_HAVEIID HaveIidStr.
9737         (tagVariant): Add fields _VARIANT_BOOL bool,*pbool.
9738         (_wireVARIANT): Change field parray to type wirePSAFEARRAY,
9739         pparray to wirePSAFEARRAY*.
9740         (_wireVARIANT): Add field wireBRECORD brecVal.
9741         (wireVARIANT): Change typedef to struct _wireVariant*.
9742         (IRecordInfo): Add interface definition.
9743         (LPRECORDINFO): Add typedef for IRecordInfo*.
9744         (IID_IRecordInfo): Add forward decalaration.
9745
9746 2001-08-15  Danny Smith  <dannysmith@users.sourceforge.net>
9747
9748         * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition.
9749         * include/nddeapi.h: Likewise.
9750
9751 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
9752
9753         * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS.
9754         Add more includes of w32api headers.
9755
9756 2001-08-10  Danny Smith  <dannysmith@users.sourceforge.net>
9757
9758         * include/winnt.h (GetCurrentFiber): Change __inline to __inline__.
9759         Swap asm code with that of GetFiberData.
9760         (GetFiberData): Ditto.
9761         * lib/kernel32.c: New file, containing library versions of
9762         GetCurrentFiber and GetFiberData.
9763         * lib/makefile.in: Add kernel32.o as static object to libkernal32.a.
9764
9765 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
9766
9767         * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro.
9768         Thanks to: Harold Hunt <Harold@compasstechnologies.com>.
9769
9770 2001-08-08  Danny Smith  <dannysmith@users.sourceforge.net>
9771
9772         * lib/oleaut32.def: Regenerate.
9773
9774 2001-08-04  Danny Smith  <dannysmith@users.sourceforge.net>
9775
9776         * include/wtypes.h (DECIMAL_SETZERO): Correct typo.
9777
9778 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
9779
9780         Apply Dmitry Bely  <dbely@mail.ru> patch 437834 (with additions).
9781         * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here
9782         * include/oaidl.h: ... to here.
9783         * include/oaidl.h ICreateErrorInfo): Add interface definition.
9784         (IErrorInfo::GetGUID): Change arg to GUID.
9785         (LPSUPPORTERRORINFO): Add typedef.
9786         (IID_ISupportErrorInfo): Change forward decl. of type to IID.
9787
9788 2001-08-02  Danny Smith  <dannysmith@users.sourceforge.net>
9789
9790         * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate
9791         defines.
9792
9793 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
9794
9795         * include/commctrl.h (TreeView_SetIndent): Correct typo.
9796
9797 2001-07-30  Danny Smith  <dannysmith@users.sourceforge.net>
9798
9799         * include/commctrl.h (TBSTYPE_FLAT): Remove define.
9800         Thanks to: Jason Craig  <jacraig@softhome.net>
9801
9802 2001-07-30  Mattia Barbon  <mbarbon@dsi.unive.it>
9803
9804         * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions,
9805         and UNICODE mappings, if _WIN32_IE >= 0x400.
9806         (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400.
9807         (CDIS_*,CDDS_*,CDRF_*) : Add defines.
9808         (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs.
9809         (tagNMLVCUSTOMDRAW): Likewise.
9810         (tagNMTVCUSTOMDRAW): Likewise.
9811         (tagNMLVCACHEHINT): Likewise.
9812
9813 2001-07-06  Danny Smith  <dannysmith@users.sourceforge.net>
9814
9815         * include/basetsd.h (#include <_mingw.h>): Remove.
9816         (__int64): Define.
9817
9818 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
9819
9820         * include/wingdi.h (AC_SRC_OVER): Add define.
9821         (struct _BLENDFUNCTION): Add.
9822
9823 2001-06-28  Danny Smith  <dannysmith@users.sourceforge.net>
9824
9825         * include/shlobj.h:  Add BIF_* defines.
9826
9827 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
9828
9829         * include/winerror.h (E_PENDING): Add error code define.
9830
9831 2001-06-27  Danny Smith  <dannysmith@users.sourceforge.net>
9832
9833         * include/basetsd.h (#include <_mingw.h>): Add directive.
9834
9835 2001-06-25  Danny Smith  <dannysmith@users.sourceforge.net>
9836
9837         * include/winbase.h (InterlockedCompareExchange): Change args
9838         and return value from PVOID to LONG.
9839         (InterlockedExchange): Change first arg to LPLONG.
9840         (InterlockedCompareExchangePointer): New macro.
9841         (InterlockedExchangePointer): New macro.
9842
9843 2001-06-19  Danny Smith  <dannysmith@users.sourceforge.net>
9844
9845         * lib/kernel32.def: Add LanguageGroup and UILanguage symbols.
9846         Thanks to Kevin Chase <kevincha99@hotmail.com>.
9847
9848 2001-06-11  TAMURA Kent  <tkent@users.sourceforge.net>
9849
9850         * objidl.h (IMalloc::ReAlloc()): Correct declaration.
9851         (IMalloc::Free()): Ditto.
9852
9853 2001-06-11  Danny Smith  <dannysmith@users.sourceforge.net>
9854
9855         * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it.
9856         (REGSTR_PATH_SPECIAL_FOLDERS): Ditto.
9857         * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard.
9858
9859 2001-06-11  Mattia Barbon  <mbarbon@dsi.unive.it>
9860
9861         * include/shlobj.h (struct _browseinfo): UNICODE it.
9862         (SHBrowseForFolder): Ditto.
9863         (SHGetPathFromIDList): Ditto.
9864
9865 2001-06-11  Earnie Boyd  <earnie@users.sourceforge.net>
9866
9867         * include/basetsd.h: RC_INVOKED protection and realignment.
9868         Thanks to: Colin Peters <colinpeters@users.sourceforge.net>
9869
9870 2001-06-06  Earnie Boyd  <earnie@users.sourceforge.net>
9871
9872         * Makefile.in (bindist): Reassign value of exec_prefix on make command
9873         line.
9874
9875 2001-05-22  Christopher Faylor  <cgf@cygnus.com>
9876
9877         * lib/mapi32.def: Add MAPISendMail.
9878
9879 2001-05-22  Earnie Boyd  <earnie@users.sourceforge.net>
9880
9881         * include/w32api.h: Update version.
9882         * Makefile.in: Ditto.
9883
9884 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
9885
9886         * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid
9887         compiler warnings.
9888
9889 2001-05-17  Corinna Vinschen  <corinna@vinschen.de>
9890
9891         * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against
9892         previous definition in include/ntsecapi.h.
9893         * include/ntsecapi.h: Vice versa.
9894
9895 2001-05-16  Corinna Vinschen  <corinna@vinschen.de>
9896
9897         * include/winnt.h: Add defines for group attributes.
9898         Add define for SYSTEM_LUID.
9899         Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and
9900         `PTOKEN_PRIMARY_GROUP'.
9901
9902 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
9903
9904         * lib/Makefile.in: Install libraries in /usr/lib/w32api when building
9905         for cygwin.
9906
9907 2001-04-24  Christopher Faylor  <cgf@cygnus.com>
9908
9909         * include/winsock2.h: Protect one *more* newlib defines when compiling
9910         cygwin.
9911
9912 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
9913
9914         * include/winsock2.h: Protect some more newlib defines when compiling
9915         cygwin.
9916
9917 2001-04-23  Christopher Faylor  <cgf@cygnus.com>
9918
9919         * include/winsock.h: Protect some more newlib defines when compiling
9920         cygwin.
9921
9922 2001-04-17  Egor Duda  <deo@logos-m.ru>
9923
9924         * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION
9925         as __extenstion__ when appropriate.
9926         * include/mmsystem.h: Mark anonymous structs and unions as
9927         __extension__ to prevent compiler warning when invoked with
9928         -pedantic
9929         * include/oaidl.h: Ditto.
9930         * include/objidl.h: Ditto.
9931         * include/olectl.h: Ditto.
9932         * include/prsht.h: Ditto.
9933         * include/shlobj.h: Ditto.
9934         * include/winbase.h: Ditto.
9935         * include/winnt.h: Ditto.
9936         * include/wtypes.h: Ditto.
9937
9938 2001-04-11  Danny Smith  <dannysmith@users.sourceforge.net>
9939
9940         * include/windows.h (#include <winsock.h>): Include <winsock2.h>
9941         instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0).
9942
9943 2001-04-11  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
9944
9945         * include/winuser.h (WM_IME_*): Remove defines (now in imm.h).
9946
9947 2001-04-11  John Fortin  <fortinj@attglobal.net>
9948
9949         * include/windef.h (*PBOOL): Unprotect from XFree86Server.
9950         (*LPBOOL): Ditto.
9951
9952 2001-04-08  Christopher Faylor  <cgf@cygnus.com>
9953
9954         * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm
9955         code will be included in every module which includes this header.
9956         (GetFiberData): Ditto.
9957
9958 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
9959
9960         * include/winnt.h (GetCurrentFiber): Fix typo.
9961
9962 2001-04-08  Earnie Boyd  <earnie@users.sourceforge.net>
9963
9964         * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration.
9965         * include/winbase.h: (GetFileAttributesExW): Fix typo.
9966         * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*.
9967         (StartDocB): Chage LNPDOCINFOB to DOCINFOB*.
9968         Thanks To: Kent Tamura  <tkent@users.sourceforge.net>
9969
9970         * include/winnt.h: (GetFiberData): Add __inline assembler coding.
9971         (GetCurrentFiber): Ditto.
9972         Thanks to: Andy Younger  <AndyY@redlemon.com>
9973
9974         * include/windef.h: (HMONITOR_DECLARED): New definition to stop
9975         DirectX 8 from complaining.
9976         Thanks to: Sigbjørn Lund Olsen  <mosikos@online.no>
9977
9978 2001-04-08  Michael Soderstrom  <ichaelsoderstro@hotmail.com>
9979
9980         * include/commctrl.h Updated TreeView and ListView defines and macros.
9981
9982 2001-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
9983
9984         * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4
9985         and above.
9986
9987 2001-03-30  Earnie Boyd  <earnie@users.sourceforge.net>
9988         * include/winuser.h (VK_KANA): New definition.
9989         Thanks to: "Harold Hunt" <huntharo@msu.edu>
9990
9991 2001-03-29  Earnie Boyd  <earnie@users.sourceforge.net
9992
9993         * include/winuser.h (RT_CURSOR): Add protection for XFree86Server.
9994         (RT_FONT): Ditto.
9995         * include/basetsd.h (INT32): Ditto.
9996         * include/windef.h (ATOM): Ditto.
9997         (BOOL): Ditto.
9998         (BYTE): Ditto.
9999         * include/winbase.h (FreeResource): Ditto.
10000         Thanks to: "Harold Hunt" <huntharo@msu.edu>
10001
10002 2001-03-20  Danny Smith  <dannysmith@users.sourceforge.net>
10003
10004         * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove;
10005         use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h.
10006         (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET
10007         macro now defined in newlib sys/types.h.  Emit warning if defined.
10008         * include/winsock2.h: Ditto.
10009         * include/windows.h (Win32_Winsock): Replace with new macros
10010         __USE_W32_SOCKETS and warn of deprecation.
10011
10012 2001-03-13  Earnie Boyd  <earnie@users.sourceforge.net
10013
10014         * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly.
10015         Thanks to: Mattia Barbon <mbarbon@dsi.unive.it>
10016
10017 2001-03-12  Earnie Boyd  <earnie@users.sourceforge.net
10018
10019         * include/commctrl.h (TBSTYLE_FLAT): New definition.
10020         (TB_GETBUTTONSIZE): Ditto.
10021         (TCS_HOTTRACK): Ditto.
10022         Thanks to: Chris Hansen <popeofpop@softhome.net>
10023
10024 2001-03-01  Earnie Boyd  <earnie@users.sourceforge.net
10025
10026         * Makefile.in: (snapshot): Add target.
10027         * lib/Makefile.in: (install-headers): Use installdir variable.
10028         (installdir): Set value based on target-alias.
10029
10030 2001-02-21  Earnie Boyd  <earnie@users.sourceforge.net
10031
10032         * include/w32api.h: (_W32API_VERSION): Remove.
10033         (__W32API_VERSION): Add.
10034         (__W32API_MAJOR_VERSION): Ditto.
10035         (__W32API_MINOR_VERSION): Ditto.
10036
10037 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10038
10039         * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it.
10040         (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW]
10041         * include/winuser.h (struct tagMOUSEKEYS): Define new structure.
10042         * include/winerror.h (NTE_*): Add CryptoAPI error codes.
10043
10044 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10045
10046         * include/mswsock.h: New file.
10047         * include/ws2tcpip.h: New file.
10048         * include/winsock.h (IPPROTO_IGMP): New define.
10049         (IPPROTO_GGP): Correct value.
10050         (SO_* macros): Remove mswsock defines.
10051         (TCP_BSDURGENT): Likewise.
10052         (IP_* macros): Add comment warning of WinSock2 incompatibility
10053         (WSARecvEx): Remove mswsock prototype.
10054         (TransmitFile): Likewise.
10055         (AcceptEx): Likewise.
10056         (GetAcceptExSockaddrs): Likewise.
10057         (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition.
10058         (#include <mswsock.h>): Add directive and explanatory comment
10059         * include/winsock2.h (header guard): add guard for  _WINSOCK_H
10060         (_WINSOCK_H): Define to prevent later inclusion of winsock.h
10061         (#include <winsock.h>): Replace directive with winsock.h file content
10062         The following changes apply to the merged file:
10063         (FD_SET): Keep winsock2.h definition, delete winsock.h definition
10064         (SOMAXCONN): Likewise
10065         (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined
10066         (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now
10067         in ws2tcpip.h)
10068         (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2)
10069         (FD_*_BIT and FD_* defines): Place together and extend to
10070         FD_MAX_EVENTS 10
10071         (AF* defines): Extend to AF_MAX 10
10072         (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2)
10073         (WSAUnhookBlockingHook): Likewise.
10074         (WSASetBlockingHook): Likewise.
10075         (WSACancelBlockingCall): Likewise.
10076         (WSAEINPROGRESS): Comment as not raised in WinSock2.
10077         (#include <mswsock.h>): Delete directive inherited from winsock.h
10078         (WSA_QOS* defines): Add QualityOfService error codes.
10079         (SIO_* defines): Add new macros
10080         * include/ipexport.h (IP_STATUS flags): Add definitions.
10081         (IP_FLAG_DF): Likewise.
10082         (IP_OPT_* ): Likewise.
10083         (struct ip_option_information): Likewise.
10084         (struct icmp_echo_reply): Likewise.
10085
10086 2001-02-21  Danny Smith  <dannysmith@users.sourceforge.net>
10087
10088         * include/commctrl.h: Revert TEXT change.
10089         * include/lmalert.h: Ditto.
10090         * include/lmcons.h: Ditto.
10091         * include/lmsname.h: Ditto.
10092         * include/lmsvc.h: Ditto.
10093         * include/ntsecapi.h: Ditto.
10094         * include/oledlg.h: Ditto.
10095         * include/ras.h: Ditto.
10096         * include/regstr.h: Ditto.
10097         * include/richedit.h: Ditto.
10098         * include/wininet.h: Ditto.
10099         * include/winnt.h: Ditto.
10100
10101 2001-02-15  Earnie Boyd  <earnie@users.sourceforge.net>
10102
10103         * include/commctrl.h: Use _TEXT() instead of TEXT() throughout.
10104         * include/lmalert.h: Ditto.
10105         * include/lmcons.h: Ditto.
10106         * include/lmsname.h: Ditto.
10107         * include/lmsvc.h: Ditto.
10108         * include/ntsecapi.h: Ditto.
10109         * include/oledlg.h: Ditto.
10110         * include/ras.h: Ditto.
10111         * include/regstr.h: Ditto.
10112         * include/richedit.h: Ditto.
10113         * include/wininet.h: Ditto.
10114         * include/w32api.h: New File.
10115
10116 2001-02-13  Corinna Vinschen  <corinna@vinschen.de>
10117
10118         * include/shlobj.h: Add missing SLR_* flags.
10119
10120 2001-02-12:  Earnie Boyd  <earnie@users.sourceforge.net>
10121
10122         * lib/Makefile.in: (host_alias): Add variable.
10123         (host_build): Ditto:
10124         (xinstall): Removed
10125         (xinstall-libraries): Ditto.
10126         (xinstall-headers): Ditto.
10127         (xuninstall): Ditto.
10128         (xuninstall-libraries): Ditto.
10129         (xuninstall-headers): Ditto.
10130         * Makefile.in: (host_alias): Add variable.
10131         (build_alias): Ditto.
10132
10133 2001-02-02  Earnie Boyd  <earnie@users.sourceforge.net>
10134
10135         * include/winnt.h: (__TEXT): Add private macro.
10136         (_TEXT): Modify definition to use __TEXT.
10137         (_T): Ditto.
10138         This change allows the passing of a MACRO as an argument and have that
10139         MACRO resolved first.
10140         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10141
10142 2001-01-31  Earnie Boyd  <earnie@users.sourceforge.net>
10143
10144         * Makefile.in: Increment VERSION to 0.5
10145         * include/winnt.h: Change TEXT to _TEXT throughout.
10146         (SID_RELEASE): Define.
10147         Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com>
10148
10149 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10150
10151         * Apply Phil Krylov patches.
10152         2001-01-19  Phil Krylov  <phil@mail.ru>
10153         * include/commctrl.h: (HDI_IMAGE) New definition.
10154         (HDI_DI_SETITEM) Ditto.
10155         (HDI_ORDER) Ditto.
10156         (HDI_FILTER) Ditto.
10157         (HDF_BITMAP_ON_RIGHT) Ditto.
10158         (HDF_IMAGE) Ditto.
10159         (HDM_SETORDERARRAY) Ditto.
10160         (Header_SetOrderArray) Ditto.
10161         (ICC_BAR_CLASSES) Ditto.
10162         (struct _HD_ITEMA) Change definition.
10163         (struct _HD_ITEMW) Ditto.
10164         (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces.
10165         (InitCommonControlsEx()) Ditto.
10166         2001-01-23  Phil Krylov  <phil@mail.ru>
10167         * include/richedit.h: Many Richedit 2.0 definitions.
10168
10169 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10170
10171         * include/winuser.h: (IDC_HAND)  New resource identifier.
10172         Thanks to: Mark Jordon <mark_jordan@ieee.org>
10173
10174 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10175
10176         * include/iptypes.h: Include <sys/types.h> for time_t declaration.
10177         Fix typo's.
10178
10179 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10180
10181         * include/objidl.h: (GetClassID): Argument needs to be a pointer.
10182         (GetUnmarshalClass): CLSID argument needs to be a pointer.
10183         Thanks To: <bge@users.sourceforge.net>
10184
10185 2001-01-30  Earnie Boyd  <earnie@users.sourceforge.net>
10186
10187         * Apply Danny Smith patch 102386
10188         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10189         * lib/rasapi32.def: add symbols available in NT4 and W2k
10190
10191 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10192
10193         * Apply Danny Smith patch 102382
10194         2000-11-15  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10195         * lib/mswsock.def: remove leading underscores from symbol names
10196
10197 2001-01-28  Earnie Boyd  <earnie@users.sourceforge.net>
10198
10199         * Apply Danny Smith patch 102446
10200         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
10201         * include/sql.h (ODBCVER): change default to 0x0351.
10202         (SQLSetScrollOptions): non-core function, move prototype to sqlext.h.
10203         (SQLColAttributes): likewise.
10204         (SQLBindParam): add prototype for ODBC 3.x function.
10205         (SQLCloseCursor): likewise.
10206         (SQLColAttribute): likewise.
10207         (SQLCopyDesc):likewise.
10208         (SQLEndTran): likewise.
10209         (SQLFetchScroll): likewise.
10210         (SQLGetConnectAttr): likewise.
10211         (SQLGetDescField): likewise.
10212         (SQLGetDescRec): likewise.
10213         (SQLGetDiagField): likewise.
10214         (SQLGetDiagRec): likewise.
10215         (SQLGetEnvAttr): likewise.
10216         (SQLGetStmtAttr): likewise.
10217         (SQLSetConnectAttr): likewise.
10218         (SQLSetDescField):likewise.
10219         (SQLSetDescRec): likewise.
10220         (SQLSetEnvAttr): likewise.
10221         (SQLSetStmtAttr): likewise.
10222         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10223         _WIN64 compatability;
10224         (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions).
10225         (SQL_ACTIVE_CONNECTIONS): likewise.
10226         (SQL_ACTIVE_STATEMENTS): likewise.
10227         (SQL_ALL_EXCEPT_LIKE): likewise.
10228         (SQL_API_ALL_FUNCTIONS): likewise.
10229         (SQL_API_LOADBYORDINAL): likewise.
10230         (SQL_API_SQLBINDPARAMETER): likewise.
10231         (SQL_API_SQLBROWSECONNECT): likewise.
10232         (SQL_API_SQLCOLATTRIBUTES): likewise.
10233         (SQL_API_SQLCOLUMNPRIVILEGES): likewise.
10234         (SQL_API_SQLDESCRIBEPARAM): likewise.
10235         (SQL_API_SQLDRIVERCONNECT): likewise.
10236         (SQL_API_SQLDRIVERS): likewise.
10237         (SQL_API_SQLEXTENDEDFETCH): likewise.
10238         (SQL_API_SQLFOREIGNKEYS): likewise.
10239         (SQL_API_SQLMORERESULTS): likewise.
10240         (SQL_API_SQLNATIVESQL): likewise.
10241         (SQL_API_SQLNUMPARAMS): likewise.
10242         (SQL_API_SQLPARAMOPTIONS): likewise.
10243         (SQL_API_SQLPRIMARYKEYS): likewise.
10244         (SQL_API_SQLPROCEDURECOLUMNS): likewise.
10245         (SQL_API_SQLPROCEDURES): likewise.
10246         (SQL_API_SQLSETPOS): likewise.
10247         (SQL_API_SQLSETSCROLLOPTIONS): likewise.
10248         (SQL_API_SQLTABLEPRIVILEGES): likewise.
10249         (SQL_ASYNC_ENABLE): likewise.
10250         (SQL_ASYNC_ENABLE_DEFAULT): likewise.
10251         (SQL_ASYNC_ENABLE_OFF): likewise.
10252         (SQL_ASYNC_ENABLE_ON): likewise.
10253         (SQL_ATTR_READONLY): likewise.
10254         (SQL_ATTR_READWRITE_UNKNOWN): likewise.
10255         (SQL_ATTR_WRITE): likewise.
10256         (SQL_AUTOCOMMIT): likewise.
10257         (SQL_AUTOCOMMIT_DEFAULT): likewise.
10258         (SQL_AUTOCOMMIT_OFF): likewise.
10259         (SQL_AUTOCOMMIT_ON): likewise.
10260         (SQL_BEST_ROWID): likewise.
10261         (SQL_BIGINT): likewise.
10262         (SQL_BINARY): likewise.
10263         (SQL_BIND_BY_COLUMN): likewise.
10264         (SQL_BIND_TYPE): likewise.
10265         (SQL_BIND_TYPE_DEFAULT): likewise.
10266         (SQL_BIT): likewise.
10267         (SQL_BOOKMARK_PERSISTENCE): likewise.
10268         (SQL_BP_CLOSE): likewise.
10269         (SQL_BP_DELETE): likewise.
10270         (SQL_BP_DROP): likewise.
10271         (SQL_BP_OTHER_HSTMT): likewise.
10272         (SQL_BP_SCROLL): likewise.
10273         (SQL_BP_TRANSACTION): likewise.
10274         (SQL_BP_UPDATE): likewise.
10275         (SQL_C_BINARY): likewise.
10276         (SQL_C_BIT): likewise.
10277         (SQL_C_BOOKMARK): likewise.
10278         (SQL_C_CHAR): likewise.
10279         (SQL_C_DATE): likewise.
10280         (SQL_C_DEFAULT): likewise.
10281         (SQL_C_DOUBLE): likewise.
10282         (SQL_C_FLOAT): likewise.
10283         (SQL_C_LONG): likewise.
10284         (SQL_C_SHORT): likewise.
10285         (SQL_C_SLONG): likewise.
10286         (SQL_C_SSHORT): likewise.
10287         (SQL_C_STINYINT): likewise.
10288         (SQL_C_TIME): likewise.
10289         (SQL_C_TIMESTAMP): likewise.
10290         (SQL_C_TINYINT): likewise.
10291         (SQL_C_ULONG): likewise.
10292         (SQL_C_USHORT): likewise.
10293         (SQL_C_UTINYINT): likewise.
10294         (SQL_CB_NON_NULL): likewise.
10295         (SQL_CB_NULL): likewise.
10296         (SQL_CC_CLOSE): likewise.
10297         (SQL_CC_DELETE): likewise.
10298         (SQL_CC_PRESERVE): likewise.
10299         (SQL_CN_ANY): likewise.
10300         (SQL_CN_DIFFERENT): likewise.
10301         (SQL_CN_NONE): likewise.
10302         (SQL_COLATT_OPT_MAX): likewise.
10303         (SQL_COLATT_OPT_MIN): likewise.
10304         (SQL_COLUMN_ALIAS): likewise.
10305         (SQL_COLUMN_AUTO_INCREMENT): likewise.
10306         (SQL_COLUMN_CASE_SENSITIVE): likewise.
10307         (SQL_COLUMN_COUNT): likewise.
10308         (SQL_COLUMN_DISPLAY_SIZE): likewise.
10309         (SQL_COLUMN_DRIVER_START): likewise.
10310         (SQL_COLUMN_LABEL): likewise.
10311         (SQL_COLUMN_LENGTH): likewise.
10312         (SQL_COLUMN_MONEY): likewise.
10313         (SQL_COLUMN_NAME): likewise.
10314         (SQL_COLUMN_NULLABLE): likewise.
10315         (SQL_COLUMN_OWNER_NAME): likewise.
10316         (SQL_COLUMN_PRECISION): likewise.
10317         (SQL_COLUMN_QUALIFIER_NAME): likewise.
10318         (SQL_COLUMN_SCALE): likewise.
10319         (SQL_COLUMN_SEARCHABLE): likewise.
10320         (SQL_COLUMN_TABLE_NAME): likewise.
10321         (SQL_COLUMN_TYPE): likewise.
10322         (SQL_COLUMN_TYPE_NAME): likewise.
10323         (SQL_COLUMN_UNSIGNED): likewise.
10324         (SQL_COLUMN_UPDATABLE): likewise.
10325         (SQL_CONCAT_NULL_BEHAVIOR): likewise.
10326         (SQL_CONCUR_DEFAULT): likewise.
10327         (SQL_CONCUR_LOCK): likewise.
10328         (SQL_CONCUR_READ_ONLY): likewise.
10329         (SQL_CONCUR_ROWVER): likewise.
10330         (SQL_CONCUR_TIMESTAMP): likewise.
10331         (SQL_CONCUR_VALUES): likewise.
10332         (SQL_CONCURRENCY): likewise.
10333         (SQL_CONN_OPT_MAX): likewise.
10334         (SQL_CONN_OPT_MIN): likewise.
10335         (SQL_CONNECT_OPT_DRVR_START): likewise.
10336         (SQL_CONVERT_BIGINT): likewise.
10337         (SQL_CONVERT_BINARY): likewise.
10338         (SQL_CONVERT_BIT): likewise.
10339         (SQL_CONVERT_CHAR): likewise.
10340         (SQL_CONVERT_DATE): likewise.
10341         (SQL_CONVERT_DECIMAL): likewise.
10342         (SQL_CONVERT_DOUBLE): likewise.
10343         (SQL_CONVERT_FLOAT): likewise.
10344         (SQL_CONVERT_FUNCTIONS): likewise.
10345         (SQL_CONVERT_INTEGER): likewise.
10346         (SQL_CONVERT_LONGVARBINARY): likewise.
10347         (SQL_CONVERT_LONGVARCHAR): likewise.
10348         (SQL_CONVERT_NUMERIC): likewise.
10349         (SQL_CONVERT_REAL): likewise.
10350         (SQL_CONVERT_SMALLINT): likewise.
10351         (SQL_CONVERT_TIME): likewise.
10352         (SQL_CONVERT_TIMESTAMP): likewise.
10353         (SQL_CONVERT_TINYINT): likewise.
10354         (SQL_CONVERT_VARBINARY): likewise.
10355         (SQL_CONVERT_VARCHAR): likewise.
10356         (SQL_CORRELATION_NAME): likewise.
10357         (SQL_CR_CLOSE): likewise.
10358         (SQL_CR_DELETE): likewise.
10359         (SQL_CR_PRESERVE): likewise.
10360         (SQL_CUR_DEFAULT): likewise.
10361         (SQL_CUR_USE_DRIVER): likewise.
10362         (SQL_CUR_USE_IF_NEEDED): likewise.
10363         (SQL_CUR_USE_ODBC): likewise.
10364         (SQL_CURRENT_QUALIFIER): likewise.
10365         (SQL_CURSOR_DYNAMIC): likewise.
10366         (SQL_CURSOR_FORWARD_ONLY): likewise.
10367         (SQL_CURSOR_KEYSET_DRIVEN): likewise.
10368         (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise.
10369         (SQL_CURSOR_STATIC): likewise.
10370         (SQL_CURSOR_TYPE): likewise.
10371         (SQL_CURSOR_TYPE_DEFAULT): likewise.
10372         (SQL_CVT_BIGINT): likewise.
10373         (SQL_CVT_BINARY): likewise.
10374         (SQL_CVT_BIT): likewise.
10375         (SQL_CVT_CHAR): likewise.
10376         (SQL_CVT_DATE): likewise.
10377         (SQL_CVT_DECIMAL): likewise.
10378         (SQL_CVT_DOUBLE): likewise.
10379         (SQL_CVT_FLOAT): likewise.
10380         (SQL_CVT_INTEGER): likewise.
10381         (SQL_CVT_LONGVARBINARY): likewise.
10382         (SQL_CVT_LONGVARCHAR): likewise.
10383         (SQL_CVT_NUMERIC): likewise.
10384         (SQL_CVT_REAL): likewise.
10385         (SQL_CVT_SMALLINT): likewise.
10386         (SQL_CVT_TIME): likewise.
10387         (SQL_CVT_TIMESTAMP): likewise.
10388         (SQL_CVT_TINYINT): likewise.
10389         (SQL_CVT_VARBINARY): likewise.
10390         (SQL_CVT_VARCHAR): likewise.
10391         (SQL_DATABASE_NAME): likewise.
10392         (SQL_DATE): likewise.
10393         (SQL_DRIVER_HDBC): likewise.
10394         (SQL_DRIVER_HENV): likewise.
10395         (SQL_DRIVER_HLIB): likewise.
10396         (SQL_DRIVER_HSTMT): likewise.
10397         (SQL_DRIVER_NAME): likewise.
10398         (SQL_DRIVER_ODBC_VER): likewise.
10399         (SQL_DRIVER_VER): likewise.
10400         (SQL_ENSURE): likewise.
10401         (SQL_EXPRESSIONS_IN_ORDERBY): likewise.
10402         (SQL_EXT_API_LAST): likewise.
10403         (SQL_EXT_API_START): likewise.
10404         (SQL_FD_FETCH_BOOKMARK): likewise.
10405         (SQL_FD_FETCH_PREV): likewise.
10406         (SQL_FD_FETCH_RESUME): likewise.
10407         (SQL_FETCH_PREV): likewise.
10408         (SQL_FETCH_RESUME): likewise.
10409         (SQL_FILE_NOT_SUPPORTED): likewise.
10410         (SQL_FILE_QUALIFIER): likewise.
10411         (SQL_FILE_TABLE): likewise.
10412         (SQL_FILE_USAGE): likewise.
10413         (SQL_FN_CVT_CONVERT): likewise.
10414         (SQL_FN_NUM_ABS): likewise.
10415         (SQL_FN_NUM_ACOS): likewise.
10416         (SQL_FN_NUM_ASIN): likewise.
10417         (SQL_FN_NUM_ATAN): likewise.
10418         (SQL_FN_NUM_ATAN2): likewise.
10419         (SQL_FN_NUM_CEILING): likewise.
10420         (SQL_FN_NUM_COS): likewise.
10421         (SQL_FN_NUM_COT): likewise.
10422         (SQL_FN_NUM_DEGREES): likewise.
10423         (SQL_FN_NUM_EXP): likewise.
10424         (SQL_FN_NUM_FLOOR): likewise.
10425         (SQL_FN_NUM_LOG): likewise.
10426         (SQL_FN_NUM_LOG10): likewise.
10427         (SQL_FN_NUM_MOD): likewise.
10428         (SQL_FN_NUM_PI): likewise.
10429         (SQL_FN_NUM_POWER): likewise.
10430         (SQL_FN_NUM_RADIANS): likewise.
10431         (SQL_FN_NUM_RAND): likewise.
10432         (SQL_FN_NUM_ROUND): likewise.
10433         (SQL_FN_NUM_SIGN): likewise.
10434         (SQL_FN_NUM_SIN): likewise.
10435         (SQL_FN_NUM_SQRT): likewise.
10436         (SQL_FN_NUM_TAN): likewise.
10437         (SQL_FN_NUM_TRUNCATE): likewise.
10438         (SQL_FN_STR_ASCII): likewise.
10439         (SQL_FN_STR_CHAR): likewise.
10440         (SQL_FN_STR_CONCAT): likewise.
10441         (SQL_FN_STR_DIFFERENCE): likewise.
10442         (SQL_FN_STR_INSERT): likewise.
10443         (SQL_FN_STR_LCASE): likewise.
10444         (SQL_FN_STR_LEFT): likewise.
10445         (SQL_FN_STR_LENGTH): likewise.
10446         (SQL_FN_STR_LOCATE): likewise.
10447         (SQL_FN_STR_LOCATE_2): likewise.
10448         (SQL_FN_STR_LTRIM): likewise.
10449         (SQL_FN_STR_REPEAT): likewise.
10450         (SQL_FN_STR_REPLACE): likewise.
10451         (SQL_FN_STR_RIGHT): likewise.
10452         (SQL_FN_STR_RTRIM): likewise.
10453         (SQL_FN_STR_SOUNDEX): likewise.
10454         (SQL_FN_STR_SPACE): likewise.
10455         (SQL_FN_STR_SUBSTRING): likewise.
10456         (SQL_FN_STR_UCASE): likewise.
10457         (SQL_FN_SYS_DBNAME): likewise.
10458         (SQL_FN_SYS_IFNULL): likewise.
10459         (SQL_FN_SYS_USERNAME): likewise.
10460         (SQL_FN_TD_CURDATE): likewise.
10461         (SQL_FN_TD_CURTIME): likewise.
10462         (SQL_FN_TD_DAYNAME): likewise.
10463         (SQL_FN_TD_DAYOFMONTH): likewise.
10464         (SQL_FN_TD_DAYOFWEEK): likewise.
10465         (SQL_FN_TD_DAYOFYEAR): likewise.
10466         (SQL_FN_TD_HOUR): likewise.
10467         (SQL_FN_TD_MINUTE): likewise.
10468         (SQL_FN_TD_MONTH): likewise.
10469         (SQL_FN_TD_MONTHNAME): likewise.
10470         (SQL_FN_TD_NOW): likewise.
10471         (SQL_FN_TD_QUARTER): likewise.
10472         (SQL_FN_TD_SECOND): likewise.
10473         (SQL_FN_TD_TIMESTAMPadd): likewise.
10474         (SQL_FN_TD_TIMESTAMPDIFF): likewise.
10475         (SQL_FN_TD_WEEK): likewise.
10476         (SQL_FN_TD_YEAR): likewise.
10477         (SQL_FN_TSI_DAY): likewise.
10478         (SQL_FN_TSI_FRAC_SECOND): likewise.
10479         (SQL_FN_TSI_HOUR): likewise.
10480         (SQL_FN_TSI_MINUTE): likewise.
10481         (SQL_FN_TSI_MONTH): likewise.
10482         (SQL_FN_TSI_QUARTER): likewise.
10483         (SQL_FN_TSI_SECOND): likewise.
10484         (SQL_FN_TSI_WEEK): likewise.
10485         (SQL_FN_TSI_YEAR): likewise.
10486         (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise.
10487         (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise.
10488         (SQL_GB_NO_RELATION): likewise.
10489         (SQL_GB_NOT_SUPPORTED): likewise.
10490         (SQL_GD_BLOCK): likewise.
10491         (SQL_GD_BOUND): likewise.
10492         (SQL_GET_BOOKMARK): likewise.
10493         (SQL_GROUP_BY): likewise.
10494         (SQL_INFO_DRIVER_START): likewise.
10495         (SQL_INFO_FIRST): likewise.
10496         (SQL_INFO_LAST): likewise.
10497         (SQL_INTERVAL_DAY): likewise.
10498         (SQL_INTERVAL_DAY_TO_HOUR): likewise.
10499         (SQL_INTERVAL_DAY_TO_MINUTE): likewise.
10500         (SQL_INTERVAL_DAY_TO_SECOND): likewise.
10501         (SQL_INTERVAL_HOUR): likewise.
10502         (SQL_INTERVAL_HOUR_TO_MINUTE): likewise.
10503         (SQL_INTERVAL_HOUR_TO_SECOND): likewise.
10504         (SQL_INTERVAL_MINUTE): likewise.
10505         (SQL_INTERVAL_MINUTE_TO_SECOND): likewise.
10506         (SQL_INTERVAL_MONTH): likewise.
10507         (SQL_INTERVAL_SECOND): likewise.
10508         (SQL_INTERVAL_YEAR): likewise.
10509         (SQL_INTERVAL_YEAR_TO_MONTH): likewise.
10510         (SQL_KEYSET_SIZE): likewise.
10511         (SQL_KEYSET_SIZE_DEFAULT): likewise.
10512         (SQL_KEYWORDS): likewise.
10513         (SQL_LCK_EXCLUSIVE): likewise.
10514         (SQL_LCK_NO_CHANGE): likewise.
10515         (SQL_LCK_UNLOCK): likewise.
10516         (SQL_LIKE_ESCAPE_CLAUSE): likewise.
10517         (SQL_LIKE_ONLY): likewise.
10518         (SQL_LOCK_TYPES): likewise.
10519         (SQL_LOGIN_TIMEOUT): likewise.
10520         (SQL_LOGIN_TIMEOUT_DEFAULT): likewise.
10521         (SQL_LONGVARBINARY): likewise.
10522         (SQL_LONGVARCHAR): likewise.
10523         (SQL_MAX_BINARY_LITERAL_LEN): likewise.
10524         (SQL_MAX_CHAR_LITERAL_LEN): likewise.
10525         (SQL_MAX_DSN_LENGTH): likewise.
10526         (SQL_MAX_LENGTH): likewise.
10527         (SQL_MAX_LENGTH_DEFAULT): likewise.
10528         (SQL_MAX_OPTION_STRING_LENGTH): likewise.
10529         (SQL_MAX_OWNER_NAME_LEN): likewise.
10530         (SQL_MAX_PROCEDURE_NAME_LEN): likewise.
10531         (SQL_MAX_QUALIFIER_NAME_LEN): likewise.
10532         (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise.
10533         (SQL_MAX_ROWS): likewise.
10534         (SQL_MAX_ROWS_DEFAULT): likewise.
10535         (SQL_MODE_DEFAULT): likewise.
10536         (SQL_MODE_READ_ONLY): likewise.
10537         (SQL_MODE_READ_WRITE): likewise.
10538         (SQL_MULT_RESULT_SETS): likewise.
10539         (SQL_MULTIPLE_ACTIVE_TXN): likewise.
10540         (SQL_NC_END): likewise.
10541         (SQL_NC_START): likewise.
10542         (SQL_NEED_LONG_DATA_LEN): likewise.
10543         (SQL_NNC_NON_NULL): likewise.
10544         (SQL_NNC_NULL): likewise.
10545         (SQL_NO_TOTAL): likewise.
10546         (SQL_NON_NULLABLE_COLUMNS): likewise.
10547         (SQL_NOSCAN): likewise.
10548         (SQL_NOSCAN_DEFAULT): likewise.
10549         (SQL_NOSCAN_OFF): likewise.
10550         (SQL_NOSCAN_ON): likewise.
10551         (SQL_NUM_EXTENSIONS): likewise.
10552         (SQL_NUM_FUNCTIONS): likewise.
10553         (SQL_NUMERIC_FUNCTIONS): likewise.
10554         (SQL_OAC_LEVEL1): likewise.
10555         (SQL_OAC_LEVEL2): likewise.
10556         (SQL_OAC_NONE): likewise.
10557         (SQL_ODBC_API_CONFORMANCE): likewise.
10558         (SQL_ODBC_CURSORS): likewise.
10559         (SQL_ODBC_KEYWORDS): likewise.
10560         (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise.
10561         (SQL_ODBC_SQL_CONFORMANCE): likewise.
10562         (SQL_ODBC_SQL_OPT_IEF): likewise.
10563         (SQL_ODBC_VER): likewise.
10564         (SQL_OPT_TRACE): likewise.
10565         (SQL_OPT_TRACE_DEFAULT): likewise.
10566         (SQL_OPT_TRACE_FILE_DEFAULT): likewise.
10567         (SQL_OPT_TRACE_OFF): likewise.
10568         (SQL_OPT_TRACE_ON): likewise.
10569         (SQL_OPT_TRACEFILE): likewise.
10570         (SQL_OSC_CORE): likewise.
10571         (SQL_OSC_EXTENDED): likewise.
10572         (SQL_OSC_MINIMUM): likewise.
10573         (SQL_OSCC_COMPLIANT): likewise.
10574         (SQL_OSCC_NOT_COMPLIANT): likewise.
10575         (SQL_OU_DML_STATEMENTS): likewise.
10576         (SQL_OU_INDEX_DEFINITION): likewise.
10577         (SQL_OU_PRIVILEGE_DEFINITION): likewise.
10578         (SQL_OU_PROCEDURE_INVOCATION): likewise.
10579         (SQL_OU_TABLE_DEFINITION): likewise.
10580         (SQL_OUTER_JOINS): likewise.
10581         (SQL_OWNER_TERM): likewise.
10582         (SQL_OWNER_USAGE): likewise.
10583         (SQL_PACKET_SIZE): likewise.
10584         (SQL_PC_NOT_PSEUDO): likewise.
10585         (SQL_POS_add): likewise.
10586         (SQL_POS_DELETE): likewise.
10587         (SQL_POS_OPERATIONS): likewise.
10588         (SQL_POS_POSITION): likewise.
10589         (SQL_POS_REFRESH): likewise.
10590         (SQL_POS_UPDATE): likewise.
10591         (SQL_POSITIONED_STATEMENTS): likewise.
10592         (SQL_PROCEDURE_TERM): likewise.
10593         (SQL_PROCEDURES): likewise.
10594         (SQL_PS_POSITIONED_DELETE): likewise.
10595         (SQL_PS_POSITIONED_UPDATE): likewise.
10596         (SQL_PS_SELECT_FOR_UPDATE): likewise.
10597         (SQL_QL_END): likewise.
10598         (SQL_QL_START): likewise.
10599         (SQL_QU_DML_STATEMENTS): likewise.
10600         (SQL_QU_INDEX_DEFINITION): likewise.
10601         (SQL_QU_PRIVILEGE_DEFINITION): likewise.
10602         (SQL_QU_PROCEDURE_INVOCATION): likewise.
10603         (SQL_QU_TABLE_DEFINITION): likewise.
10604         (SQL_QUALIFIER_LOCATION): likewise.
10605         (SQL_QUALIFIER_NAME_SEPARATOR): likewise.
10606         (SQL_QUALIFIER_TERM): likewise.
10607         (SQL_QUALIFIER_USAGE): likewise.
10608         (SQL_QUERY_TIMEOUT): likewise.
10609         (SQL_QUERY_TIMEOUT_DEFAULT): likewise.
10610         (SQL_QUICK): likewise.
10611         (SQL_QUIET_MODE): likewise.
10612         (SQL_QUOTED_IDENTIFIER_CASE): likewise.
10613         (SQL_RD_DEFAULT): likewise.
10614         (SQL_RD_OFF): likewise.
10615         (SQL_RD_ON): likewise.
10616         (SQL_RETRIEVE_DATA): likewise.
10617         (SQL_ROW_NUMBER): likewise.
10618         (SQL_ROW_UPDATES): likewise.
10619         (SQL_ROWSET_SIZE): likewise.
10620         (SQL_ROWSET_SIZE_DEFAULT): likewise.
10621         (SQL_ROWVER): likewise.
10622         (SQL_SC_NON_UNIQUE): likewise.
10623         (SQL_SC_TRY_UNIQUE): likewise.
10624         (SQL_SC_UNIQUE): likewise.
10625         (SQL_SCCO_OPT_TIMESTAMP): likewise.
10626         (SQL_SCROLL_DYNAMIC): likewise.
10627         (SQL_SCROLL_FORWARD_ONLY): likewise.
10628         (SQL_SCROLL_KEYSET_DRIVEN): likewise.
10629         (SQL_SCROLL_OPTIONS): likewise.
10630         (SQL_SCROLL_STATIC): likewise.
10631         (SQL_SEARCHABLE): likewise.
10632         (SQL_SIGNED_OFFSET): likewise.
10633         (SQL_SIMULATE_CURSOR): likewise.
10634         (SQL_SO_DYNAMIC): likewise.
10635         (SQL_SO_FORWARD_ONLY): likewise.
10636         (SQL_SO_KEYSET_DRIVEN): likewise.
10637         (SQL_SO_MIXED): likewise.
10638         (SQL_SO_STATIC): likewise.
10639         (SQL_SPEC_MAJOR): likewise.
10640         (SQL_SPEC_MINOR): likewise.
10641         (SQL_SPEC_STRING): likewise.
10642         (SQL_SQ_COMPARISON): likewise.
10643         (SQL_SQ_CORRELATED_SUBQUERIES): likewise.
10644         (SQL_SQ_EXISTS): likewise.
10645         (SQL_SQ_IN): likewise.
10646         (SQL_SQ_QUANTIFIED): likewise.
10647         (SQL_SQLSTATE_SIZE): likewise.
10648         (SQL_SS_addITIONS): likewise.
10649         (SQL_SS_DELETIONS): likewise.
10650         (SQL_SS_UPDATES): likewise.
10651         (SQL_STATIC_SENSITIVITY): likewise.
10652         (SQL_STMT_OPT_MAX): likewise.
10653         (SQL_STMT_OPT_MIN): likewise.
10654         (SQL_STRING_FUNCTIONS): likewise.
10655         (SQL_SUBQUERIES): likewise.
10656         (SQL_SYSTEM_FUNCTIONS): likewise.
10657         (SQL_TABLE_STAT): likewise.
10658         (SQL_TABLE_TERM): likewise.
10659         (SQL_TIME): likewise.
10660         (SQL_TIMEDATE_add_INTERVALS): likewise.
10661         (SQL_TIMEDATE_DIFF_INTERVALS): likewise.
10662         (SQL_TIMEDATE_FUNCTIONS): likewise.
10663         (SQL_TIMESTAMP): likewise.
10664         (SQL_TINYINT): likewise.
10665         (SQL_TRANSLATE_DLL): likewise.
10666         (SQL_TRANSLATE_OPTION): likewise.
10667         (SQL_TXN_ISOLATION): likewise.
10668         (SQL_TXN_VERSIONING): likewise.
10669         (SQL_TYPE_DRIVER_END): likewise.
10670         (SQL_TYPE_DRIVER_START): likewise.
10671         (SQL_TYPE_MAX): likewise.
10672         (SQL_TYPE_MIN): likewise.
10673         (SQL_TYPE_NULL): likewise.
10674         (SQL_U_UNION): likewise.
10675         (SQL_U_UNION_ALL): likewise.
10676         (SQL_UB_DEFAULT): likewise.
10677         (SQL_UB_OFF): likewise.
10678         (SQL_UB_ON): likewise.
10679         (SQL_UNICODE): likewise.
10680         (SQL_UNICODE_CHAR): likewise.
10681         (SQL_UNICODE_LONGVARCHAR): likewise.
10682         (SQL_UNICODE_VARCHAR): likewise.
10683         (SQL_UNION): likewise.
10684         (SQL_UNSEARCHABLE): likewise.
10685         (SQL_UNSIGNED_OFFSET): likewise.
10686         (SQL_USE_BOOKMARKS): likewise.
10687         (SQL_VARBINARY): likewise.
10688         (SQL_TRUE): add define for ODBC3.x.
10689         (SQL_FALSE): likewise.
10690         (SQL_AM_CONNECTION): likewise.
10691         (SQL_AM_NONE): likewise.
10692         (SQL_AM_STATEMENT): likewise.
10693         (SQL_API_SQLALLOCHANDLE): likewise.
10694         (SQL_API_SQLBINDPARAM): likewise.
10695         (SQL_API_SQLCLOSECURSOR): likewise.
10696         (SQL_API_SQLCOLATTRIBUTE): likewise.
10697         (SQL_API_SQLCOPYDESC): likewise.
10698         (SQL_API_SQLENDTRAN): likewise.
10699         (SQL_API_SQLFETCHSCROLL): likewise.
10700         (SQL_API_SQLFREEHANDLE): likewise.
10701         (SQL_API_SQLGETCONNECTATTR): likewise.
10702         (SQL_API_SQLGETDESCFIELD): likewise.
10703         (SQL_API_SQLGETDESCREC): likewise.
10704         (SQL_API_SQLGETDIAGFIELD): likewise.
10705         (SQL_API_SQLGETDIAGREC): likewise.
10706         (SQL_API_SQLGETENVATTR): likewise.
10707         (SQL_API_SQLGETSTMTATTR): likewise.
10708         (SQL_API_SQLSETCONNECTATTR): likewise.
10709         (SQL_API_SQLSETDESCFIELD): likewise.
10710         (SQL_API_SQLSETDESCREC): likewise.
10711         (SQL_API_SQLSETENVATTR): likewise.
10712         (SQL_API_SQLSETSTMTATTR): likewise.
10713         (SQL_ARD_TYPE): likewise.
10714         (SQL_AT_add_CONSTRAINT): likewise.
10715         (SQL_ATTR_APP_PARAM_DESC): likewise.
10716         (SQL_ATTR_APP_ROW_DESC): likewise.
10717         (SQL_ATTR_AUTO_IPD): likewise.
10718         (SQL_ATTR_CURSOR_SCROLLABLE): likewise.
10719         (SQL_ATTR_CURSOR_SENSITIVITY): likewise.
10720         (SQL_ATTR_IMP_PARAM_DESC): likewise.
10721         (SQL_ATTR_IMP_ROW_DESC): likewise.
10722         (SQL_ATTR_METADATA_ID): likewise.
10723         (SQL_ATTR_OUTPUT_NTS): likewise.
10724         (SQL_CATALOG_NAME): likewise.
10725         (SQL_CODE_DATE): likewise.
10726         (SQL_CODE_TIME): likewise.
10727         (SQL_CODE_TIMESTAMP): likewise.
10728         (SQL_COLLATION_SEQ): likewise.
10729         (SQL_CURSOR_SENSITIVITY): likewise.
10730         (SQL_DATE_LEN): likewise.
10731         (SQL_DATETIME): likewise.
10732         (SQL_DEFAULT): likewise.
10733         (SQL_DESC_ALLOC_AUTO): likewise.
10734         (SQL_DESC_ALLOC_TYPE): likewise.
10735         (SQL_DESC_ALLOC_USER): likewise.
10736         (SQL_DESC_COUNT): likewise.
10737         (SQL_DESC_DATA_PTR): likewise.
10738         (SQL_DESC_DATETIME_INTERVAL_CODE): likewise.
10739         (SQL_DESC_INDICATOR_PTR): likewise.
10740         (SQL_DESC_LENGTH): likewise.
10741         (SQL_DESC_NAME): likewise.
10742         (SQL_DESC_NULLABLE): likewise.
10743         (SQL_DESC_OCTET_LENGTH): likewise.
10744         (SQL_DESC_OCTET_LENGTH_PTR): likewise.
10745         (SQL_DESC_PRECISION): likewise.
10746         (SQL_DESC_SCALE): likewise.
10747         (SQL_DESC_TYPE): likewise.
10748         (SQL_DESC_UNNAMED): likewise.
10749         (SQL_DESCRIBE_PARAMETER): likewise.
10750         (SQL_DIAG_ALTER_DOMAIN): likewise.
10751         (SQL_DIAG_ALTER_TABLE): likewise.
10752         (SQL_DIAG_CALL): likewise.
10753         (SQL_DIAG_CLASS_ORIGIN): likewise.
10754         (SQL_DIAG_CONNECTION_NAME): likewise.
10755         (SQL_DIAG_CREATE_ASSERTION): likewise.
10756         (SQL_DIAG_CREATE_CHARACTER_SET): likewise.
10757         (SQL_DIAG_CREATE_COLLATION): likewise.
10758         (SQL_DIAG_CREATE_DOMAIN): likewise.
10759         (SQL_DIAG_CREATE_INDEX): likewise.
10760         (SQL_DIAG_CREATE_SCHEMA): likewise.
10761         (SQL_DIAG_CREATE_TABLE): likewise.
10762         (SQL_DIAG_CREATE_TRANSLATION): likewise.
10763         (SQL_DIAG_CREATE_VIEW): likewise.
10764         (SQL_DIAG_DELETE_WHERE): likewise.
10765         (SQL_DIAG_DROP_ASSERTION): likewise.
10766         (SQL_DIAG_DROP_CHARACTER_SET): likewise.
10767         (SQL_DIAG_DROP_COLLATION): likewise.
10768         (SQL_DIAG_DROP_DOMAIN): likewise.
10769         (SQL_DIAG_DROP_INDEX): likewise.
10770         (SQL_DIAG_DROP_SCHEMA): likewise.
10771         (SQL_DIAG_DROP_TABLE): likewise.
10772         (SQL_DIAG_DROP_TRANSLATION): likewise.
10773         (SQL_DIAG_DROP_VIEW): likewise.
10774         (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise.
10775         (SQL_DIAG_DYNAMIC_FUNCTION): likewise.
10776         (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise.
10777         (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise.
10778         (SQL_DIAG_GRANT): likewise.
10779         (SQL_DIAG_INSERT): likewise.
10780         (SQL_DIAG_MESSAGE_TEXT): likewise.
10781         (SQL_DIAG_NATIVE): likewise.
10782         (SQL_DIAG_NUMBER): likewise.
10783         (SQL_DIAG_RETURNCODE): likewise.
10784         (SQL_DIAG_REVOKE): likewise.
10785         (SQL_DIAG_ROW_COUNT): likewise.
10786         (SQL_DIAG_SELECT_CURSOR): likewise.
10787         (SQL_DIAG_SERVER_NAME): likewise.
10788         (SQL_DIAG_SQLSTATE): likewise.
10789         (SQL_DIAG_SUBCLASS_ORIGIN): likewise.
10790         (SQL_DIAG_UNKNOWN_STATEMENT): likewise.
10791         (SQL_DIAG_UPDATE_WHERE): likewise.
10792         (SQL_FALSE): likewise.
10793         (SQL_FETCH_ABSOLUTE): likewise.
10794         (SQL_FETCH_LAST): likewise.
10795         (SQL_FETCH_PRIOR): likewise.
10796         (SQL_FETCH_RELATIVE): likewise.
10797         (SQL_HANDLE_DBC): likewise.
10798         (SQL_HANDLE_DESC): likewise.
10799         (SQL_HANDLE_ENV): likewise.
10800         (SQL_HANDLE_STMT): likewise.
10801         (SQL_INSENSITIVE): likewise.
10802         (SQL_INTEGRITY): likewise.
10803         (SQL_MAX_CATALOG_NAME_LEN): likewise.
10804         (SQL_MAX_CONCURRENT_ACTIVITIES): likewise.
10805         (SQL_MAX_DRIVER_CONNECTIONS): likewise.
10806         (SQL_MAX_IDENTIFIER_LEN): likewise.
10807         (SQL_MAX_SCHEMA_NAME_LEN): likewise.
10808         (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise.
10809         (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise.
10810         (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise.
10811         (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise.
10812         (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise.
10813         (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise.
10814         (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise.
10815         (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise.
10816         (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise.
10817         (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise.
10818         (SQL_MAXIMUM_INDEX_SIZE): likewise.
10819         (SQL_MAXIMUM_ROW_SIZE): likewise.
10820         (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise.
10821         (SQL_MAXIMUM_STATEMENT_LENGTH): likewise.
10822         (SQL_MAXIMUM_TABLES_IN_SELECT): likewise.
10823         (SQL_MAXIMUM_USER_NAME_LENGTH): likewise.
10824         (SQL_NAMED): likewise.
10825         (SQL_NONSCROLLABLE): likewise.
10826         (SQL_NTSL): likewise.
10827         (SQL_NULL_HANDLE): likewise.
10828         (SQL_NULL_HDESC): likewise.
10829         (SQL_OUTER_JOIN_CAPABILITIES): likewise.
10830         (SQL_PRED_BASIC): likewise.
10831         (SQL_PRED_CHAR): likewise.
10832         (SQL_PRED_NONE): likewise.
10833         (SQL_ROW_IDENTIFIER): likewise.
10834         (SQL_SCROLLABLE): likewise.
10835         (SQL_SENSITIVE): likewise.
10836         (SQL_SUCCEEDED(rc)): likewise.
10837         (SQL_TIME_LEN): likewise.
10838         (SQL_TIMESTAMP_LEN): likewise.
10839         (SQL_TRANSACTION_CAPABLE): likewise.
10840         (SQL_TRANSACTION_ISOLATION_OPTION): likewise.
10841         (SQL_TRANSACTION_READ_COMMITTED): likewise.
10842         (SQL_TRANSACTION_READ_UNCOMMITTED): likewise.
10843         (SQL_TRANSACTION_REPEATABLE_READ): likewise.
10844         (SQL_TRANSACTION_SERIALIZABLE): likewise.
10845         (SQL_TYPE_DATE): likewise.
10846         (SQL_TYPE_TIME): likewise.
10847         (SQL_TYPE_TIMESTAMP): likewise.
10848         (SQL_UNKNOWN_TYPE): likewise.
10849         (SQL_UNNAMED): likewise.
10850         (SQL_UNSPECIFIED): likewise.
10851         (SQL_XOPEN_CLI_YEAR): likewise.
10852         (SQLAllocConnect): add comment marking as deperecated.
10853         (SQLAllocEnv): likewise.
10854         (SQLAllocStmt): likewise.
10855         (SQLFreeConnect): likewise.
10856         (SQLFreeEnv): likewise.
10857         (SQLGetConnectOption): likewise.
10858         (SQLGetStmtOption): likewise.
10859
10860         * include/sqlext.h (#include <sqlucode.h>): add directive.
10861         (SQLSetScrollOptions): non-core function, move prototype from sql.h.
10862         (SQLColAttributes): likewise.
10863         (SQLBulkOperations): add function prototype.
10864         (SQLAllocHandleStd): likewise
10865         (TraceReturn): add Trace API prototype.
10866         (TraceVersion): likewise.
10867         (ODBCGetTryWaitValue):likewise.
10868         (ODBCSetTryWaitValue): likewise.
10869         (SQL_LOCK_RECORD): correct function macro.
10870         (SQL_REFRESH_RECORD): likewise.
10871         (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for
10872         _WIN64 compatability.
10873         move defines for non-core functions from sql.h to sqlext.h (refer
10874         changes for sql.h)
10875         (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define
10876         (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise.
10877         (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise.
10878         (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
10879         (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise.
10880         (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise.
10881         (SQL_AD_ADD_DOMAIN_DEFAULT): likewise.
10882         (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise.
10883         (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise.
10884         (SQL_AD_DROP_DOMAIN_DEFAULT): likewise.
10885         (SQL_AF_ALL): likewise.
10886         (SQL_AF_AVG): likewise.
10887         (SQL_AF_COUNT): likewise.
10888         (SQL_AF_DISTINCT): likewise.
10889         (SQL_AF_MAX): likewise.
10890         (SQL_AF_MIN): likewise.
10891         (SQL_AF_SUM): likewise.
10892         (SQL_AGGREGATE_FUNCTIONS): likewise.
10893         (SQL_ALL_CATALOGS): likewise.
10894         (SQL_ALL_SCHEMAS): likewise.
10895         (SQL_ALL_TABLE_TYPES): likewise.
10896         (SQL_ALTER_DOMAIN): likewise.
10897         (SQL_AM_CONNECTION): likewise.
10898         (SQL_AM_NONE): likewise.
10899         (SQL_AM_STATEMENT): likewise.
10900         (SQL_API_ODBC3_ALL_FUNCTIONS): likewise.
10901         (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise.
10902         (SQL_API_SQLALLOCHANDLESTD): likewise.
10903         (SQL_API_SQLBULKOPERATIONS): likewise.
10904         (SQL_ASYNC_MODE): likewise.
10905         (SQL_AT_ADD_COLUMN_COLLATION): likewise.
10906         (SQL_AT_ADD_COLUMN_DEFAULT): likewise.
10907         (SQL_AT_ADD_COLUMN_SINGLE): likewise.
10908         (SQL_AT_ADD_TABLE_CONSTRAINT): likewise.
10909         (SQL_AT_CONSTRAINT_DEFERRABLE): likewise.
10910         (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
10911         (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
10912         (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise.
10913         (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise.
10914         (SQL_AT_DROP_COLUMN_CASCADE): likewise.
10915         (SQL_AT_DROP_COLUMN_DEFAULT): likewise.
10916         (SQL_AT_DROP_COLUMN_RESTRICT): likewise.
10917         (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise.
10918         (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise.
10919         (SQL_AT_SET_COLUMN_DEFAULT): likewise.
10920         (SQL_ATTR_ACCESS_MODE): likewise.
10921         (SQL_ATTR_ASYNC_ENABLE): likewise.
10922         (SQL_ATTR_AUTOCOMMIT): likewise.
10923         (SQL_ATTR_CONCURRENCY): likewise.
10924         (SQL_ATTR_CONNECTION_POOLING): likewise.
10925         (SQL_ATTR_CONNECTION_TIMEOUT): likewise.
10926         (SQL_ATTR_CP_MATCH): likewise.
10927         (SQL_ATTR_CURRENT_CATALOG): likewise.
10928         (SQL_ATTR_CURSOR_TYPE): likewise.
10929         (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise.
10930         (SQL_ATTR_ENABLE_AUTO_IPD): likewise.
10931         (SQL_ATTR_ENLIST_IN_DTC): likewise.
10932         (SQL_ATTR_ENLIST_IN_XA): likewise.
10933         (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise.
10934         (SQL_ATTR_KEYSET_SIZE): likewise.
10935         (SQL_ATTR_LOGIN_TIMEOUT): likewise.
10936         (SQL_ATTR_MAX_LENGTH): likewise.
10937         (SQL_ATTR_MAX_ROWS): likewise.
10938         (SQL_ATTR_NOSCAN): likewise.
10939         (SQL_ATTR_ODBC_CURSORS): likewise.
10940         (SQL_ATTR_ODBC_VERSION): likewise.
10941         (SQL_ATTR_PACKET_SIZE): likewise.
10942         (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise.
10943         (SQL_ATTR_PARAM_BIND_TYPE): likewise.
10944         (SQL_ATTR_PARAM_OPERATION_PTR): likewise.
10945         (SQL_ATTR_PARAM_STATUS_PTR): likewise.
10946         (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise.
10947         (SQL_ATTR_PARAMSET_SIZE): likewise.
10948         (SQL_ATTR_QUERY_TIMEOUT): likewise.
10949         (SQL_ATTR_QUIET_MODE): likewise.
10950         (SQL_ATTR_RETRIEVE_DATA): likewise.
10951         (SQL_ATTR_ROW_ARRAY_SIZE): likewise.
10952         (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise.
10953         (SQL_ATTR_ROW_BIND_TYPE): likewise.
10954         (SQL_ATTR_ROW_NUMBER): likewise.
10955         (SQL_ATTR_ROW_OPERATION_PTR): likewise.
10956         (SQL_ATTR_ROW_STATUS_PTR): likewise.
10957         (SQL_ATTR_ROWS_FETCHED_PTR): likewise.
10958         (SQL_ATTR_SIMULATE_CURSOR): likewise.
10959         (SQL_ATTR_TRACE): likewise.
10960         (SQL_ATTR_TRACEFILE): likewise.
10961         (SQL_ATTR_TRANSLATE_LIB): likewise.
10962         (SQL_ATTR_TRANSLATE_OPTION): likewise.
10963         (SQL_ATTR_TXN_ISOLATION): likewise.
10964         (SQL_ATTR_USE_BOOKMARKS): likewise.
10965         (SQL_BATCH_ROW_COUNT): likewise.
10966         (SQL_BATCH_SUPPORT): likewise.
10967         (SQL_BRC_EXPLICIT): likewise.
10968         (SQL_BRC_PROCEDURES): likewise.
10969         (SQL_BRC_ROLLED_UP): likewise.
10970         (SQL_BS_ROW_COUNT_EXPLICIT): likewise.
10971         (SQL_BS_ROW_COUNT_PROC): likewise.
10972         (SQL_BS_SELECT_EXPLICIT): likewise.
10973         (SQL_BS_SELECT_PROC): likewise.
10974         (SQL_C_INTERVAL_DAY): likewise.
10975         (SQL_C_INTERVAL_DAY_TO_HOUR): likewise.
10976         (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise.
10977         (SQL_C_INTERVAL_DAY_TO_SECOND): likewise.
10978         (SQL_C_INTERVAL_HOUR): likewise.
10979         (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise.
10980         (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise.
10981         (SQL_C_INTERVAL_MINUTE): likewise.
10982         (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise.
10983         (SQL_C_INTERVAL_MONTH): likewise.
10984         (SQL_C_INTERVAL_SECOND): likewise.
10985         (SQL_C_INTERVAL_YEAR): likewise.
10986         (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise.
10987         (SQL_C_NUMERIC): likewise.
10988         (SQL_C_SBIGINT): likewise.
10989         (SQL_C_TYPE_DATE): likewise.
10990         (SQL_C_TYPE_TIME): likewise.
10991         (SQL_C_TYPE_TIMESTAMP): likewise.
10992         (SQL_C_UBIGINT): likewise.
10993         (SQL_C_VARBOOKMARK): likewise.
10994         (SQL_CA_CONSTRAINT_DEFERRABLE): likewise.
10995         (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise.
10996         (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
10997         (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise.
10998         (SQL_CA_CREATE_ASSERTION): likewise.
10999         (SQL_CA1_ABSOLUTE): likewise.
11000         (SQL_CA1_BOOKMARK): likewise.
11001         (SQL_CA1_BULK_ADD): likewise.
11002         (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise.
11003         (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise.
11004         (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise.
11005         (SQL_CA1_LOCK_EXCLUSIVE): likewise.
11006         (SQL_CA1_LOCK_NO_CHANGE): likewise.
11007         (SQL_CA1_LOCK_UNLOCK): likewise.
11008         (SQL_CA1_NEXT): likewise.
11009         (SQL_CA1_POS_DELETE): likewise.
11010         (SQL_CA1_POS_POSITION): likewise.
11011         (SQL_CA1_POS_REFRESH): likewise.
11012         (SQL_CA1_POS_UPDATE): likewise.
11013         (SQL_CA1_POSITIONED_DELETE): likewise.
11014         (SQL_CA1_POSITIONED_UPDATE): likewise.
11015         (SQL_CA1_RELATIVE): likewise.
11016         (SQL_CA1_SELECT_FOR_UPDATE): likewise.
11017         (SQL_CA2_CRC_APPROXIMATE): likewise.
11018         (SQL_CA2_CRC_EXACT): likewise.
11019         (SQL_CA2_LOCK_CONCURRENCY): likewise.
11020         (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise.
11021         (SQL_CA2_MAX_ROWS_CATALOG): likewise.
11022         (SQL_CA2_MAX_ROWS_DELETE): likewise.
11023         (SQL_CA2_MAX_ROWS_INSERT): likewise.
11024         (SQL_CA2_MAX_ROWS_SELECT): likewise.
11025         (SQL_CA2_MAX_ROWS_UPDATE): likewise.
11026         (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise.
11027         (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise.
11028         (SQL_CA2_READ_ONLY_CONCURRENCY): likewise.
11029         (SQL_CA2_SENSITIVITY_ADDITIONS): likewise.
11030         (SQL_CA2_SENSITIVITY_DELETIONS): likewise.
11031         (SQL_CA2_SENSITIVITY_UPDATES): likewise.
11032         (SQL_CA2_SIMULATE_NON_UNIQUE): likewise.
11033         (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise.
11034         (SQL_CA2_SIMULATE_UNIQUE): likewise.
11035         (SQL_CATALOG_LOCATION): likewise.
11036         (SQL_CATALOG_NAME_SEPARATOR): likewise.
11037         (SQL_CATALOG_TERM): likewise.
11038         (SQL_CATALOG_USAGE): likewise.
11039         (SQL_CCOL_CREATE_COLLATION): likewise.
11040         (SQL_CCS_COLLATE_CLAUSE): likewise.
11041         (SQL_CCS_CREATE_CHARACTER_SET): likewise.
11042         (SQL_CCS_LIMITED_COLLATION): likewise.
11043         (SQL_CDO_COLLATION): likewise.
11044         (SQL_CDO_CONSTRAINT): likewise.
11045         (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise.
11046         (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11047         (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11048         (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise.
11049         (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise.
11050         (SQL_CDO_CREATE_DOMAIN): likewise.
11051         (SQL_CDO_DEFAULT): likewise.
11052         (SQL_CL_END): likewise.
11053         (SQL_CL_START): likewise.
11054         (SQL_COL_PRED_BASIC): likewise.
11055         (SQL_COL_PRED_CHAR): likewise.
11056         (SQL_COLUMN_DRIVER_START): likewise.
11057         (SQL_COLUMN_IGNORE): likewise.
11058         (SQL_COLUMN_NUMBER_UNKNOWN): likewise.
11059         (SQL_CONVERT_GUID): likewise.
11060         (SQL_CONVERT_INTERVAL_DAY_TIME): likewise.
11061         (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise.
11062         (SQL_CONVERT_WCHAR): likewise.
11063         (SQL_CONVERT_WLONGVARCHAR): likewise.
11064         (SQL_CONVERT_WVARCHAR): likewise.
11065         (SQL_CP_DEFAULT): likewise.
11066         (SQL_CP_MATCH_DEFAULT): likewise.
11067         (SQL_CP_OFF): likewise.
11068         (SQL_CP_ONE_PER_DRIVER): likewise.
11069         (SQL_CP_ONE_PER_HENV): likewise.
11070         (SQL_CP_RELAXED_MATCH): likewise.
11071         (SQL_CP_STRICT_MATCH): likewise.
11072         (SQL_CREATE_ASSERTION): likewise.
11073         (SQL_CREATE_CHARACTER_SET): likewise.
11074         (SQL_CREATE_COLLATION): likewise.
11075         (SQL_CREATE_DOMAIN): likewise.
11076         (SQL_CREATE_SCHEMA): likewise.
11077         (SQL_CREATE_TABLE): likewise.
11078         (SQL_CREATE_TRANSLATION): likewise.
11079         (SQL_CREATE_VIEW): likewise.
11080         (SQL_CS_AUTHORIZATION): likewise.
11081         (SQL_CS_CREATE_SCHEMA): likewise.
11082         (SQL_CS_DEFAULT_CHARACTER_SET): likewise.
11083         (SQL_CT_COLUMN_COLLATION): likewise.
11084         (SQL_CT_COLUMN_CONSTRAINT): likewise.
11085         (SQL_CT_COLUMN_DEFAULT): likewise.
11086         (SQL_CT_COMMIT_DELETE): likewise.
11087         (SQL_CT_COMMIT_PRESERVE): likewise.
11088         (SQL_CT_CONSTRAINT_DEFERRABLE): likewise.
11089         (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise.
11090         (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise.
11091         (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise.
11092         (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise.
11093         (SQL_CT_CREATE_TABLE): likewise.
11094         (SQL_CT_GLOBAL_TEMPORARY): likewise.
11095         (SQL_CT_LOCAL_TEMPORARY): likewise.
11096         (SQL_CT_TABLE_CONSTRAINT): likewise.
11097         (SQL_CTR_CREATE_TRANSLATION): likewise.
11098         (SQL_CU_DML_STATEMENTS): likewise.
11099         (SQL_CU_INDEX_DEFINITION): likewise.
11100         (SQL_CU_PRIVILEGE_DEFINITION): likewise.
11101         (SQL_CU_PROCEDURE_INVOCATION): likewise.
11102         (SQL_CU_TABLE_DEFINITION): likewise.
11103         (SQL_CVT_GUID): likewise.
11104         (SQL_CVT_INTERVAL_DAY_TIME): likewise.
11105         (SQL_CVT_INTERVAL_YEAR_MONTH): likewise.
11106         (SQL_CVT_WCHAR): likewise.
11107         (SQL_CVT_WLONGVARCHAR): likewise.
11108         (SQL_CVT_WVARCHAR): likewise.
11109         (SQL_DA_DROP_ASSERTION): likewise.
11110         (SQL_DATETIME_LITERALS): likewise.
11111         (SQL_DB_DEFAULT): likewise.
11112         (SQL_DB_DISCONNECT): likewise.
11113         (SQL_DB_RETURN_TO_POOL): likewise.
11114         (SQL_DC_DROP_COLLATION): likewise.
11115         (SQL_DCS_DROP_CHARACTER_SET): likewise.
11116         (SQL_DD_CASCADE): likewise.
11117         (SQL_DD_DROP_DOMAIN): likewise.
11118         (SQL_DD_RESTRICT): likewise.
11119         (SQL_DDL_INDEX): likewise.
11120         (SQL_DELETE_BY_BOOKMARK): likewise.
11121         (SQL_DESC_ARRAY_SIZE): likewise.
11122         (SQL_DESC_ARRAY_STATUS_PTR): likewise.
11123         (SQL_DESC_AUTO_UNIQUE_VALUE): likewise.
11124         (SQL_DESC_BASE_COLUMN_NAME): likewise.
11125         (SQL_DESC_BASE_TABLE_NAME): likewise.
11126         (SQL_DESC_BIND_OFFSET_PTR): likewise.
11127         (SQL_DESC_BIND_TYPE): likewise.
11128         (SQL_DESC_CASE_SENSITIVE): likewise.
11129         (SQL_DESC_CATALOG_NAME): likewise.
11130         (SQL_DESC_CONCISE_TYPE): likewise.
11131         (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise.
11132         (SQL_DESC_DISPLAY_SIZE): likewise.
11133         (SQL_DESC_FIXED_PREC_SCALE): likewise.
11134         (SQL_DESC_LABEL): likewise.
11135         (SQL_DESC_LITERAL_PREFIX): likewise.
11136         (SQL_DESC_LITERAL_SUFFIX): likewise.
11137         (SQL_DESC_LOCAL_TYPE_NAME): likewise.
11138         (SQL_DESC_MAXIMUM_SCALE): likewise.
11139         (SQL_DESC_MINIMUM_SCALE): likewise.
11140         (SQL_DESC_NUM_PREC_RADIX): likewise.
11141         (SQL_DESC_PARAMETER_TYPE): likewise.
11142         (SQL_DESC_ROWS_PROCESSED_PTR): likewise.
11143         (SQL_DESC_SCHEMA_NAME): likewise.
11144         (SQL_DESC_SEARCHABLE): likewise.
11145         (SQL_DESC_TABLE_NAME): likewise.
11146         (SQL_DESC_TYPE_NAME): likewise.
11147         (SQL_DESC_UNSIGNED): likewise.
11148         (SQL_DESC_UPDATABLE): likewise.
11149         (SQL_DI_CREATE_INDEX): likewise.
11150         (SQL_DI_DROP_INDEX): likewise.
11151         (SQL_DIAG_COLUMN_NUMBER): likewise.
11152         (SQL_DIAG_CURSOR_ROW_COUNT): likewise.
11153         (SQL_DIAG_ROW_NUMBER): likewise.
11154         (SQL_DL_SQL92_DATE): likewise.
11155         (SQL_DL_SQL92_INTERVAL_DAY): likewise.
11156         (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise.
11157         (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise.
11158         (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise.
11159         (SQL_DL_SQL92_INTERVAL_HOUR): likewise.
11160         (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise.
11161         (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise.
11162         (SQL_DL_SQL92_INTERVAL_MINUTE): likewise.
11163         (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise.
11164         (SQL_DL_SQL92_INTERVAL_MONTH): likewise.
11165         (SQL_DL_SQL92_INTERVAL_SECOND): likewise.
11166         (SQL_DL_SQL92_INTERVAL_YEAR): likewise.
11167         (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise.
11168         (SQL_DL_SQL92_TIME): likewise.
11169         (SQL_DL_SQL92_TIMESTAMP): likewise.
11170         (SQL_DM_VER): likewise.
11171         (SQL_DRIVER_HDESC): likewise.
11172         (SQL_DROP_ASSERTION): likewise.
11173         (SQL_DROP_CHARACTER_SET): likewise.
11174         (SQL_DROP_COLLATION): likewise.
11175         (SQL_DROP_DOMAIN): likewise.
11176         (SQL_DROP_SCHEMA): likewise.
11177         (SQL_DROP_TABLE): likewise.
11178         (SQL_DROP_TRANSLATION): likewise.
11179         (SQL_DROP_VIEW): likewise.
11180         (SQL_DS_CASCADE): likewise.
11181         (SQL_DS_DROP_SCHEMA): likewise.
11182         (SQL_DS_RESTRICT): likewise.
11183         (SQL_DT_CASCADE): likewise.
11184         (SQL_DT_DROP_TABLE): likewise.
11185         (SQL_DT_RESTRICT): likewise.
11186         (SQL_DTC_DONE): likewise.
11187         (SQL_DTR_DROP_TRANSLATION): likewise.
11188         (SQL_DV_CASCADE): likewise.
11189         (SQL_DV_DROP_VIEW): likewise.
11190         (SQL_DV_RESTRICT): likewise.
11191         (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise.
11192         (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise.
11193         (SQL_EXT_API_LAST): likewise.
11194         (SQL_EXT_API_START): likewise.
11195         (SQL_FETCH_BY_BOOKMARK): likewise.
11196         (SQL_FETCH_FIRST_SYSTEM): likewise.
11197         (SQL_FETCH_FIRST_USER): likewise.
11198         (SQL_FN_CVT_CAST): likewise.
11199         (SQL_FN_STR_BIT_LENGTH): likewise.
11200         (SQL_FN_STR_CHAR_LENGTH): likewise.
11201         (SQL_FN_STR_CHARACTER_LENGTH): likewise.
11202         (SQL_FN_STR_OCTET_LENGTH): likewise.
11203         (SQL_FN_STR_POSITION): likewise.
11204         (SQL_FN_TD_CURRENT_DATE): likewise.
11205         (SQL_FN_TD_CURRENT_TIME): likewise.
11206         (SQL_FN_TD_CURRENT_TIMESTAMP): likewise.
11207         (SQL_FN_TD_EXTRACT): likewise.
11208         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise.
11209         (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise.
11210         (SQL_FUNC_EXISTS(exists,api)): likewise.
11211         (SQL_GB_COLLATE): likewise.
11212         (SQL_HANDLE_SENV): likewise.
11213         (SQL_IK_ALL): likewise.
11214         (SQL_IK_ASC): likewise.
11215         (SQL_IK_DESC): likewise.
11216         (SQL_IK_NONE): likewise.
11217         (SQL_INDEX_KEYWORDS): likewise.
11218         (SQL_INFO_DRIVER_START): likewise.
11219         (SQL_INFO_LAST): likewise.
11220         (SQL_INFO_SCHEMA_VIEWS): likewise.
11221         (SQL_INITIALLY_DEFERRED): likewise.
11222         (SQL_INITIALLY_IMMEDIATE): likewise.
11223         (SQL_INSERT_STATEMENT): likewise.
11224         (SQL_INTERVAL): likewise.
11225         (SQL_IS_INSERT_LITERALS): likewise.
11226         (SQL_IS_INSERT_SEARCHED): likewise.
11227         (SQL_IS_INTEGER): likewise.
11228         (SQL_IS_POINTER): likewise.
11229         (SQL_IS_SELECT_INTO): likewise.
11230         (SQL_IS_SMALLINT): likewise.
11231         (SQL_IS_UINTEGER): likewise.
11232         (SQL_IS_USMALLINT): likewise.
11233         (SQL_ISV_ASSERTIONS): likewise.
11234         (SQL_ISV_CHARACTER_SETS): likewise.
11235         (SQL_ISV_CHECK_CONSTRAINTS): likewise.
11236         (SQL_ISV_COLLATIONS): likewise.
11237         (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise.
11238         (SQL_ISV_COLUMN_PRIVILEGES): likewise.
11239         (SQL_ISV_COLUMNS): likewise.
11240         (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise.
11241         (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise.
11242         (SQL_ISV_DOMAIN_CONSTRAINTS): likewise.
11243         (SQL_ISV_DOMAINS): likewise.
11244         (SQL_ISV_KEY_COLUMN_USAGE): likewise.
11245         (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise.
11246         (SQL_ISV_SCHEMATA): likewise.
11247         (SQL_ISV_SQL_LANGUAGES): likewise.
11248         (SQL_ISV_TABLE_CONSTRAINTS): likewise.
11249         (SQL_ISV_TABLE_PRIVILEGES): likewise.
11250         (SQL_ISV_TABLES): likewise.
11251         (SQL_ISV_TRANSLATIONS): likewise.
11252         (SQL_ISV_USAGE_PRIVILEGES): likewise.
11253         (SQL_ISV_VIEW_COLUMN_USAGE): likewise.
11254         (SQL_ISV_VIEW_TABLE_USAGE): likewise.
11255         (SQL_ISV_VIEWS): likewise.
11256         (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise.
11257         (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise.
11258         (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise.
11259         (SQL_NO_COLUMN_NUMBER): likewise.
11260         (SQL_NO_ROW_NUMBER): likewise.
11261         (SQL_NOT_DEFERRABLE): likewise.
11262         (SQL_NUM_EXTENSIONS): likewise.
11263         (SQL_NUM_FUNCTIONS): likewise.
11264         (SQL_ODBC_INTERFACE_CONFORMANCE): likewise.
11265         (SQL_OIC_CORE): likewise.
11266         (SQL_OIC_LEVEL1): likewise.
11267         (SQL_OIC_LEVEL2): likewise.
11268         (SQL_OV_ODBC2): likewise.
11269         (SQL_OV_ODBC3): likewise.
11270         (SQL_PARAM_ARRAY_ROW_COUNTS): likewise.
11271         (SQL_PARAM_ARRAY_SELECTS): likewise.
11272         (SQL_PARAM_BIND_BY_COLUMN): likewise.
11273         (SQL_PARAM_BIND_TYPE_DEFAULT): likewise.
11274         (SQL_PARAM_DIAG_UNAVAILABLE): likewise.
11275         (SQL_PARAM_ERROR): likewise.
11276         (SQL_PARAM_IGNORE): likewise.
11277         (SQL_PARAM_PROCEED): likewise.
11278         (SQL_PARAM_SUCCESS): likewise.
11279         (SQL_PARAM_SUCCESS_WITH_INFO): likewise.
11280         (SQL_PARAM_UNUSED): likewise.
11281         (SQL_PARC_BATCH): likewise.
11282         (SQL_PARC_NO_BATCH): likewise.
11283         (SQL_PAS_BATCH): likewise.
11284         (SQL_PAS_NO_BATCH): likewise.
11285         (SQL_PAS_NO_SELECT): likewise.
11286         (SQL_ROW_IGNORE): likewise.
11287         (SQL_ROW_NUMBER_UNKNOWN): likewise.
11288         (SQL_ROW_PROCEED): likewise.
11289         (SQL_ROW_SUCCESS_WITH_INFO): likewise.
11290         (SQL_SC_FIPS127_2_TRANSITIONAL): likewise.
11291         (SQL_SC_SQL92_ENTRY): likewise.
11292         (SQL_SC_SQL92_FULL): likewise.
11293         (SQL_SC_SQL92_INTERMEDIATE): likewise.
11294         (SQL_SCC_ISO92_CLI): likewise.
11295         (SQL_SCC_XOPEN_CLI_VERSION1): likewise.
11296         (SQL_SCHEMA_TERM): likewise.
11297         (SQL_SCHEMA_USAGE): likewise.
11298         (SQL_SDF_CURRENT_DATE): likewise.
11299         (SQL_SDF_CURRENT_TIME): likewise.
11300         (SQL_SDF_CURRENT_TIMESTAMP): likewise.
11301         (SQL_SFKD_CASCADE): likewise.
11302         (SQL_SFKD_NO_ACTION): likewise.
11303         (SQL_SFKD_SET_DEFAULT): likewise.
11304         (SQL_SFKD_SET_NULL): likewise.
11305         (SQL_SFKU_CASCADE): likewise.
11306         (SQL_SFKU_NO_ACTION): likewise.
11307         (SQL_SFKU_SET_DEFAULT): likewise.
11308         (SQL_SFKU_SET_NULL): likewise.
11309         (SQL_SG_DELETE_TABLE): likewise.
11310         (SQL_SG_INSERT_COLUMN): likewise.
11311         (SQL_SG_INSERT_TABLE): likewise.
11312         (SQL_SG_REFERENCES_COLUMN): likewise.
11313         (SQL_SG_REFERENCES_TABLE): likewise.
11314         (SQL_SG_SELECT_TABLE): likewise.
11315         (SQL_SG_UPDATE_COLUMN): likewise.
11316         (SQL_SG_UPDATE_TABLE): likewise.
11317         (SQL_SG_USAGE_ON_CHARACTER_SET): likewise.
11318         (SQL_SG_USAGE_ON_COLLATION): likewise.
11319         (SQL_SG_USAGE_ON_DOMAIN): likewise.
11320         (SQL_SG_USAGE_ON_TRANSLATION): likewise.
11321         (SQL_SG_WITH_GRANT_OPTION): likewise.
11322         (SQL_SNVF_BIT_LENGTH): likewise.
11323         (SQL_SNVF_CHAR_LENGTH): likewise.
11324         (SQL_SNVF_CHARACTER_LENGTH): likewise.
11325         (SQL_SNVF_EXTRACT): likewise.
11326         (SQL_SNVF_OCTET_LENGTH): likewise.
11327         (SQL_SNVF_POSITION): likewise.
11328         (SQL_SP_BETWEEN): likewise.
11329         (SQL_SP_COMPARISON): likewise.
11330         (SQL_SP_EXISTS): likewise.
11331         (SQL_SP_IN): likewise.
11332         (SQL_SP_ISNOTNULL): likewise.
11333         (SQL_SP_ISNULL): likewise.
11334         (SQL_SP_LIKE): likewise.
11335         (SQL_SP_MATCH_FULL): likewise.
11336         (SQL_SP_MATCH_PARTIAL): likewise.
11337         (SQL_SP_MATCH_UNIQUE_FULL): likewise.
11338         (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise.
11339         (SQL_SP_OVERLAPS): likewise.
11340         (SQL_SP_QUANTIFIED_COMPARISON): likewise.
11341         (SQL_SP_UNIQUE): likewise.
11342         (SQL_SQL_CONFORMANCE): likewise.
11343         (SQL_SQL92_DATETIME_FUNCTIONS): likewise.
11344         (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise.
11345         (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise.
11346         (SQL_SQL92_GRANT): likewise.
11347         (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise.
11348         (SQL_SQL92_PREDICATES): likewise.
11349         (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise.
11350         (SQL_SQL92_REVOKE): likewise.
11351         (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise.
11352         (SQL_SQL92_STRING_FUNCTIONS): likewise.
11353         (SQL_SQL92_VALUE_EXPRESSIONS): likewise.
11354         (SQL_SR_CASCADE): likewise.
11355         (SQL_SR_DELETE_TABLE): likewise.
11356         (SQL_SR_GRANT_OPTION_FOR): likewise.
11357         (SQL_SR_INSERT_COLUMN): likewise.
11358         (SQL_SR_INSERT_TABLE): likewise.
11359         (SQL_SR_REFERENCES_COLUMN): likewise.
11360         (SQL_SR_REFERENCES_TABLE): likewise.
11361         (SQL_SR_RESTRICT): likewise.
11362         (SQL_SR_SELECT_TABLE): likewise.
11363         (SQL_SR_UPDATE_COLUMN): likewise.
11364         (SQL_SR_UPDATE_TABLE): likewise.
11365         (SQL_SR_USAGE_ON_CHARACTER_SET): likewise.
11366         (SQL_SR_USAGE_ON_COLLATION): likewise.
11367         (SQL_SR_USAGE_ON_DOMAIN): likewise.
11368         (SQL_SR_USAGE_ON_TRANSLATION): likewise.
11369         (SQL_SRJO_CORRESPONDING_CLAUSE): likewise.
11370         (SQL_SRJO_CROSS_JOIN): likewise.
11371         (SQL_SRJO_EXCEPT_JOIN): likewise.
11372         (SQL_SRJO_FULL_OUTER_JOIN): likewise.
11373         (SQL_SRJO_INNER_JOIN): likewise.
11374         (SQL_SRJO_INTERSECT_JOIN): likewise.
11375         (SQL_SRJO_LEFT_OUTER_JOIN): likewise.
11376         (SQL_SRJO_NATURAL_JOIN): likewise.
11377         (SQL_SRJO_RIGHT_OUTER_JOIN): likewise.
11378         (SQL_SRJO_UNION_JOIN): likewise.
11379         (SQL_SRVC_DEFAULT): likewise.
11380         (SQL_SRVC_NULL): likewise.
11381         (SQL_SRVC_ROW_SUBQUERY): likewise.
11382         (SQL_SRVC_VALUE_EXPRESSION): likewise.
11383         (SQL_SSF_CONVERT): likewise.
11384         (SQL_SSF_LOWER): likewise.
11385         (SQL_SSF_SUBSTRING): likewise.
11386         (SQL_SSF_TRANSLATE): likewise.
11387         (SQL_SSF_TRIM_BOTH): likewise.
11388         (SQL_SSF_TRIM_LEADING): likewise.
11389         (SQL_SSF_TRIM_TRAILING): likewise.
11390         (SQL_SSF_UPPER): likewise.
11391         (SQL_STANDARD_CLI_CONFORMANCE): likewise.
11392         (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise.
11393         (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise.
11394         (SQL_SU_DML_STATEMENTS): likewise.
11395         (SQL_SU_INDEX_DEFINITION): likewise.
11396         (SQL_SU_PRIVILEGE_DEFINITION): likewise.
11397         (SQL_SU_PROCEDURE_INVOCATION): likewise.
11398         (SQL_SU_TABLE_DEFINITION): likewise.
11399         (SQL_SVE_CASE): likewise.
11400         (SQL_SVE_CAST): likewise.
11401         (SQL_SVE_COALESCE): likewise.
11402         (SQL_SVE_NULLIF): likewise.
11403         (SQL_UB_FIXED): likewise.
11404         (SQL_UB_VARIABLE): likewise.
11405         (SQL_UNION_STATEMENT): likewise.
11406         (SQL_UPDATE_BY_BOOKMARK): likewise.
11407         (SQL_US_UNION): likewise.
11408         (SQL_US_UNION_ALL): likewise.
11409         (SQL_DESC_ROWVER): likewise.
11410         (SQL_GUID): likewise.
11411         (SQL_C_GUID): likewise.
11412         (ODBC_STD): likewise.
11413         (SQLAllocHandle): likewise.
11414         (SQLAllocEnv(p)): likewise.
11415         (SQL_YEAR): likewise.
11416         (SQL_MONTH): likewise.
11417         (SQL_DAY): likewise.
11418         (SQL_HOUR): likewise.
11419         (SQL_MINUTE): likewise.
11420         (SQL_SECOND): likewise.
11421         (SQL_YEAR_TO_MONTH): likewise.
11422         (SQL_DAY_TO_HOUR): likewise.
11423         (SQL_DAY_TO_MINUTE): likewise.
11424         (SQL_DAY_TO_SECOND): likewise.
11425         (SQL_HOUR_TO_MINUTE): likewise.
11426         (SQL_HOUR_TO_SECOND): likewise.
11427         (SQL_MINUTE_TO_SECOND): likewise.
11428         (SQL_ATTR_ANSI_APP): likewise.
11429         (SQL_AA_TRUE): likewise.
11430         (SQL_AA_FALSE): likewise.
11431
11432         * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove.
11433         (struct tagSQL_YEAR_MONTH): add for ODBC3.x.
11434         (struct tagSQL_DAY_SECOND): likewise.
11435         (struct tagSQL_INTERVAL_STRUCT): likewise.
11436         (struct tagSQL_NUMERIC_STRUCT): likewise.
11437         (struct tagSQLGUID): add for 0DBC3.50.
11438         (enum SQLINTERVAL): add for ODBC3.x.
11439         (SQLWCHAR): add typedef.
11440         (SQLTCHAR): add typedef, conditional on UNICODE.
11441         (SQLLEN): add typedef for _WIN64, define for _WIN32.
11442         (SQLULEN): likewise.
11443         (SQLROWOFFSET): likewise.
11444         (SQLROWCOUNT): likewise.
11445         (SQLTRANSID): likewise.
11446         (SQLSETPOSIROW): likewise.
11447         (SQLHANDLE): add ODBC3.x typedef.
11448         (SQLHDESC): likewise.
11449         (SQLDATE): likewise.
11450         (SQLDECIMAL): likewise.
11451         (SQLDOUBLE): likewise.
11452         (SQLFLOAT): likewise.
11453         (SQLNUMERIC): likewise.
11454         (SQLREAL): likewise.
11455         (SQLTIME): likewise.
11456         (SQLTIMESTAMP): likewise.
11457         (SQLVARCHAR): likewise.
11458         (SQLBIGINT): likewise.
11459         (SQLUBIGINT): likewise.
11460         (SQL_DATE_STRUCT): likewise.
11461         (SQL_TIME_STRUCT): likewise.
11462         (SQL_TIMESTAMP_STRUCT): likewise.
11463         (ODBCINT64): add ODBC3.x define.
11464
11465         * lib/odbc32.def : regenerate.
11466
11467 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net
11468
11469         * Apply Danny Smith patch 102275
11470         2000-11-05  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11471         * include/objbase.h: (COM_RIGHTS): Add definition.
11472         (tagSTDMSHLFLAGS): add enumeration.
11473         (CoInitializeEx): Add prototypes.
11474         (CoGetStdMarshalEx): ditto.
11475         (CoCreateInstanceEx): ditto.
11476         (CoInitializeSecurity): ditto.
11477         (CoGetCallContext): ditto.
11478         (CoQueryProxyBlanket): ditto.
11479         (CoSetProxyBlanket): ditto.
11480         (CoCopyProxy): ditto.
11481         (CoQueryClientBlanket): ditto.
11482         (CoImpersonateClient): ditto.
11483         (CoRevertToSelf): ditto.
11484         (CoQueryAuthenticationServices): ditto.
11485         (CoSwitchCallContext): ditto.
11486         (CoGetInstanceFromFile): ditto.
11487         (CoGetInstanceFromIStorage): ditto.
11488         * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure.
11489         (SOLE_AUTHENTICATION_INFO): ditto.
11490         (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration.
11491         (COLE_DEFAULT_PRINCIPAL): Add definition.
11492         (COLE_DEFAULT_AUTHINFO): Ditto.
11493         * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition.
11494         (RPC_PROTSEQ_VECTOR) Fix typo.
11495         (RpcRaiseException): add DECLSPEC_NORETURN attribute.
11496         * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN
11497         attribute.
11498
11499 2001-01-26  Earnie Boyd  <earnie@users.sourceforge.net>
11500
11501         * lib/msvcp60.def: Apply Danny Smith patch 103321.
11502         2001-01-17  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>.
11503         New file.
11504
11505 2001-01-26  Christopher Faylor  <cgf@cygnus.com>
11506
11507         * include/winnt.h: Add PTOKEN_USER.
11508
11509 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11510
11511         * include/sqlucode.h: Apply Danny Smith patch 102443
11512         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11513         New file.
11514
11515 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11516
11517         * lib/odbccp32.def: Apply Danny Smith patch 102442
11518         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11519         New file.
11520
11521 2001-01-16  Earnie Boyd  <earnie@users.sourceforge.net>
11522
11523         * include/odbcinst.h: Apply Danny Smith patch 102441
11524         2000-11-20  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11525         New file.
11526
11527 2000-12-25  Christopher Faylor  <cgf@cygnus.com>
11528
11529         * lib/Makefile.in: Don't make "links" to include/w32api directory.
11530
11531 2000-12-20  Corinna Vinschen  <corinna@vinschen.de>
11532
11533         * include/winbase.h: Add prototype for SetSecurityDescriptorControl.
11534
11535 2000-12-11  Christopher Faylor  <cgf@cygnus.com>
11536
11537         * lib/Makefile.in: Install headers and libraries in tooldir.
11538
11539 2000-12-04  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11540
11541         * include/winnls.h: NORM_IGNORE* remove duplicate defines.
11542         SORT_STRINGSORT: ditto.
11543         CMAP*: ditto.
11544         CTRY_*: add new defines.
11545         LGRPID_*: ditto.
11546         LCMAP*: change defines to hex notation.
11547         CALID: change from ULONG to DWORD.
11548         CALTYPE: ditto.
11549         _cpinfoex[AW]: add structure.
11550         FoldString: correct Unicode mappings.
11551         GetCPInfoEx[AW]: add prototypes.
11552         EnumCalendarInfoEx[AW]: ditto.
11553         EnumDateFormatsEx[AW]: ditto.
11554         EnumSystemLanguageGroups[AW]: ditto.
11555         EnumLanguageGroupLocales[AW]: ditto.
11556         EnumUILanguages[AW]: ditto.
11557         GetSystemDefaultUILanguage[AW]: ditto.
11558         GetUserDefaultUILanguage[AW]: ditto.
11559         IsValidLanguageGroup[AW]: ditto.
11560         CALINFO_ENUMPROCEX[AW]: add function pointer typedef
11561         LANGUAGEGROUP_ENUMPROC[AW]: ditto
11562         LANGGROUPLOCALE_ENUMPROC[AW]: ditto
11563         UILANGUAGE_ENUMPROC[AW]: ditto
11564         DATEFMT_ENUMPROCEX[AW]: ditto
11565         LPCURRENCYFMT[AW]: add structure pointer typedef
11566         LPNUMBERFMT[AW]: ditto
11567
11568 2000-12-02  Matt Hargett  <matt@use.net>
11569
11570         * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a
11571         possible return code for the SetFilePointer() win32 API call.
11572
11573 2000-11-09  Corinna Vinschen  <corinna@vinschen.de>
11574
11575         * include/winnt.h: Add missing FILE_NAMED_STREAMS define.
11576
11577 2000-11-06  Earnie Boyd  <earnie_boyd@yahoo.com>
11578
11579         * Makefile.in: increment VERSION.
11580         (dist:) Rename to srcdist.  Create new dist target to call
11581         srcdist and bindist targets.
11582         (srcdist:) New target.
11583         (clean-top:) add call to mostlyclean-top and add rm of distribution
11584         tarballs.
11585         * lib/Makefile.in: (uninstall:) modify to remove files from the
11586         new w32api subdirectory and to remove w32api subdirectory.
11587         (xuninstall:) Ditto.
11588         TODO: Add a task to redo the clean targets of Makefile.in
11589
11590 2000-11-03  Christopher Faylor  <cgf@cygnus.com>
11591
11592         * lib/Makefile.in: Install header files in w32api subdirectory.
11593
11594 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
11595
11596         * CONTRIBUTIONS: New file.
11597         * README: Change the maintained by header.
11598         * TODO: Add a note about checking the TODO.
11599
11600 2000-10-31  Earnie Boyd  <earnie_boyd@yahoo.com>
11601
11602         * Merge in accepted changes from
11603         2000-10-23  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
11604         * include/basetyps.h: add comment for GUID_DEFINED
11605         * include/lm.h: add includes for lmerr.h and lmserver.h
11606         * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR
11607         * include/lmerr.h:  add error codes
11608         * include/lmserver.h: replace LPTSTR with LPWSTR,
11609         LPTCSTR with LPWCSTR in structures and prototypes
11610         * include/lmshare.h: ditto
11611         * include/lmuse.h: ditto
11612         * include/lmstats.h: ditto
11613         * include/oleauto.h: add function prototype SystemTimeToVariantTime
11614         * include/winbase.h: change first argument of CommConfigDialog to const
11615         * include/windowsx.h: add macros  defining FAR versions of
11616         mem and string functions for porting from Win16 code
11617         * include/winioctl.h:  added IOCTL_STORAGE defines
11618         * include/winnetwk.h:  added WNNC_NET flags
11619         * include/winnt.h: add include of <basetsd.h>;
11620         add structs; add pointer typedefs  for TOKEN structs
11621         * include/winsock.h: add guard around BSD-ish typedefs
11622         * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros
11623         * include/basetsd.h: new file
11624         * include/raserror.h: ditto
11625         * include/rassapi.h: ditto
11626         * include/ras.h: ditto
11627         comment from Earnie: replaced original ras.h contribution with Danny's
11628         contribution as it is more complete.
11629         * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__
11630
11631 2000-10-19  Earnie Boyd  <earnie_boyd@yahoo.com>
11632
11633         * Makefile.in: increment VERSION.  Change tar file name for dist and
11634         bindist targets to be more standard.
11635         * config.guess: Update with the currently published file.
11636         * config.sub: ditto.
11637         * configure.in: Use value of build_alias instead of testing for
11638         directory names to set BUILDENV.
11639         * configure: ditto.
11640         * lib/Makefile.in: Change the name of the targets install,
11641         install-headers and install-libraries to xinstall, xinstall-headers
11642         and xinstall-libraries for system target specified installation.
11643         Recreate targets install, install-headers and install-libraries for
11644         exec-prefix specified installation.  Ditto for the uninstall targets of
11645         the same name.
11646
11647 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
11648
11649         * include/iprtrmib.h: Further layout changes according to standard.
11650         * include/iptypes.h: Ditto.
11651         * include/ntdef.h: Ditto.
11652         * include/ntsecapi.h: Ditto.
11653         * include/subauth.h: Ditto.
11654
11655 2000-10-09  Corinna Vinschen  <corinna@vinschen.de>
11656
11657         * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define.
11658
11659 2000-10-08  Corinna Vinschen  <corinna@vinschen.de>
11660
11661         * include/ntsecapi.h: New file.
11662         * include/subauth.h: Ditto.
11663         * include/ipexport.h: Fix global header define not to contain
11664         trailing underscore. Change layout according to standard.
11665         * include/iphlpapi.h: Ditto.
11666         * include/ipifcons.h: Ditto.
11667         * include/iprtrmib.h: Ditto.
11668         * include/iptypes.h: Ditto.
11669         * include/ntdef.h: Ditto. Define conditional datatypes dependent
11670         of inclusion of ntsecapi.h and subauth.h.
11671         * lib/secur32.def: New stub for secur32.dll.
11672
11673 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
11674
11675         * include/ras.h: New file.
11676         * lib/rasapi32.def: Add symbols for RasEnumDevicesA and
11677         RasEnumDevicesW.
11678
11679 2000-10-02  Corinna Vinschen  <corinna@vinschen.de>
11680
11681         * include/ntdef.h: Add define for NTAPI.
11682
11683 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11684
11685         * include/ipexport.h: Add missing `extern "C"' directives.
11686         * include/iphlpapi.h: Ditto.
11687         * include/iprtrmib.h: Ditto.
11688         * include/iptypes.h: Ditto.
11689
11690 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11691
11692         * include/ipifcons.h: New header file.
11693         * include/iprtrmib.h: Move operational states to ipifcons.h.
11694         * include/iphlpapi.h: Add missing parameters to GetIfTable()
11695         declaration.
11696
11697 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11698
11699         * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions.
11700
11701 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11702
11703         * lib/iphlpapi.def: New stub for iphlpapi.dll.
11704         * include/iptypes.h: New header file.
11705         * include/ipexport.h: Ditto.
11706         * include/iphlpapi.h: Ditto.
11707         * include/iprtrmib.h: Ditto.
11708
11709 2000-10-01  Corinna Vinschen  <corinna@vinschen.de>
11710
11711         * include/ntdef.h: New file.
11712
11713 2000-08-18  Corinna Vinschen  <corinna@vinschen.de>
11714
11715         * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId
11716         to TOKEN_INFORMATION_CLASS type.
11717         Add QUOTA_LIMITS type.
11718
11719 2000-08-08  Corinna Vinschen  <corinna@vinschen.de>
11720
11721         * include/userenv.h: New header file.
11722         * lib/userenv.def: New stub for userenv.dll.
11723
11724 2000-08-08  Christopher Faylor  <cgf@cygnus.com>
11725
11726         * include/winuser.h: Correct PCWPSTRUCT typo.
11727         (discovered by Axel Riese)
11728
11729 2000-07-27  DJ Delorie  <dj@redhat.com>
11730
11731         * include/windows.h: optimize non-inclusion of repeat headers
11732
11733 2000-07-21  Corinna Vinschen  <corinna@vinschen.de>
11734
11735         * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and
11736         LPTOKEN_SOURCE.
11737
11738 2000-07-11  DJ Delorie  <dj@cygnus.com>
11739
11740         * include/shlobj.h: add CSIDL_COMMON_*
11741
11742 2000-06-27  Corinna Vinschen  <corinna@vinschen.de>
11743
11744         * include/winbase.h: Add stream ids BACKUP_OBJECT_ID,
11745         BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK.
11746         Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and
11747         FILE_FLAG_OPEN_NO_RECALL.
11748         * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT,
11749         FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT.
11750         * winnt.h: Add typedef for GUID.
11751         Add file attributes FILE_ATTRIBUTE_ENCRYPTED,
11752         FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and
11753         FILE_ATTRIBUTE_NOT_CONTENT_INDEXED.
11754         Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES,
11755         FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE,
11756         FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION.
11757         Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER,
11758         REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION.
11759         * lib/psapi.def: New file.
11760
11761 2000-06-22  Christopher Faylor  <cgf@cygnus.com>
11762
11763         * rpcdce.h: Protect OPTIONAL definition since it may be (legally)
11764         previously defined.
11765         * windef.h : Ditto.
11766
11767 2000-06-14  Kazuhiro Fujieda  <fujieda@jaist.ac.jp>
11768
11769         * include/winnt.h: Add some missing defines related to locale
11770         identifiers.  Translate values of LANG_* and SUBLANG_* into hexadecimal.
11771
11772 2000-05-27  Corinna Vinschen  <corinna@vinschen.de>
11773
11774         * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define.
11775
11776 2000-05-18  Corinna Vinschen  <corinna@vinschen.de>
11777
11778         * include/winnt.h: Add some missing TAPE_DRIVE_* defines.
11779
11780 2000-04-26  Christopher Faylor  <cgf@cygnus.com>
11781
11782         * include/wininet.h: Add another "INTERNET_OPTIONS".
11783
11784 2000-04-25  Mumit Khan  <khan@xraylith.wisc.edu>
11785
11786         * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros.
11787
11788 2000-04-25  Martin Kotulla  <martin-k@softmaker.de>
11789
11790         * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype.
11791         * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype.
11792         * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks.
11793         * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef.
11794
11795 2000-04-10  Christopher Faylor  <cgf@cygnus.com>
11796
11797         * include/winbase.h: Change first argument of ENUMRES* types to
11798         coincide with Microsoft usage.
11799
11800 2000-04-01  Christopher Faylor  <cgf@cygnus.com>
11801
11802         * include/wininet.h: Add three more "INTERNET_OPTIONS".
11803
11804 2000-03-30  Mumit Khan  <khan@xraylith.wisc.edu>
11805
11806         * include/winbase.h (CreateHardLink{A,W}): Add prototypes.
11807         * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro.
11808         * include/winnt.h (SEC_*): Add macros.
11809         * lib/th32.def: Use Kernel32.dll instead of TH32.DLL.
11810         * include/ole.h: Workaround for C++ parser bug.
11811         * include/rpcdcep.h: Likewise.
11812         * include/winsock.h: Likewise.
11813
11814 2000-03-26  Christopher Faylor  <cgf@cygnus.com>
11815
11816         * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs.
11817
11818 2000-02-28  Mumit Khan  <khan@xraylith.wisc.edu>
11819
11820         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
11821         * include/wtypes.h (PBLOB, LPBLOB): Define.
11822         * include/winsock2.h: Much more complete version.
11823         (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h.
11824
11825         Patches from Jan Nijtmans <j.nijtmans@chello.nl>:
11826         * include/winsock.h (FD_CLR): Add missing ')'.
11827         (timercmp): Fix macro to handle all 6 comparison operators.
11828         (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define.
11829         (AF_MAX): Update.
11830         (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define.
11831
11832         * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid
11833         namespace pollution.
11834         * include/rpcndr.h: Likewise.
11835         * include/winnt.h: Likewise.
11836         * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo.
11837         (SHGetSpecialFolderPath{A,W}): Add prototypes.
11838         * lib/ole32.def: Add missing exports.
11839         * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here
11840         * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here.
11841         (NT_TIB): Define.
11842         * include/tlhelp32.h: New file.
11843
11844 2000-02-28  Christopher Faylor  <cgf@cygnus.com>
11845
11846         * include/rapi.h: New file.
11847         * lib/rapi.def: New file.
11848
11849 2000-02-11  Axel Riese  <ariese@andromeda.risc.uni-linz.ac.at>
11850
11851         * oaidl.h (LPTYPECOMP): Remove multiple definition.
11852
11853 2000-02-03  Mumit Khan  <khan@xraylith.wisc.edu>
11854
11855         * Snapshot 2000-02-03.
11856
11857 2000-01-21  Chris Faylor  <cgf@cygnus.com>
11858
11859         * include/winnt.h: Add ARM support.
11860
11861 2000-01-19  Mumit Khan  <khan@xraylith.wisc.edu>
11862
11863         From Greg Primes <gregory.l.priem@intel.com>:
11864         * include/oaidl.h (DESCKIND): Define macro.
11865         (ITypeComp): Define interface.
11866         (ITypeComp): Likewise.
11867         * rpcndr.h (DECLSPEC_UUID): Define macro.
11868         (MIDL_INTERFACE): Likewise.
11869
11870         * include/psapi.h: New file.
11871         * include/imagehlp.h: New file.
11872         * lib/imagehlp.def: New file.
11873
11874         * include/oaidl.h (tagVARIANT): Update fields.
11875
11876         From Craig Lanning <CraigL@DyCon.com>:
11877         * include/commctrl.h: Add some TCS_* macros.
11878         * include/winnls.h (IsValidLocale): Add prototype.
11879
11880 2000-01-18  Mumit Khan  <khan@xraylith.wisc.edu>
11881
11882         * include/oaidl.h: OLE Patches from "Fifer, Eric"
11883         <EFifer@sanwaint.com> needed to build Win32::OLE perl module.
11884         * include/objbase.h: Likewise.
11885         * include/objidl.h: Likewise.
11886         * include/ocidl.h: New file.
11887         * include/oleauto.h: Likewise.
11888         * include/wtypes.h: Likewise.
11889         * lib/oleaut32.def: Likewise.
11890
11891         * include/lmserver.h (NetServerTransportAddEx): Fix prototype.
11892         Thanks to "Jon Leichter" <jon@symas.com>.
11893         * include/commctrl.h (LVM_FINDITEM): Fix typo in macro.
11894         * include/winbase.h: Add GetLongPathName{A,W} prototypes.
11895         * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to
11896         "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>.
11897         (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van
11898         Dorsselaer" <frans@bia-bv.demon.nl>.
11899         * include/httpext.h: New file. Thanks to Jan Nijtmans
11900         <j.nijtmans@chello.nl>.
11901         * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid
11902         redefinition of LPCWAVEFORMATEX in DirectX headers.
11903         (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel
11904         <krzych00@priv7.onet.pl>.
11905         * include/sqlext.h (SQLDriverConnnect): Fix prototype.
11906         * include/windef.h (HRESULT): Guard definition to avoid
11907         redefinition in DirectX headers.
11908         * include/winnt.h: Add target macros from windows.h.
11909         * include/windows.h: Update synch comment for target macros.
11910         (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer.
11911         (_ANONYMOUS_UNION): Likewise.
11912         * include/wingdi.h (AbortPrinter): Move from here ...
11913         * include/winspool.h (AbortPrinter): to here and fix linkage.
11914         (MONITOR_INFO_2{A,W}): Define.
11915         * include/winsock.h (htons): Fix argument.
11916         (htonl): Likewise.
11917         * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros.
11918         (GROUP): Define.
11919         (GUID): Define conditionally.
11920         (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define.
11921         (WSASocket*): Declare.
11922         * include/basetyps.h (GUID): Guard REGUID and LPGUID as well.
11923
11924         * lib/dsetup.def: Remove leading underscore.
11925         * lib/dsound.def: Likewise.
11926         * lib/ws2_32.def: Likewise.
11927
11928 1999-12-22  Mumit Khan  <khan@xraylith.wisc.edu>
11929
11930         * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define
11931         handles.
11932
11933         * lib/Makefile.in (EXTRA_OBJS): Add dinput.o.
11934         * lib/dinput.c: Include windows.h for GCC.
11935         * lib/dxguid.c: Likewise.
11936         (INITGUID): Define macro.
11937
11938         * include/objidl.h (ISequentialStream): Define interface.
11939         (IStream): Derive from ISequentialStream.
11940
11941         * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat,
11942         Clone}): Mark as PURE.
11943         (IDataObject::EnumDAdvise): Likewise.
11944         * include/oleidl.h (IDropSource::GiveFeedback): Likewise.
11945         (IViewObject::Unfreeze): Likewise.
11946         (IViewObject2::Unfreeze): Likewise.
11947
11948         * include/objidl.h: Add various IID_ declarations.
11949         * include/olectl.h: Likewise.
11950         * include/oleidl.h: Likewise.
11951
11952 1999-12-21  Mumit Khan  <khan@xraylith.wisc.edu>
11953
11954         * Snapshot 1999-12-21.
11955
11956         * include/winbase.h (CancelIO): Rename to CancelIo.
11957         * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype.
11958         * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare.
11959
11960         * Merge with winsup-19991218.
11961         * include/winnt.h: Add defines for W2K ACL control flags.
11962
11963         * Merge with Anders Norlander's 19991130 snapshot.
11964
11965         * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN.
11966         * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define.
11967
11968         Patch from Harold Weissfield
11969         * include/shellapi.h: Added some ABN_* defines.
11970
11971         * include/commctrl.h (_TrackMouseEvent): Add prototype.
11972         * lib/comctl32.def (_TrackMouseEvent): Import.
11973         * include/winuser.h: Misc. fixes from Sang Cho
11974         <sangcho@alpha94.chongju.ac.kr>.
11975         * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on
11976         value of _WIN32_WINNT.
11977         * include/winuser.h: Reorganize SM_* defines in numerical order.
11978
11979 1999-12-14  Mumit Khan  <khan@xraylith.wisc.edu>
11980
11981         * include/windef.h: Make RECTL a distinct type from RECT.
11982         * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX.
11983         * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>).
11984         (COMPAREITEMSTRUCT): Fix fields.
11985         (SERIALKEYSA): Likewise.
11986         (SERIALKEYSW): Likewise..
11987         * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise.
11988         (WIN32_FIND_DATAA): Likewise.
11989         (WIN32_FIND_DATAW): Likewise.
11990         * include/commdlg.h (SNDMSG): Define.
11991         * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define.
11992         (SO_CONNECT_TIME): Likewise.
11993         (AcceptEx): Declare.
11994         (GetAcceptExSockaddrs): Likewise.
11995         * include/winsock2.h: Fix typo in #ifdef __cplusplus.
11996         * include/winspool.h: Add RC_INVOKED guard.
11997         * lib/wsock32.def (AcceptEx@32): Export.
11998         (GetAcceptExSockaddrs@32): Likewise.
11999
12000 1999-11-18  Mumit Khan  <khan@xraylith.wisc.edu>
12001
12002         * Snapshot 1999-11-18.
12003
12004         * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by
12005         Octopod C++ IDE (and MSVC compatibility).
12006         * include/oleauto.h (V_BOOLREF(X)): Likewise.
12007         * include/shellapi.h (ShellAbout*): Fix typo.
12008         * wingdi.h (FW_ULTRABOLD): Likewise.
12009         * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION,
12010         _TAPE_WRITE_MARKS): Add missing fields and fix existing ones.
12011         Add packing directives for various structures. All structure
12012         sizes now conform to MSVC.
12013
12014 1999-11-07  Mumit Khan  <khan@xraylith.wisc.edu>
12015
12016         Released 1999-11-07.
12017
12018 1999-11-06  Mumit Khan  <khan@xraylith.wisc.edu>
12019
12020         * include/winsock2.h: New file. Mostly a stub for now.
12021         * include/winbase.h (DllMain): Delete prototype.
12022         * include/commctrl.h (Header_SetItem): Fix macro.
12023         * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h,
12024         regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h,
12025         shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++.
12026
12027         Merge in changes from wxWindows.
12028         * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards.
12029         * include/oaidl.h (DISPID_*): Add macros.
12030         (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2,
12031         IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo,
12032         IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare.
12033         * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter.
12034
12035         Merge in changes from Octopod C++ IDE group.
12036         * include/commctrl.h (NMHEADERA, NMHEADERW): Define.
12037         (Header_InsertItem): Fix macro.
12038         * include/oaidl.h (IID_IDispatch): Declare.
12039         (IID_ISupportErrorInfo): Likewise.
12040         (IDispatch): Rename Invoked to Invoke.
12041         * include/objidl.h (IPersist): Fix GetClassID.
12042         * include/oleauto.h (VectorFromBstr): Declare.
12043         (BstrFromVector): Likewise.
12044         * include/olectl.h (OLEMISC_*): Update.
12045         * include/olectlid.h (IID_IDispatch): Declare.
12046         * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent.
12047         (IOleInPlaceFrame): Fix.
12048         (ISupportErrorInfo): Define.
12049         (IErrorInfo): Define.
12050         * include/winuser.h (SIF_TRACKPOS): Define.
12051
12052 1999-11-03  Mumit Khan  <khan@xraylith.wisc.edu>
12053
12054         Fix Merge errors:
12055         * include/winnt.h (PSID): Uncomment definition.
12056         (PISID): Rename from PSID.
12057         (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field.
12058         (struct _SECURITY_ATTRIBUTES): Remove multiple definition.
12059
12060         * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h,
12061         include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h,
12062         include/lmremutl.h, include/lmrepl.h, include/lmserver.h,
12063         include/lmsvc.h, include/lmwksta.h, include/oaidl.h,
12064         include/shellapi.h, include/winbase.h, include/wingdi.h,
12065         include/winnt.h, include/winsock.h: Merged with winsup-19991026.
12066
12067 1999-10-31  Mumit Khan  <khan@xraylith.wisc.edu>
12068
12069         * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From
12070         Marius Kjeldahl <kjeldahl@hotmail.com>.
12071
12072 1999-08-29  Mumit Khan  <khan@xraylith.wisc.edu>
12073
12074         * include/winnt.h (APPLICATION_ERROR_MASK): Add macros.
12075         (ERROR_SEVERITY_*): Likewise.
12076
12077 1999-08-17  Mumit Khan  <khan@xraylith.wisc.edu>
12078
12079         * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro.
12080         (DllMain): Fix prototype.
12081
12082 1999-08-02  Mumit Khan  <khan@xraylith.wisc.edu>
12083
12084         * include/commdlg.h: Enclose within pack(push,1) and pack(pop).
12085         (cderr.h): Don't include.
12086         * include/winuser.h: Fix macro definitions.
12087
12088 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12089
12090         Merge with winsup 1999-07-29:
12091         * include/wincon.h (MOUSE_WHEELED): Define.
12092         * include/winnt.h (PSECURITY_ATTRIBUTES): Add type.
12093         (SECURITY_DESCRIPTOR): Add struct type.
12094         (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type
12095         is equal to PVOID in the Platform SDK! So don't depend on accessing
12096         members through ->.
12097
12098 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12099
12100         * lib/Makefile.in (install-headers): Don't @ commands.
12101         (install-libraries): Ditto.
12102
12103 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12104
12105         * include/sqlext.h: Use #include <sql.h> instead of "sql.h".
12106
12107 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12108
12109         Patch from Mumit Khan:
12110         * include/windows.h: Fix typo in winsock.h include guard and add
12111         _UWIN to the list.
12112         * include/winnt.h (__int64): Undefine first.
12113         (struct _SID): Declare.
12114
12115 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12116
12117         * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz.
12118
12119 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12120
12121         Patch from Mumit Khan:
12122         * Makefile.in: Do the right thing when cross-compiling.
12123         * include/windef.h: Don't define _export and __export if already
12124         defined.
12125
12126 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12127
12128         * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute.
12129         (DECLARE_INTERFACE_): Ditto.
12130
12131 1999-08-02  Anders Norlander  <anorland@hem2.passagen.se>
12132
12133         * include/mmsystem.h (HWAVEOUT): Fix missing ')'
12134
12135         Reported by Brad Porter
12136         * include/wingdi.h (FW_ULTRALIGHT): Add.
12137         (FW_DEMIBOLD): Add.
12138         (FW_ULTRABOLD): Add.
12139         (FW_BLACK): Add.
12140         (JOHAB_CHARSET): Add.
12141         (VIETNAMESE_CHARSET): Add.
12142
12143
12144 1999-05-15  Anders Norlander  <anorland@hem2.passagen.se>
12145
12146         * lib/scrnsave.c (WinMain): Remove dependencies on C library.
12147         * lib/Makefile.in (Makefile): Regenerate.
12148         * include/pshpack[1248].h: New files, if a program would use any of
12149         them.
12150         * include/poppack.h: Ditto.
12151         * include/windef.h (_WIN32_WINNT): Define
12152         * include/windows.h: Remove DUMMYUNIONNAME[45].
12153         * include/windows.h: Correctly define _M_IX86 to reflect the target
12154         processor.
12155         * include/windows.h: Add preliminary support for other architectures.
12156         * include/winnt.h: Add CONTEXT structure for PPC and ALPHA.
12157         * include/winnt.h: Remove PACKED from U/LARGE_INTEGER
12158         * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment
12159         issue with LARGE_INTEGER.
12160         (ANSI_NULL): Define.
12161         (PSZ): Define.
12162         (ACL_REVISION[1234]): Define.
12163         (MIN/MAX_ACL_REVISION): Define.
12164         (PTCHAR): Define.
12165         (LANG_USER_DEFAULT): Define.
12166         (LANG_SYSTEM_DEFAULT): Define.
12167         (LOCALE_NEUTRAL): Define.
12168         (SORTVERSIONFROMLCID): Define.
12169         * include/windef.h (UNREFERENCED_PARAMETER): Define.
12170         (UNREFERENCED_LOCAL_VARIABLE): Define.
12171         (DBG_UNREFERENCED_PARAMETER): Define.
12172         (DBG_UNREFERENCED_LOCAL_VARIABLE): Define.
12173         * lib/mswsock.def: New file. Imports for mswsock.dll.
12174         * include/custcntl.h: New file. Necessary to compile some SDK
12175         samples.
12176         * include/winuser.h (SM_MOUSEWHEELPRESENT): Define.
12177         (WM_MOUSEWHEEL): Define.
12178         (WHEEL_DELTA): Define.
12179         (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL.
12180         (WM_NEXTMENU): Define.
12181         (CharNextA): Fix prototype.
12182         (CharNextW): Ditto.
12183
12184 1999-05-14  Anders Norlander  <anorland@hem2.passagen.se>
12185
12186         * include/winsock.h: Enclose in extern "C" if C++, huh?
12187         * include/winuser.h(WM_SYNCPAINT): Define. From fltk.
12188
12189 1999-05-13  Anders Norlander  <anorland@hem2.passagen.se>
12190
12191         * include/windef.h (NULL): Define only ifndef
12192         (TRUE): Ditto, was previously only defined ifndef FALSE
12193         (PASCAL): Define as _pascal
12194         (__pascal): Define
12195         (WINAPIV): Define
12196         (min,max): Define only ifndef NOMINMAX
12197
12198 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12199
12200         * include/commctrl.h: Support for Date/Calendar controls + IE controls.
12201         You must define _WIN32_IE if you want support for it.
12202         Modified patch from Nirmal Prasad  <nprasad@truept.com>.
12203
12204 1999-05-10  Ron Aaron   <v-ronaar@Exchange.Microsoft.com>
12205
12206         * include/wincon.h: Add some ButtonState flags and EventFlags.
12207
12208 1999-05-10  Anders Norlander  <anorland@hem2.passagen.se>
12209
12210         * include/basetyps.h: Don't support COM when __OBJC__ defined because
12211         interface define causes mayhem.
12212         (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is
12213         defined.
12214         * include/windows.h: Undefine BOOL if __OBJC__ defined
12215
12216 1999-05-09  Chris Faylor  <cgf@cygnus.com>
12217
12218         * include/winnls.h: Define additional code pages.
12219
12220 1999-05-09  Anders Norlander  <anorland@hem2.passagen.se>
12221
12222         * include/winbase.h(RtlFillMemory): Parameters got passed in wrong
12223         order, corrected.
12224         (RtlZeroMemory): Use RtlFillMemory
12225
12226 1999-05-04  Anders Norlander  <anorland@hem2.passagen.se>
12227
12228         * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER
12229         to get the correct size when used in some structs.
12230         (ULARGE_INTEGER): Ditto.
12231         * include/winnt.h (TAPE_CREATE_PARTITION): Add struct.
12232         * include/winnt.h: Add TAPE_* pointer types PTAPE_*
12233
12234 1999-05-02  Nirmal Prasad  <nprasad@truept.com>
12235
12236         * include/wininet.h: Enclose in extern "C" if c++
12237         (INTERNET_BUFFERSA/W): Define struct
12238         * include/wininet.h: Add some HSR_* defines
12239
12240 1999-05-02  Anders Norlander  <anorland@hem2.passagen.se>
12241
12242         * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren
12243         * include/winnt.h (UNALIGNED): Define
12244         * include/windef.h (DECLSPEC_NORETURN): Define
12245
12246         * include/wininet.h (INTERNET_MAX_NAME): Remove
12247         (INTERNET_MAX_SCHEME_LENGTH): Define
12248         (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH
12249         * include/wininet.def: Completely redone, it was losing badly.
12250
12251 1999-05-01  Anders Norlander  <anorland@hem2.passagen.se>
12252
12253         * lib/dplayx.def: Remove '_' prefixes
12254         * lib/shell32.def: Remove imports for IID_ContextMenu
12255
12256 1999-04-29  Anders Norlander  <anorland@hem2.passagen.se>
12257
12258         * Makefile.in (dist): Support dist target
12259         * lib/Makefile.in (dist): Likewise
12260         * lib/Makefile.in (uninstall-headers): Fix command
12261         * Makefile.in (bindist): Target to build a prebuilt dist
12262
12263         * lib/ws2_32.def: Winsock2 implib
12264
12265         * include/largeint.h: New header
12266         * include/largeint.c: Large integer support library
12267         * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a
12268         (EXTRA_OBJS): Add largeint.o
12269
12270         * include/Makefile: Remove
12271         * lib/Makefile: Remove
12272         * Makefile: Remove
12273         * configure.in: New autoconf script
12274         * configure: generated configure script
12275         * Makefile.in: autoconf makefile template
12276         * lib/Makefile.in: Ditto
12277         * include/test.c: mv to lib/test.c
12278         * include/res.rc: mv to lib/res.rc
12279         * include/TODO: mv to .
12280         * include/Notes: mv to ./NOTES
12281
12282 1999-04-28  Anders Norlander  <anorland@hem2.passagen.se>
12283
12284         * include/zmouse.h (WHEEL_DELTA): Define
12285
12286 1999-04-26  Mumit Khan  <khan@xraylith.wisc.edu>
12287
12288         * include/ddeml.h (HSZPAIR): Declare.
12289         * include/zmouse.h: New file.
12290
12291 1999-04-27  Daniel Guerrero Miralles  <daniel.guerrero@upcnet.upc.es>
12292
12293         * lib/d3dim.def: New implib
12294         * lib/d3drm.def: Ditto
12295         * lib/d3dxof.def: Ditto
12296         * lib/ddraw.def: Ditto
12297         * lib/dinput.def: Ditto
12298         * lib/dplayx.def: Ditto
12299         * lib/dsetup.def: Ditto
12300         * lib/dsound.def: Ditto
12301         * lib/dinput.c: Guid library for DirectInput
12302         * lib/dxguid.c: Guid library for DirectX
12303
12304 1999-04-21  Anders Norlander  <anorland@hem2.passagen.se>
12305
12306         * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported
12307         by Ron Aaron).
12308         * include/windowsx.h (GET_Y_LPARAM): Also missing
12309         * include/winnls.h (IsValidCodePage): Missing prototype added (reported
12310         by Mumit Khan).
12311
12312 1999-04-18  Anders Norlander  <anorland@hem2.passagen.se>
12313
12314         * include/scrnsave.h: New header file for screen saver library
12315         * lib/scrnsave.c: New file: screen saver library
12316
12317 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12318
12319         * include/regstr.h: Enclosed all strings in TEXT() macros so it
12320         works well in when UNICODE is defined
12321
12322 1999-04-17  Nirmal Prasad  <nprasad@truept.com>
12323
12324         * include/winuser.h(STYLESTRUCT): New struct
12325         * include/wingdi.h:(GOBJENUMPROC): This function type should
12326         return void.
12327
12328 1999-04-17  Anders Norlander  <anorland@hem2.passagen.se>
12329
12330         * include/basetyps.h (LPGUID): New typedef
12331         * lib/glut.def: Import library defintions for glut.dll
12332         * lib/glu32.def: Ditto for glut32.dll
12333         * include/winnt.h: Fixed handling of wchar_t typedef
12334         * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA
12335         * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA
12336
12337 1999-03-20  Anders Norlander  <anorland@hem2.passagen.se>
12338
12339         * include/winbase.h(AbnormalTermination): Define as FALSE
12340         * include/commctrl.h: Support for new progress bar messages/styles
12341
12342 1999-03-20  Geoffrey Noer  <noer@cygnus.com>
12343
12344         * include/commdlg.h(PageSetupDlg): New define
12345         * include/richedit.h: Missing SCF_* defines
12346         * include/winnt.h: Lots o' defines
12347         * include/winbase.h(AllocateAndInitializeSid): Corrected prototype
12348
12349 1999-03-09  Anders Norlander  <anorland@hem2.passagen.se>
12350
12351         * include/commdlg.h: Removed pack pragma
12352         * lib/comctl32.def(InitCommonControlsEx@4): Added import
12353
12354 1999-03-08  Anders Norlander  <anorland@hem2.passagen.se>
12355
12356         * Makefile: Set version to 0.1.5
12357         * lib/Makefile (clean): Fix typo
12358
12359         * include/commctrl.h: Removed pack pragma
12360         * include/cpl.h: Likewise
12361         * include/dbt.h: Likewise
12362         * include/dde.h: Likewise
12363         * include/nddeapi.h: Likewise
12364         * include/shellapi.h: Likewise
12365         * include/wincrypt.h: Likewise
12366         * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo
12367
12368         * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__
12369         (servent): Likewise
12370         (protoent): Likewise
12371
12372         * include/windows.h: Prevent inclusion of winsock.h if we are
12373         using or compiling cygwin. Define Win32_Winsock to force inclusion.
12374
12375 1999-01-08  Anders Norlander  <anorland@hem2.passagen.se>
12376
12377         * include/winbase.h (CREATE_FORCEDOS): New define
12378
12379 1999-01-07  Anders Norlander  <anorland@hem2.passagen.se>
12380
12381         * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on
12382         (COORD): Likewise
12383         * include/wingdi.h (BITMAPFILEHEADER): Fixed packing
12384         * include/windows.h: Added DUMMYUNIONNAME4 and 5
12385         * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type
12386         (PLUID_AND_ATTRIBUTES_ARRAY): New type
12387
12388         * include/ddeml.h: Removed unnecessary `#pragma pack'
12389         * include/imm.h: Likewise
12390         * include/nddeapi.h: Likewise
12391         * include/nspapi.h: Likewise
12392         * include/regstr.h: Likewise
12393         * include/wincon.h: Likewise
12394         * include/windef.h: Likewise
12395         * include/winioctl.h: Likewise
12396         * include/winnls.h: Likewise
12397         * include/winsvc.h: Likewise
12398         * include/winuser.h: Likewise
12399         * include/winver.h: Likewise
12400         * include/wtypes.h: Likewise
12401
12402 1999-01-05  Anders Norlander  <anorland@hem2.passagen.se>
12403
12404         * Makefile (VERSION): Set to 0.1.4
12405         * include/basetyps.h: Check for NOCOMOBJECT
12406         * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings
12407         on comobject attribute.
12408         * lib/kernel32.def: Added a few functions
12409         * include/windef.h (DWORD): Changed back to unsigned long
12410
12411         * include/windows.h: Include only winresrc.h if RC_INVOKED is defined,
12412         winresrc.h in turn includes the necessary headers. This makes things
12413         much simpler, no need to protect blocks of code in headers that
12414         should not be seen by the resource compiler.
12415
12416 1999-01-05  Geoffrey Noer  <noer@cygnus.com>
12417
12418         * include/winbase.h (STATUS_INVALID_HANDLE): Added define
12419         * include/wincon.h: Added console event type flags
12420         * include/winnt.h (FILE_SHARE_DELETE): Added
12421           (SECURITY_DESCRIPTOR): typedef as DWORD
12422
12423         * include/winuser.h (WM_PENWINFIRST): Fixed typo
12424         * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and
12425         define u_* types only if _SYS_TYPES_H is not defined.
12426
12427 1999-01-02  Anders Norlander  <anorland@hem2.passagen.se>
12428
12429         * COPYING.LIB: Deleted
12430         * README: Updated to reflect license changes
12431         * include/shlobj.h: Remove extra comma on some enums
12432         * include/windef.h: Changed DWORD typedef from unsigned long to
12433         unsigned int in order to avoid warnings on bit fields that
12434         use DWORD.
12435         * include/Makefile (test): Compile with all warnings
12436         * include/unknwn.h: Include objfwd.h
12437         * include/winsock.h: Added missing copyright notices.
12438
12439 1999-01-01  Anders Norlander  <anorland@hem2.passagen.se>
12440
12441         * lib/winmm.def: Corrected LIBRARY statement
12442         * include/mmsystem.h: Define mmioSeek codes if not already defined
12443         * include/commctrl.h (CreateStatusWindowA): Corrected prototype
12444         (CreateStatusWindowW): Likewise
12445
12446         * include/winresrc.h: Include only files necessary instead of windows.h
12447         * include/dde.h: Allow inclusion in resource scripts.
12448         * include/winnt.h: Likewise
12449         * include/commctrl.h: Likewise
12450         * include/prsht.h: Likewise
12451         * README: Updated
12452
12453 1998-12-10  Anders Norlander  <anorland@hem2.passagen.se>
12454
12455         * include/sqltypes.h (SQLHANDLE): Added this type
12456         (SQLHDESC): Likewise
12457         * include/sql.h (SQLFreeHandle): Added this prototype
12458         (SQLAllocHandle): Likewise
12459
12460 1998-12-08  Anders Norlander  <anorland@hem2.passagen.se>
12461
12462         * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid
12463         conflicts with cygwin headers.
12464
12465 1998-12-06  Anders Norlander  <anorland@hem2.passagen.se>
12466
12467         * Makefile: Changed VERSION to 0.1.3
12468         * Makefile (dist-lib): New target to make import library only
12469         distribution
12470         * Makefile (dist-hdr): New target to make headers only distribution
12471         * Makefile (dist): Now depends on dist-lib and dist-hdr instead of
12472         building one single distribution file.
12473         * dist.mak: Deleted
12474
12475         * include/lm.h: New file
12476         * include/lmcons.h: New file
12477         * include/lmalert.h: New file
12478         * include/lmaudit.h: New file
12479         * include/lmconfig.h: New file
12480         * include/lmapibuf.h: New file
12481         * include/lmaccess.h: New file
12482         * include/lmchdev.h: New file
12483         * include/lmremutl.h: New file
12484         * include/lmrepl.h: New file
12485         * include/lmerrlog.h: New file
12486         * include/lmat.h: New file
12487         * include/lmuse.h: New file
12488         * include/lmuseflg.h: New file
12489         * include/lmserver.h: New file
12490         * include/lmerr.h: New file
12491         * include/lmsname.h: New file
12492         * include/lmstats.h: New file
12493         * include/lmsvc.h: New file
12494         * include/lmwksta.h: New file
12495         * include/lmbrowsr.h: New file
12496
12497 1998-12-05  Anders Norlander  <anorland@hem2.passagen.se>
12498
12499         * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing
12500         * include/unknwn.h: Added extern declaration for IID_IClassFactory
12501
12502         * include/initguid.h: New file
12503
12504         * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit
12505         int not supported
12506
12507         * include/winnt.h: Added USN
12508         * include/winnt.h: Changed handling of 64 bit int support
12509
12510         * include/windows.h: Added support for BC,LCC and MSVC
12511
12512         * include/windows.h: Changed handling machine architecture defines
12513
12514         * include/olectl.h: New file
12515
12516 1998-12-04  Anders Norlander  <anorland@hem2.passagen.se>
12517
12518         * include/oleidl.h: Added IViewObject and IViewObject2
12519
12520         * include/objidl: Corrected prototype for IStorage::DestroyElement and
12521         IStorage::MoveElement
12522
12523         * include/oledlg.h: New file
12524
12525         * include/winresrc.h: New file
12526
12527         * include/wingdi.h: Added LPDOCINFO
12528
12529         * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT
12530         * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block
12531         * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing,
12532         TabCtrl_SetImageList and TabCtrl_GetItemCount
12533         * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST
12534
12535         * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros
12536
12537         * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER,
12538         PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER.
12539
12540         * include/commdlg.h: Added LPDEVNAMES
12541
12542         * include/windows.h: Include excpt.h
12543
12544         * include/excpt.h: New file. This file just contains some
12545         stubs for SEH that do nothing.
12546
12547         * include/commctrl.h: Added general WM_NOTIFY codes
12548
12549         * include/winuser.h: Added ICON_SMALL and ICON_BIG
12550         * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously
12551         not be in the headers.
12552         * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT
12553         * include/winuser.h: Added old WM_SIZE parameter names so
12554         wxWindows compiles.
12555         * include/winuser.h: Added IDC_SIZE and IDC_ICON
12556         * include/winuser.h: Added LPDLGITEMTEMPLATE
12557         * include/winuser.h: HTCAPTION was missing value
12558         * include/winuser.h: Added WM_ACTIVE flags
12559
12560         * include/windowsx.h: Added _fmemcpy so V compiles; also added
12561         _fxx defines for memmove, memset and memcmp
12562
12563         * include/windef.h: Changed _export and __export to empty defines
12564
12565         * include/shellapi.h: Corrected prototypes for ExtractIcon functions.
12566         String parameters were not const and ExtractAssociatedIcon takes
12567         a WORD pointer not DWORD pointer as last parameter.
12568
12569         * Makefile: Changed VERSION to 0.1.2
12570
12571         * include/ole2ver.h: New file
12572
12573         * Makefile: Removed all dependencies on GLUT
12574
12575         * include/GL/glut.h: Removed file because of decision to remove
12576         files that are not part of the library.
12577         * lib/glut.def: Likewise
12578         * lib/glut32.def: Likewise
12579
12580         * include/windows.h: Include winperf.h
12581
12582         * include/winperf.h: New file
12583
12584         * lib/gdi32.def: Added GetEnhMetaFilePixelFormat
12585
12586         * include/winnls.h: Added calendar types
12587         * include/winnls.h: Added country codes
12588
12589 1998-12-03  Anders Norlander  <anorland@hem2.passagen.se>
12590
12591         * include/windef.h: Added PROC and NEARPROC
12592
12593         * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat
12594         * include/wingdi.h: Added OpenGL types and prototypes
12595         * include/wingdi.h: Added ENHMETA_STOCK_OBJECT
12596         * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE
12597         * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER
12598         * include/wingdi.h: Added truetype character outline types
12599         * include/wingdi.h: Added DEVMODE initialization flags
12600         * include/wingdi.h: Added panose codes
12601         * include/wingdi.h: Added missing character sets
12602         * include/wingdi.h: Added ANTIALIASED_QUALITY and
12603         NONANTIALIASED_QUALITY
12604         * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W
12605         * include/wingdi.h: Added pointer types for EXTLOGPEN
12606         * include/wingdi.h: Added PATTERN type
12607         * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W
12608         * include/wingdi.h: Added new text metric flags
12609         * include/wingdi.h: Added pitch and family flags
12610         * include/wingdi.h: Moved BCHAR defintion from winnt.h here
12611         * include/wingdi.h: Added METAHEADER
12612         * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER
12613         * include/wingdi.h: Added TA_MASK
12614         * include/wingdi.h: Added MAXSTRETCHBLTMODE
12615         * include/wingdi.h: Added error codes
12616
12617         * include/winuser.h: Added missing winhelp structures
12618         * include/winuser.h: Added dialog flags/styles/messages
12619         * include/winuser.h: Added EM_SETMARGIN codes
12620         * include/winuser.h: Made it possiblie to use IDI_XX values
12621         in resource files.
12622         * include/winuser.h: Added missing LoadImage load flags
12623         * include/winuser.h: Added missing message box flags
12624         * include/winuser.h: Added ScrollWindow codes
12625         * include/winuser.h: Added DT_WORD_ELLIPSIS
12626         * include/winuser.h: Added drag and drop support
12627         * include/winuser.h: Added WM_MENUCHAR return codes
12628         * include/winuser.h: Added DLGWINDOWEXTRA
12629         * include/winuser.h: Added missing SetWindowPos flags.
12630         * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG
12631         * include/winuser.h: Added IDHOT_xx defines
12632         * include/winuser.h: Added MOD_WIN
12633         * include/winuser.h: Added missing defines and structs for owner draw
12634         controls.
12635         * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and
12636         WPF_SETMINPOSITION
12637         * include/winuser.h: Added DrawAnimatedRects flags
12638         * include/winuser.h: Added WM_PRINT codes
12639         * include/winuser.h: Added CS_IME class style
12640         * include/winuser.h: Added WM_SIZE codes
12641         * include/winuser.h: Added WM_MOUSEACTIVATE return codes
12642         * include/winuser.h: Added WM_NCHITTEST return codes
12643         * include/winuser.h: Added WM_SIZING parameters
12644         * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU
12645         * include/winuser.h: Added menu loop codes.
12646         * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and
12647         NF_REQUERY
12648         * include/winuser.h: Added WM_POWER flags
12649         * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE
12650         * include/winuser.h: Added missing message filter codes
12651         * include/winuser.h: Added WM_KEYXX message flags
12652         * include/winuser.h: Added WM_SHOWMESSAGE flags
12653         * include/winuser.h: Added old ShowWindow commands
12654         * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE
12655         structures.
12656
12657         * include/mciavi.h: New file for the MCI AVI driver that for some
12658         reason is not in mmsystem.h.
12659
12660         * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE
12661         * include/winbase.h: Added SECURITY_xx for CreateFile
12662         * include/winbase.h: Added RTS and DTS control values
12663         * include/winbase.h: Fixed SYSTEM_INFO structure
12664         * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM
12665         * include/winbase.h: Added FILE_TYPE_REMOTE
12666         * include/winbase.h: Added modem status flags
12667         * include/winbase.h: Added HINSTANCE_ERROR
12668         * include/winbase.h: Added DefineDosDevice defines
12669         * include/winbase.h: Added power management flags AC_xx BATTERY_xx
12670         * include/winbase.h: Added STARTF_XX flags
12671         * include/winbase.h: Fixed typo on _lcreat prototype.
12672         * include/winbase.h: Moved DBG_XX to winnt.h
12673         * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to
12674         winnt.h
12675
12676         * include/unknwn.h: Added extern declaration of IID_IUnknown
12677
12678         * include/windowsx.h: Added hmemcpy.
12679
12680         * include/winnt.h: Added dummy member to DECLARE_HANDLE struct
12681         * include/winnt.h: Added PACCESS_TOKEN
12682         * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h
12683         * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH
12684         * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED,
12685         SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY,
12686         SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL,
12687         SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING.
12688
12689         * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX,
12690         SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH,
12691         SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1.
12692
12693         * include/winsvc.h: Removed conflicting defines which were supposed
12694         to be in winnt.h
12695
12696         * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE
12697         and SERVICE_ERROR_TYPE.
12698
12699         * include/winnt.h: Added SERVICE_XX defines.
12700         * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W,
12701         SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W.
12702
12703         * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG,
12704         SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS,
12705         SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE,
12706         SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS
12707
12708 1998-12-02  Anders Norlander  <anorland@hem2.passagen.se>
12709
12710         * include/winbase.h: Corrected prototype for CreateProcessA
12711
12712         * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display
12713         driver extensions.
12714
12715         * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should
12716         be LPSHELLFOLDER* not LPSHELLFOLDER.
12717
12718         * include/windows.h: Include commdlg.h
12719
12720         * include/winuser.h: Added MDICREATESTRUCT
12721
12722         * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR,
12723         CB_ERRSPACE, and CB_OKAY
12724
12725         * include/wingdi.h: Added LPBITMAPINFOHEADER
12726
12727         * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they
12728         are meaningless.
12729         * include/rpcdce2.h: Likewise.
12730
12731         * lib/shell32.c: Moved GUID defintions from shlguid.h to this file.
12732
12733         * include/richole.h: Replaced DEFINE_GUID with extern const GUID
12734         * include/olectlid.h: Likewise
12735         * include/shlguid.h: Likewise
12736
12737         * include/coguid.h: Delete file since it was for 16 bit windows only.
12738
12739         * lib/*.def: Appended .dll to library name where needed.
12740
12741         * include/windef.h: Define _stdcall and __stdcall only if not
12742         previously defined instead of undefining first.
12743
12744         * include/dlgs.h: Put RC_INVOKED around structure defs
12745
12746         * include/intshcut.h: New file
12747         * include/isguids.h: New file
12748
12749         * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about.
12750
12751 1998-12-01  Anders Norlander  <anorland@hem2.passagen.se>
12752
12753         * include/winnt.h: Added check if _T is defined before defining it
12754
12755         * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined
12756
12757         * include/dlgs.h: New file
12758
12759         * include/winbase.h: Removed DllEntryPoint define
12760
12761         * include/winbase.h: Added SetupComm prototype
12762
12763         * include/rpc.h: SEH RPC functions no longer defined since they weren't
12764         supported anyway.
12765
12766         * include/basetyps.h: Removed use of COMOBJECT define, instead
12767         DECLARE_INTERFACE directly uses comobject attribute when GCC
12768         is used.
12769
12770         * include/wtypes.h: STGC enum was missing typedef
12771
12772         * include/objidl.h: ADVC enum was missing typedef
12773
12774         * include/winnt.h: Moved CHAR, SHORT and LONG definitions so
12775         they are nested within the VOID definition.
12776
12777         * include/winbase.h: Added stream ids and attributes
12778
12779         * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName
12780         to an ANYSIZE_ARRAY array.
12781
12782 1998-11-26  Anders Norlander  <anorland@hem2.passagen.se>
12783
12784         * include/windef.h: defined _declspec as __declspec since
12785         some programs (like VWCL) use _declspec instead of __declspec
12786
12787         * include/winnt.h: added COMPRESS_FORMAT defines
12788
12789         * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h
12790
12791         * include/winnt.h: added HEAP_XXXX defines
12792
12793         * include/winbase.h: moved HEAP_XXXX defines to winnt.h
12794
12795         * include/winnt.h: added defintions for PE/COFF from the PE and COFF
12796         specification.
12797
12798         * include/winnt.h: added NTAPI define
12799
12800 1998-11-25  Anders Norlander  <anorland@hem2.passagen.se>
12801
12802         * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR
12803         instead of CHAR or WCHAR.
12804
12805         * include/winnt.h: added _T define
12806
12807         * include/winnt.h: added test for _TCHAR_DEFINED
12808
12809         * include/winnt.h: included string.h for memory macros
12810
12811         * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test
12812
12813         * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file
12814
12815         * include/prsht.h: added PropSheet_XXX macros
12816
12817
12818 1998-11-24  Anders Norlander  <anorland@hem2.passagen.se>
12819
12820         * include/winspool.h: Changed DeletePrinterProcessor and
12821         DeletePrinterProvidor to DeletePrintXX.
12822
12823         * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to
12824         LOGCOLORSPACEW.
12825
12826         * include/wingdi.h: Changed prototype for CreateColorSpace to A and W
12827         variants
12828
12829         * include/wingdi.h: Likewise for GetLogColorSpace
12830
12831         * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W.
12832
12833         * include/richedit.h: Added missing defines and structures
12834
12835         * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h
12836
12837         * include/winuser.h: Added HWND_DESKTOP
12838
12839 1998-11-23  Anders Norlander  <anorland@hem2.passagen.se>
12840
12841         * Makefile: Include ChangeLog when building source
12842         distribution (srcdist)
12843
12844         * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they
12845         are always defined as STDAPI and STDAPI_
12846
12847         * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they
12848         are always defined as STDAPI and STDAPI_
12849
12850         * include/objidl.h: Removed extra ';' on IStorage SetClass method
12851
12852         * include/rpcndr.h: Removed all IN and OUT from function prototypes
12853
12854         * ChangeLog started