diff options
author | Christopher Faylor <me@cgf.cx> | 2012-11-07 16:52:48 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2012-11-07 16:52:48 +0000 |
commit | 61746d6ae850aa6a89b0c0b00c609011c6d0ade9 (patch) | |
tree | 95552490c8ee6f3bf8b0f2d37e61bbc9dafe7a7b /winsup/w32api/ChangeLog | |
parent | 2ca28ea2dc0c397b9a11072e121e1c5b6f87650b (diff) | |
download | cygnal-61746d6ae850aa6a89b0c0b00c609011c6d0ade9.tar.gz cygnal-61746d6ae850aa6a89b0c0b00c609011c6d0ade9.tar.bz2 cygnal-61746d6ae850aa6a89b0c0b00c609011c6d0ade9.zip |
* mingw: Delete obsolete directory.
* w32api: Ditto.
Diffstat (limited to 'winsup/w32api/ChangeLog')
-rw-r--r-- | winsup/w32api/ChangeLog | 12243 |
1 files changed, 0 insertions, 12243 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog deleted file mode 100644 index 1b4dec611..000000000 --- a/winsup/w32api/ChangeLog +++ /dev/null @@ -1,12243 +0,0 @@ -2012-08-10 Earnie Boyd <earnie@users.sourceforge.net> - - Even though MSDN documents these as __cdecl the kernel32.dll library - exports them as __stdcall. Confirmed with gendef program. - - * lib/kernel32.def (InterlockedDecrement): Revert the 2012-08-08 change. - (InterlockedIncrement): Ditto. - (InterlockedExchange): Ditto. - * include/winbase.h (InterlockedDecrement): Revert the 2012-08-01 - change. - (InterlockedIncrement): Ditto. - (InterlockedExchange): Ditto. - -2012-08-08 Earnie Boyd <earnie@users.sourceforge.net> - - * lib/kernel32.def (InterlockedDecrement): Remove the @BYTE count since - we now declare it as __cdecl. - (InterlockedIncrement): Ditto. - (InterlockedExchange): Ditto. - -2012-08-06 Earnie Boyd <earnie@users.sourceforge.net> - - * include/winnt.h (MemoryBarrier): Define to __mingworg_MemoryBarrier() - which is in libmingwex.a. - MODIFIED FROM: Use __sync_synchronize instead of - creating a function due to multiple definition. - NOTE: Not using __sync_synchronize to allow applications to mix-n-match - C libraries from different vendors. - -2012-08-04 Earnie Boyd <earnie@users.sourceforge.net> - - * include/winver.h (VerQueryValue[AW]): Correct declaration per MSDN. - -2012-08-01 Stephan Jorek <sjorek@users.sourceforge.net> - - * include/setupapi.h: Correct typos and truncations. - -2012-08-01 Earnie Boyd <earnie@users.sourceforge.net> - - * include/winuser.h (tagMENUITEMINFOA): Correct dwItemData definition. - (tagMENUITEMINFOW): Ditto. - * include/wtsapi32.h (WTSVirtualChannelClose): Add declaration. - (WTSVirtualChannelOpen): Ditto. - (WTSVirtualchannelOpenEx): Ditto. - (WTSVirtualChannelPurgeInput): Ditto. - (WTSVirtualChannelPurgeOutput): Ditto. - (WTSVirtualChannelQuery): Ditto. - (WTSVirtualChannelRead): Ditto. - (WTSVirtualChannelWrite): Ditto. - * lib/wtsapi32.def (WTSVirtualChannelOpenEx@12): Add import. - * include/winbase.h (InterlockedDecrement): Modify declaration from - LONG WINAPI to LONG __cdecl to match Microsoft documentation. - (InterlockedIncrement): Ditto. - (InterlockedExchange): Ditto. - * include/winnt.h (MemoryBarrier): Add definition. - * lib/Makefile.in (amvideo.h): Dependencies are not met making this file - implementation incomplete. Do not deliver it. - (amaudio.h): Ditto. - -2012-07-29 Earnie Boyd <earnie@users.sourceforge.net> - - * include/sdkddkver.h: New file. - * include/windows.h: Include sdkddkver.h. - -2012-07-06 Corinna Vinschen <corinna@vinschen.de> - - * include/winsock.h: Keep IP_OPTIONS and SO_xxx definitions when - building Cygwin. - * include/winsock2.h: Keep sockaddr and sockaddr_storage definitions - when building Cygwin. - -2012-04-29 Jan Ringos <tringi@users.sf.net> - - * include/winbase.h (GetModuleHandleEx[A/W]): Correct version guard. - -2012-04-28 LRN <l_r_nightmare@users.sf.net> - - * include/shobjidl.h: New file. - * lib/shobjidl-uuid.c: New file. - * lib/Makefile.in: Reference shobjidl-uuid.c. - -2012-03-19 Ben Greear <greear@users.sf.net> - - * include/routprot.h (IP_LOCAL_BINDING): Move above IP_ADAPTER_BINDING_INFO - to correct warning about IP_LOCAL_BINDING being undefined. - -2012-01-16 Keith Marshall <keithmarshall@users.sf.net> - - Correct misused 'rm -r' command in uninstall rules. - - * lib/Makefile.in lib/ddk/Makefile.in lib/directx/Makefile.in: - (uninstall-headers): Don't use 'rm -r' when removing individual files; - correct this typo, substituting 'rm -f' as appropriate. - -2012-01-16 Keith Marshall <keithmarshall@users.sf.net> - - Generalise makefile references to subdirectories of lib. - - * lib/Makefile.in (ddk, directx): Replace explicit references using... - (SUBDIRS): ...this macro; it already implements the same references in - a more generalised and extensible fashion. - -2012-01-16 Corinna Vinschen <corinna@vinschen.de> - - * configure: Regenerate and re-add to repository. - * .cvsignore: Fix accordingly. - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - Add 'check' as GCS conforming alias for make's 'test' goal. - - * Makefile.in (check): New goal; declare as .PHONY; implement it as... - (test): ... alternative goal name for this; the original 'test' goal - may now be considered as deprecated, but there is no pressing need to - withdraw support for it. - - * lib/Makefile.in lib/ddk/Makefile.in lib/directx/Makefile.in: - (check, test): Likewise. - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - More makefile code refactoring; remove redundant INCLUDES references. - - * lib/directx/Makefile.in (INCLUDES): Reference to include/directx - is redundant; remove it. This results in identical definitions... - * lib/Makefile.in lib/ddk/Makefile.in (INCLUDES): ...here; factor out - from all three independent makefile locations; relocate to... - * Makefile.comm.in (INCLUDES): ...here. - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - Add smart identification of auxiliary header file paths. - - * aclocal.m4: New file; replaces previously removed file of - same name, with entirely new content. - - * Makefile.in (DISTFILES): Reinstate aclocal.m4 - - * Makefile.comm.in (EXTRA_INCLUDES): Use AC_SUBST to assign it. - (BUILDENV): No longer required; remove all references to it. - - * configure.ac (BUILDENV): Redundant AC_SUBST variable; delete it. - (MINGW_AC_CONFIG_SRCDIR): Factor out; relocate it to aclocal.m4 - (EXTRA_INCLUDES): Define as AC_SUBST variable; assign value using... - (MINGW_AC_RUNTIME_SRCDIR): ...this new aclocal.m4 macro. - - * configure: Regenerated. - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - More makefile code refactoring; fix top_srcdir references. - - * Makefile.comm.in (EXTRA_INCLUDES): Add definitions from... - * lib/Makefile.in (EXTRA_INCLUDES): ...here; factor out common code. - (top_srcdir): Use this throughout, in place of ${srcdir}/../ - - * lib/ddk/Makefile.in lib/directx/Makefile.in (EXTRA_INCLUDES): - Factor out; use corrected definitions from Makefile.comm.in - (top_srcdir): Use throughout, in place of ${srcdir}/../../ - (INCLUDES): Adjust incorrect references to ${srcdir}/../include; - should be ${top_srcdir}/include - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - Update and correct makefile rebuilding rules. - - * Makefile.in (Makefile): Remove dependency on configure; it causes - incorrect invocation of config.status when configure is regenerated. - (config.status): New rule; it invokes the corrected command. - - * lib/Makefile.in lib/ddk/Makefile.in lib/directx/Makefile.in: - (Makefile): Factor out rebuilding rules; replace by... - * Makefile.comm.in (Makefile): ...corrected implementation here. - (top_builddir/Makefile.comm): New rebuilding rule; it establishes the - commands to rebuild Makefile.comm and all other makefiles, when its - own Makefile.comm.in, or any subdirectory Makefile.in is modified, - or when config.status is updated. - (top_builddir/config.status): New rule; it corrects the previously - inappropriate command implementation to update config.status, when the - configure script is regenerated. - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - More formatting adjustments. - - * lib/directx/Makefile.in (LIBS, DINPUT_OBJS): Adjust indentation. - (INCLUDES, EXTRA_INCLUDES): Fold definitions; adjust indentation. - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - Miscellaneous formatting adjustments. - - * lib/Makefile.in (subdirs): Unreferenced macro; delete it. - (srcdir, inst_includedir, inst_libdir, distdir): Use braces in macro - references; don't respecify $file in destination path when installing. - (UUID_OBJS, EXTRA_OBJS, UUID_SOURCES, SOURCES): Adjust indentation. - (TEST_OPTIONS): Fold definition; adjust indentation. - - * lib/ddk/Makefile.in lib/directx/Makefile.in: - (srcdir, inst_includedir, inst_libdir, distdir): Use braces in macro - references; don't respecify $file in destination path when installing. - (TEST_OPTIONS): Fold definition; adjust indentation. - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - Improve self-documentation of 'for' loop commands. - - * Makefile.in lib/Makefile.in: - * lib/ddk/Makefile.in lib/directx/Makefile.in: In 'for' loops invoked - by rule commands, prefer use of 'dir' and 'file' appropriately, as the - loop control variables, rather than non-descript 'i'. - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - Generalise 'all' rule to arbitrary prerequisite sub-directories. - - * Makefile.in: (all): Make it depend on all $(SUBDIRS), not just on... - (lib): ...this; replace it with a generic $(SUBDIRS) goal. - -2012-01-15 Keith Marshall <keithmarshall@users.sf.net> - - Derive package release index from configure time specification. - - * configure.ac (PACKAGE_RELEASE): New variable; define it, such that - AC_SUBST will propagate it to generated makefiles; initialise from... - (RELEASE): ...this configure time variable; make it precious. - - * Makefile.in (CYGRELEASE): Reassign its value, to match... - (RELEASE): ...this; assign AC_SUBST propagated PACKAGE_RELEASE value. - (PACKAGE): Assign AC_SUBST propagated PACKAGE_TARNAME value. - (VERSION): Assign AC_SUBST propagated PACKAGE_VERSION value. - (CC, CFLAGS, AS, LD, AR, RANLIB): Unreferenced macros; delete them. - (CC_FOR_TARGET, AS_FOR_TARGET, DLLTOOL, WINDRES): Likewise. - (prefix, exec_prefix, datadir, infodir, includedir): Likewise. - (bindir, libdir, tooldir, program_transform_name): Likewise. - (build_alias, host_alias): Likewise. - -2012-01-14 Keith Marshall <keithmarshall@users.sf.net> - - Discontinue CVS tracking of generated 'configure' script. - - * configure: Remove it; user may regenerate it when required. - * .cvsignore: New file; mark configure, autom4te.cache, and all - mercurial related files as ignored. - -2012-01-06 Keith Marshall <keithmarshall@users.sf.net> - - Ensure Makefile.comm source is included in distribution tarballs. - - * Makefile.in (DISTFILES): Add Makefile.comm.in - -2012-01-06 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/windef.h (WINVER): Back off to 0x0500. - -2012-01-05 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/windef.h (WINVER): Bump to 0x0501. - -2012-01-03 Chris Sutcliffe <ir0nh34d@users.sf.net> - - Return value, identified by 'make test'. - - * include/gdiplus/gdiplustypes.h (Gdiplus::GdiplusAbort::Abort()): Return - NO_ERROR in virtual definition. - -2012-01-03 Chris Sutcliffe <ir0nh34d@users.sf.net> - - Remove duplicate definitions, identified by 'make test'. - - * include/wincrypt.h (CRYPT_NEWKEYSET, CRYPT_DELETEKEYSET, - CRYPT_MACHINE_KEYSET, CRYPT_SILENT, CRYPT_EXPORTABLE, CRYPT_USER_PROTECTED, - CRYPT_CREATE_SALT, CRYPT_UPDATE_KEY, CRYPT_NO_SALT, CRYPT_PREGEN, - CRYPT_RECIPIENT, CRYPT_INITIATOR, CRYPT_ONLINE, CRYPT_SF, CRYPT_CREATE_IV, - CRYPT_KEK, CRYPT_DATA_KEY, CRYPT_VOLATILE, CRYPT_SGCKEY): Remove duplicate - definitions. - * include/winerror.h (CRYPT_E_REVOKED): Removed - already defined in - wincrypt (which is where it should be defined according to MSDN). - -2012-01-03 Keith Marshall <keithmarshall@users.sf.net> - - Correct misuse of #ifdef, identified by 'make test'. - - * include/shlwapi.h (enum ASSOCSTR, enum ASSOCDATA): Fix typos; - /#ifdef _WIN32_IE >= 0x0600/s/#ifdef/#if/ - -2011-12-22 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (JOB_OBJECT_LIMIT_BREAKAWAY_OK): Define. - (JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK): Define. - (JOB_OBJECT_BREAKAWAY_OK): Define as JOB_OBJECT_LIMIT_BREAKAWAY_OK - and mark as kept for backward compatibility only. - (JOB_OBJECT_SILENT_BREAKAWAY): Define as - JOB_OBJECT_LIMIT_SILENT_BREAKAWAY_OK and mark as kept for backward - compatibility only. - -2011-12-22 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h: Add missing PROCESS_QUERY_LIMITED_INFORMATION. - -2011-12-13 Keith Marshall <keithmarshall@users.sf.net> - - Factor common makefile code into single include file. - - * configure.ac (AC_CONFIG_FILES): Add Makefile.comm - (AC_PROG_MKDIR_P): Add, to AC_SUBST result for mkinstalldirs. - - * configure: Regenerated. - - * lib/Makefile.in lib/ddk/Makefile.in lib/directx/Makefile.in: - (top_srcdir, top_builddir): Define using value passed by AC_SUBST. - (all): Original default goal; rename it as... - (all-default): ...this, to facilitate factoring out of common code, - which we then reinstate by including ${top_builddir}/Makefile.comm - - * Makefile.comm.in: New include file, containing factored-out code. - (all): Redefined default goal; it redirects to renamed original... - (all-default): ...i.e. this; as defined in the original makefiles. - (CC_FOR_TARGET, AS_FOR_TARGET): Unreferenced macros; delete them. - (bindir, program_transform_name, datadir, infodir): Likewise. - -2011-12-13 Keith Marshall <keithmarshall@users.sf.net> - - Prepare for makefile code refactoring. - - * lib/ddk/Makefile.in (ddk_includedir): New macro; define it, then use - it in install-headers and uninstall-headers rules, in place of... - (inst_includedir): ...this; we then redefine this for consistency with - makefiles in other subdirectories, as a prerequisite to factoring out - of common code. - -2011-12-12 Keith Marshall <keithmarshall@users.sf.net> - - * Makefile.in (FLAGS_TO_PASS): Pointless macro; remove it. (Defaults - for all are propagated by configure, and make automatically propagates - any user specified overrides. - - * lib/Makefile.in (FLAGS_TO_PASS): Similarly removed, as pointless. - (uninstall-ddk, uninstall-directx): Remove improperly used '-C' from - make command; the directory to process was previously selected by cd, - and not properly specified as argument to '-C'. - -2011-12-10 Keith Marshall <keithmarshall@users.sf.net> - - * aclocal.m4: Redundant file; delete it. - - * configure.in: Deprecated file name; rename it as... - * configure.ac: ...this. Correct macro argument quoting throughout. - (AC_INIT, AC_OUTPUT): Update to modern autoconf syntax, adding... - (AC_CONFIG_FILES): ...this, as required to specify output files. - (__ver__): New m4_define'd macro; use it to propagate package version - from include/w32api.h to AC_INIT, at autoconf run time. - (AC_CONFIG_SRCDIR): Now invoked indirectly, as a function of... - (MINGW_AC_CONFIG_SRCDIR): New AC_DEFUN'd macro; as a side effect, it - propagates the package version from include/w32api.h to all generated - makefiles at configure run time, overriding the AC_INIT value. - (AC_SUBST): Remove redundant references, for symbols declared by... - (AC_CHECK_TOOL): ...this; it implies AC_SUBST anyway. - - * configure: Regenerated. - - * Makefile.in (DIST_FILES): Cosmetic change; rename it as... - (DISTFILES): ...this; remove aclocal.m4; adjust to capture rename of - configure.in to configure.ac - -2011-08-19 Corinna Vinschen <corinna@vinschen.de> - - * include/winuser.h: Add missing MAPVK_xxx definitions. - -2011-08-05 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (IMAGE_DLLCHARACTERISTICS_DYNAMIC_BASE, - IMAGE_DLLCHARACTERISTICS_FORCE_INTEGRITY, - IMAGE_DLLCHARACTERISTICS_NX_COMPAT): Fix typo in definitions. - (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE, - IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY, - IMAGE_DLL_CHARACTERISTICS_NX_COMPAT): Keep broken definitions for - backward compatibility. - -2011-07-29 Corinna Vinschen <corinna@vinschen.de> - - * include/winsock2.h (SIO_UDP_CONNRESET): Define. - -2011-05-22 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/wingdi.h (GCP_RESULTSW): Correct defintion. - - Thanks to Albrecht Schlosser for the report and the fix. - -2011-05-15 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h (STACK_SIZE_PARAM_IS_A_RESERVATION): Define. - -2011-04-21 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/windef.h (PACKED): Remove macro. - * include/wincon.h: Replace PACKED macro with __attribute__((packed)). - - Thanks to Keith Marshall for the fix. - -2011-04-21 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/imagehlp.h (PREAD_PROCESS_MEMORY_ROUTINE): Correct definition. - - Thanks to Safety0ff for the report. - -2011-04-04 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (DOMAIN_ALIAS_RID_REMOTE_DESKTOP_USERS): Add. - -2011-03-29 Corinna Vinschen <corinna@vinschen.de> - - * include/userenv.h: Add functions and definitions added with Windows - 2000 and Vista. - -2011-03-25 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * Makefile.in: Increment CYGRELEASE to 2. - -2011-03-25 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * lib/Makefile.in: Include GDIPLUS_HEADERS in dist target. - -2011-03-11 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.17. - * Makefile.in: Ditto. - -2011-03-07 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/winbase.h (PSAPI_WORKING_SET_BLOCK, - PSAPI_WORKING_SET_INFORMATION): Move from here... - * include/psapi.h (PSAPI_WORKING_SET_BLOCK, - PSAPI_WORKING_SET_INFORMATION): ... to here. - -2011-03-05 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.16. - * Makefile.in: Ditto. - -2011-03-05 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/commctrl.h (NMTCKEYDOWN): Define. - -2011-03-05 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/wtsapi32.h (WTSSendMessageA, WTSSendMessageW, WTSSendMessage): - Define. - -2011-03-05 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (PSAPI_WORKING_SET_BLOCK, - PSAPI_WORKING_SET_INFORMATION): Define. - -2011-03-05 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (__GNUC_EXTENSION): Define, replacing __MINGW_EXTENSION. - -2011-03-05 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/kernel32.def (FreeLibraryAndExitThread): Fix definition. - -2011-03-04 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (FILE_ENCRYPTABLE, FILE_IS_ENCRYPTED, FILE_READ_ONLY, - FILE_ROOT_DIR, FILE_SYSTEM_ATTR, FILE_SYSTEM_DIR, FILE_SYSTEM_NOT_SUPPORT, - FILE_UNKNOWN, FILE_USER_DISALLOWED): Define. - -2011-03-04 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winioctl.h (_DRIVE_LAYOUT_INFORMATION_MBR): Add - _DRIVE_LAYOUT_INFORMATION_MBR_DEFINED guard. - * include/ddk/winddk.h (_DRIVE_LAYOUT_INFORMATION_MBR): Ditto. - -2011-03-04 Seth Jackson <sethj@users.sourceforge.net> - - * include/winnt.h (PAGE_WRITECOMBINE): Define. - * include/winbase.h (THREAD_MODE_BACKGROUND_BEGIN, THREAD_MODE_BACKGROUND_END): Define. - -2011-03-04 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (__MINGW_EXTENSION): Define. - (OVERLAPPED): Add __MINGW_EXTENSION around nameless union / - struct to correct issue with -std=c99. - -2011-03-02 Corinna Vinschen <corinna@vinschen.de> - - * include/ddk/winddk.h (TIMER_INFORMATION_CLASS): Define. - (TIMER_BASIC_INFORMATION): Define. - (NtQueryTimer): Define. - (ZwQueryTimer): Define. - -2010-12-27 David Byron <dbyron0@users.sourceforge.net> - - * include/winioctl.h (STORAGE_BUS_TYPE): Define. - -2010-12-27 Seth Jackson <sethj@users.sourceforge.net> - - * include/winbase.h (GetComputerNameEx): Define. - -2010-12-27 Ryan Lortie <desrt@desrt.ca> - - * include/winbase.h (TzSpecificLocalTimeToSystemTime): Define. - -2010-12-27 Markus Koenig <basilo@users.sourceforge.net> - - * include/gdiplus/gdipluspixelformats.h (PixelFormatIndexed, - PixelFormatGDI, PixelFormatAlpha, PixelFormatPAlpha, - PixelFormatExtended, PixelFormatCanonical, PixelFormatUndefined, - PixelFormatDontCare, PixelFormat1bppIndexed, PixelFormat4bppIndexed, - PixelFormat8bppIndexed, PixelFormat16bppGrayScale, - PixelFormat16bppRGB555, PixelFormat16bppRGB565, PixelFormat16bpp1555, - PixelFormat24bppRGB, PixelFormat32bppRGB, PixelFormat32bppARGB, - PixelFormat32bppPARGB, PixelFormat48bppRGB, PixelFormat64bppARGB, - PixelFormat64bppPARGB, PixelFormatMax): Fix definition. - -2010-10-20 Seth Jackson <sethj@users.sourceforge.net> - - * include/commctrl.h (TC_ITEMHEADER[AW]): Rename to TCITEMHEADER[AW]. - Add defines for backward compatibility. - -2010-12-27 Johann Hanne <jonnyh33@users.sourceforge.net> - - * include/oaidl.h (GetTypeComp, GetTypeComp, IsMatchingType): Fix defintion. - * include/objidl.h (AddConnection, ReleaseConnection): Ditto. - * include/winbase.h (EnumResourceLanguagesA, EnumResourceLanguagesW, - EnumResourceNamesA, EnumResourceNamesW, EnumResourceTypesA, - EnumResourceTypesW): Ditto. - * include/winnt.h (_SYSTEM_POWER_CAPABILITIES): Ditto. - -2010-12-27 Seth Jackson <sethj@users.sourceforge.net> - - * include/basetsd.h: (INT8, UINT8, INT16, UINT16): Define. - -2010-12-27 Paul Sokolovsky <pfalcon@users.sf.net> - - * include/bdatypes.h: Add missing semicolons. - -2010-08-26 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.15. - * Makefile.in: Ditto. - -2010-08-26 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * Makefile.in: Update naming convention and compression format (lzma), - leaving existing naming convention and compression format as is for Cygwin. - -2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/oleacc.h (STATE_SYSTEM_HASPOPUP, STATE_SYSTEM_NORMAL, - STATE_SYSTEM_PROTECTED): Define. - - Thank you to Marcus von Appen for reporting the issue. - -2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winuser.h (CF_DIBV5): Define. - (CF_MAX): Adjust accordingly. - - Thank you to Lenard Lindstrom for reporting the issue. - -2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/sspi.h (QuerySecurityContextToken): Define. - * lib/secur32.def: Regenerate using gendef on a Win7 machine. - - Thank you to Magnus Hagander for reporting the issue. - -2010-08-25 Ali Sabil <asabil@users.sourceforge.net> - - * include/ocidl.h: Define COBJMACROS for IPropertyBag and IPropertyBag2. - -2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shlwapi (ASSOCDATA): Update definition. - - Thank you to Frederic Deschamps for reporting the issue. - -2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (COPY_FILE_OPEN_SOURCE_FOR_WRITE, - COPY_FILE_ALLOW_DECRYPTED_DESTINATION, COPY_FILE_COPY_SYMLINK, - COPY_FILE_NO_BUFFERING): Define. - - Thank you to Roland Schwingel for reporting the issue. - -2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winuser.h (HHOOK): Move definition from here... - * include/windef.h: ...to here, as per MSDN. - - Thank you to Samuel Thibault for reporting the issue. - -2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per - MSDN, change return type to LPCH. - (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH. - - Thank you to Emmanuel Stapf for reporting the issue. - -2010-08-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/prsht.h (SNDMDG, POSTMSG): Fix typo. - * include/windowsx.h (SNDMSG): Ditto. - -2010-08-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/prsht.h (SNDMSG, POSTMSG): Define macros and use throughout. - - Thank you to Ozkan Sezer for reporting the issue. - -2010-08-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/windowsx.h (SNDMSG): Define macro and use throughout. - - Thank you to Chris Oldwood for reporting the issue. - -2010-08-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/oleacc.h (AccessibleObjectFromEvent): Correct definition. - - Thank you to Rick Walsh for reporting the issue. - -2010-08-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (MoveFileWithProcessA, MoveFileWithProgressW): Define. - -2010-08-24 Vinky <rabbit_vinky@users.sourceforge.net> - - * include/winbase.h (OVERLAPPED): Correct definition. - -2010-08-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winnt.h (IMAGE_NT_HEADERS32, IMAGE_NT_HEADERS64): Correct - definition. - - Thank you to Pasi Ruokola for reporting the issue. - -2010-08-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/exdisp.h (get_RegisterAsBrowser): Fix typo. - - Thank you to cheznonnon for reporting the issue. - -2010-08-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/ws2_32.def: Regenerate using gendef on a Win7 machine. - -2010-08-24 Ozkan Sezer <sezero@users.sourceforge.net> - - * winnt.h: Fix several SUBLANG ID errors (ref: - http://msdn.microsoft.com/en-us/library/dd318693(VS.85).aspx). - (SUBLANG_UI_CUSTOM_DEFAULT): 0x05, not 0x03. - (SUBLANG_HAUSA_NIGERIA): Bad ID name, correct one is ... - (SUBLANG_HAUSA_NIGERIA_LATIN): ... this. - (SUBLANG_INUKTITUT_CANADA_LATIN): 0x02, not 0x01. - (SUBLANG_IRISH_IRELAND): 0x02, not 0x01. - (SUBLANG_LAO_LAO_PDR): Bad ID name, correct one is ... - (SUBLANG_LAO_LAO): ... this. - (SUBLANG_LOWER_SORBIAN_GERMANY): 0x02, not 0x01. - (SUBLANG_SAMI_SKOLT_FINLAND): 0x08, not 0x03. - (SUBLANG_SAMI_INARI_FINLAND): 0x09, not 0x03. - (SUBLANG_SYRIAC_SYRIA): define as SUBLANG_SYRIAC (what MSDN mentions). - (SUBLANG_TIGRIGNA_ERITREA): 0x02, not 0x01. - (SUBLANG_BENGALI_INDIA): 0x01, not 0x00. - (SUBLANG_BENGALI_BANGLADESH): 0x02, not 0x01. - (SUBLANG_PUNJABI_INDIA): 0x01, not 0x00. - (SUBLANG_PUNJABI_PAKISTAN): not defined in MSDN. - (SUBLANG_ROMANIAN_ROMANIA): 0x01, not 0x00. - (SUBLANG_ROMANIAN_MOLDOVA): not defined in MSDN. - -2010-08-24 LRN <lrn1986@gmail.com> - - * include/mmreg.h (MPEGLAYER3WAVEFORMAT, WAVE_FORMAT_UNKNOWN, - WAVE_FORMAT_PCM, WAVE_FORMAT_ADPCM, WAVE_FORMAT_IEEE_FLOAT, - WAVE_FORMAT_VSELP, WAVE_FORMAT_IBM_CVSD, WAVE_FORMAT_ALAW, - WAVE_FORMAT_MULAW, WAVE_FORMAT_OKI_ADPCM, WAVE_FORMAT_DVI_ADPCM, - WAVE_FORMAT_MEDIASPACE_ADPCM, WAVE_FORMAT_SIERRA_ADPCM, - WAVE_FORMAT_G723_ADPCM, WAVE_FORMAT_DIGIFIX, WAVE_FORMAT_DIALOGIC_OKI_ADPCM, - WAVE_FORMAT_MEDIAVISION_ADPCM, WAVE_FORMAT_CU_CODEC, - WAVE_FORMAT_YAMAHA_ADPCM, WAVE_FORMAT_SONARC, - WAVE_FORMAT_DSPGROUP_TRUESPEECH, WAVE_FORMAT_ECHOSC1, - WAVE_FORMAT_AUDIOFILE_AF36, WAVE_FORMAT_APTX, WAVE_FORMAT_AUDIOFILE_AF10, - WAVE_FORMAT_PROSODY_1612, WAVE_FORMAT_LRC, WAVE_FORMAT_DOLBY_AC2, - WAVE_FORMAT_GSM610, WAVE_FORMAT_MSNAUDIO, WAVE_FORMAT_ANTEX_ADPCME, - WAVE_FORMAT_CONTROL_RES_VQLPC, WAVE_FORMAT_DIGIREAL, WAVE_FORMAT_DIGIADPCM, - WAVE_FORMAT_CONTROL_RES_CR10, WAVE_FORMAT_NMS_VBXADPCM, - WAVE_FORMAT_ROLAND_RDAC, WAVE_FORMAT_ECHOSC3, WAVE_FORMAT_ROCKWELL_ADPCM, - WAVE_FORMAT_ROCKWELL_DIGITALK, WAVE_FORMAT_XEBEC, WAVE_FORMAT_G721_ADPCM, - WAVE_FORMAT_G728_CELP, WAVE_FORMAT_MSG723, WAVE_FORMAT_MPEG, - WAVE_FORMAT_RT24, WAVE_FORMAT_PAC, WAVE_FORMAT_MPEGLAYER3, - WAVE_FORMAT_LUCENT_G723, WAVE_FORMAT_CIRRUS, WAVE_FORMAT_ESPCM, - WAVE_FORMAT_VOXWARE, WAVE_FORMAT_CANOPUS_ATRAC, WAVE_FORMAT_G726_ADPCM, - WAVE_FORMAT_G722_ADPCM, WAVE_FORMAT_DSAT, WAVE_FORMAT_DSAT_DISPLAY, - WAVE_FORMAT_VOXWARE_BYTE_ALIGNED, WAVE_FORMAT_VOXWARE_AC8, - WAVE_FORMAT_VOXWARE_AC10, WAVE_FORMAT_VOXWARE_AC16, - WAVE_FORMAT_VOXWARE_AC20, WAVE_FORMAT_VOXWARE_RT24, - WAVE_FORMAT_VOXWARE_RT29, WAVE_FORMAT_VOXWARE_RT29HW, - WAVE_FORMAT_VOXWARE_VR12, WAVE_FORMAT_VOXWARE_VR18, - WAVE_FORMAT_VOXWARE_TQ40, WAVE_FORMAT_SOFTSOUND, WAVE_FORMAT_VOXWARE_TQ60, - WAVE_FORMAT_MSRT24, WAVE_FORMAT_G729A, WAVE_FORMAT_MVI_MV12, - WAVE_FORMAT_DF_G726, WAVE_FORMAT_DF_GSM610, WAVE_FORMAT_ISIAUDIO, - WAVE_FORMAT_ONLIVE, WAVE_FORMAT_SBC24, WAVE_FORMAT_DOLBY_AC3_SPDIF, - WAVE_FORMAT_ZYXEL_ADPCM, WAVE_FORMAT_PHILIPS_LPCBB, WAVE_FORMAT_PACKED, - WAVE_FORMAT_RHETOREX_ADPCM, WAVE_FORMAT_IRAT, WAVE_FORMAT_VIVO_G723, - WAVE_FORMAT_VIVO_SIREN, WAVE_FORMAT_DIGITAL_G723, - WAVE_FORMAT_CREATIVE_ADPCM, WAVE_FORMAT_CREATIVE_FASTSPEECH8, - WAVE_FORMAT_CREATIVE_FASTSPEECH10, WAVE_FORMAT_QUARTERDECK, - WAVE_FORMAT_FM_TOWNS_SND, WAVE_FORMAT_BTV_DIGITAL, WAVE_FORMAT_VME_VMPCM, - WAVE_FORMAT_OLIGSM, WAVE_FORMAT_OLIADPCM, WAVE_FORMAT_OLICELP, - WAVE_FORMAT_OLISBC, WAVE_FORMAT_OLIOPR, WAVE_FORMAT_LH_CODEC, - WAVE_FORMAT_NORRIS, WAVE_FORMAT_ISIAUDIO, - WAVE_FORMAT_SOUNDSPACE_MUSICOMPRESS, WAVE_FORMAT_DVM, WAVE_FORMAT_RAW_AAC1, - WAVE_FORMAT_MPEG_HEAAC, WAVE_FORMAT_MPEG_ADTS_AAC, WAVE_FORMAT_DRM, - WAVE_FORMAT_DTS, WAVE_FORMAT_WMAVOICE9, WAVE_FORMAT_WMASPDIF, - WAVE_FORMAT_WMAUDIO_LOSSLESS, WAVE_FORMAT_WMAUDIO2, WAVE_FORMAT_WMAUDIO3, - WAVE_FORMAT_MPEG_LOAS, WAVE_FORMAT_RAW_SPORT, WAVE_FORMAT_ESST_AC3, - WAVE_FORMAT_DTS2): Define. - * include/msacm.h (HACMDRIVERID, HACMDRIVER, HACMSTREAM, HACMOBJ, - ACMSTREAMHEADER, WAVEFILTER, acmDriverAddA, acmDriverAddW, acmDriverRemove, - acmMetrics, acmStreamOpen, acmStreamSize, acmStreamPrepareHeader, - acmStreamUnprepareHeader, acmStreamReset, acmStreamClose, acmStreamConvert): - Define. - -2010-08-23 LRN <lrn1986@gmail.com> - - * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, FILE_NAME_NORMALIZED, - FILE_NAME_OPENED, VOLUME_NAME_DOS, VOLUME_NAME_GUID, VOLUME_NAME_NONE, - VOLUME_NAME_NT, FILE_BASIC_INFO, FILE_STANDARD_INFO, FILE_NAME_INFO, - FILE_STREAM_INFO, FILE_COMPRESSION_INFO, FILE_ATTRIBUTE_TAG_INFO, - FILE_ID_BOTH_DIR_INFO, FILE_REMOTE_PROTOCOL_INFO, FILE_INFO_BY_HANDLE_CLASS, - GetFileInformationByHandleEx, GetFinalPathNameByHandleA, - GetFinalPathNameByHandleW): Define. - -2010-08-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/CheckConflicts.sh: New file. - -2010-08-21 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/kernel32.def (CopyLZFile, GetExpandedNameA, GetExpandedNameW, LZClose, - LZCopy, LZInit, LZOpenFileA, LZOpenFileW, LZRead, LZSeek, OpenProcessToken, - OpenThreadToken, RegCloseKey, RegCreateKeyExA, RegCreateKeyExW, - RegDeleteKeyExA, RegDeleteKeyExW, RegDeleteValueA, RegDeleteValueW, - RegEnumKeyExA, RegEnumKeyExW, RegEnumValueA, RegEnumValueW, RegFlushKey, - RegGetKeySecurity, RegLoadKeyA, RegLoadKeyW, RegNotifyChangeKeyValue, - RegOpenCurrentUser, RegOpenKeyExA, RegOpenKeyExW, RegOpenUserClassesRoot, - RegQueryInfoKeyA, RegQueryInfoKeyW, RegQueryValueExA, RegQueryValueExW, - RegRestoreKeyA, RegRestoreKeyW, RegSetKeySecurity, RegSetValueExA, - RegSetValueW, RegUnLoadKeyA, RegUnLoadKeyW, RtlCaptureStackBackTrace, - RtlFillMemory, RtlMoveMemory, RtlZeroMemory, SetThreadToken): Remove - conflicting definition. - * lib/th32.def: Remove. - * lib/ntdll.def (RtlUnwind): Remove conflicting definition. - * lib/version.def (VerLanguageNameA, VerLanguageNameW): Remove conflicting - definition. - -2010-08-21 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/kernel32.def (CreateProcessAsUserW): Remove definition. - -2010-08-20 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/kernel32.def: Regenerate using gendef on a Win7 machine. - -2010-08-19 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h: Define FILE_ATTRIBUTE_VIRTUAL. Change - FILE_ATTRIBUTE_VALID_FLAGS accordingly. - * include/ddk/winddk.h: Ditto. - -2010-08-18 Ladislav Michl <ladis@users.sourceforge.net> - - * include/winbase.h (SYMBOLIC_LINK_FLAG_DIRECTORY, CreateSymbolicLinkW, - CreateSymbolicLinkA, CreateSymbolicLink): Define - -2010-07-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/kernel32.def(FatalExit): Correct definiton. - -2010-07-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Revert change - from 2010-07-17 since it breaks several applications. - -2010-07-21 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/kernel32.def: Regenerate using gendef. - -2010-07-20 Ozkan Sezer <sezero@users.sourceforge.net> - - * include/commctrl.h (LVIF_GROUPID): Fix definition. - -2010-07-20 Michael James <james.me@gmail.com> - - * include/commctrl.h (LVIF_COLUMNS): Fix definition. - -2010-07-17 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winnt.h (HEAP_MAKE_TAG_FLAGS, VALID_INHERIT_FLAGS): Correct - definition. - * include/rpcndr.h (NdrUnMarshConfStringHdr, NdrUnMarshCCtxtHdl, - NdrMarshSCtxtHdl): Ditto. - * include/basetyps.h (REFGUID, REFIID, REFCLSID, REFFMTID): Remove macro - definition in favour of typedef definition. - - Thank you to Yuta Tomino for reporting the issues. - -2010-07-08 Markus Koenig <basilo@users.sourceforge.net> - - * include/gdiplus.h: New file. - * include/gdiplus/gdiplus.h: New file. - * include/gdiplus/gdiplusbase.h: New file. - * include/gdiplus/gdiplusbrush.h: New file. - * include/gdiplus/gdipluscolor.h: New file. - * include/gdiplus/gdipluscolormatrix.h: New file. - * include/gdiplus/gdipluseffects.h: New file. - * include/gdiplus/gdiplusenums.h: New file. - * include/gdiplus/gdiplusflat.h: New file. - * include/gdiplus/gdiplusgpstubs.h: New file. - * include/gdiplus/gdiplusgraphics.h: New file. - * include/gdiplus/gdiplusheaders.h: New file. - * include/gdiplus/gdiplusimageattributes.h: New file. - * include/gdiplus/gdiplusimagecodec.h: New file. - * include/gdiplus/gdiplusimaging.h: New file. - * include/gdiplus/gdiplusimpl.h: New file. - * include/gdiplus/gdiplusinit.h: New file. - * include/gdiplus/gdipluslinecaps.h: New file. - * include/gdiplus/gdiplusmatrix.h: New file. - * include/gdiplus/gdiplusmem.h: New file. - * include/gdiplus/gdiplusmetafile.h: New file. - * include/gdiplus/gdiplusmetaheader.h: New file. - * include/gdiplus/gdipluspath.h: New file. - * include/gdiplus/gdipluspen.h: New file. - * include/gdiplus/gdipluspixelformats.h: New file. - * include/gdiplus/gdiplusstringformat.h: New file. - * include/gdiplus/gdiplustypes.h: New file. - * lib/gdiplus.c: New file containing GDI+ variable definitions - and GUIDs. - * lib/gdiplus.def: New file. - * lib/Makefile.in: Add gdiplus.o to EXTRA_OBJS, - add gdiplus.c to SOURCES. - * lib/test.c: Include gdiplus.h. - -2010-06-28 Rick Rankin <rrankin1424-mingw@yahoo.com> - - * include/psapi.h (PROCESS_MEMORY_COUNTERS_EX, PERFORMANCE_INFORMATION, - GetPerformanceInfo): Define. - * lib/psapi.def (GetPerformanceInfo): Define. - * include/wincrypt.h (CryptEnumProvidersA, CryptEnumProvidersW, - CryptEnumProviders): Define. - -2010-02-17 LRN <lrn1986@gmail.com> - - * include/shlguid.h (IID_IFolderView): Define. - * include/shlobj.h (IFolderView interface): Define. - * lib/shell32.c (IID_IFolderView): Export. - -2010-01-26 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net> - - * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add version guard around - ACO_WORD_FILTER and ACO_NOPREFIXFILTERING. - -2010-01-26 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net> - - * include/shldisp.h (AUTOCOMPLETEOPTIONS): Add enum. - -2009-20-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shlobj.h (SHParseDisplayName): Fix definition. - -2009-20-10 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.14. - * Makefile.in: Ditto. - -2009-20-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shlobj.h (SHParseDisplayName): Define. - - Thanks to James Roberts-Thomson for the report. - -2009-20-10 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net> - - * include/wingdi.h (ENHMFENUMPROC): Correct definition. - - Thanks to Alexander Vassilev for the report. - -2009-20-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/iprtrmib.h (MIB_IPADDRROW): Correct definition. - - Thanks to Thomas Denk for the report. - -2009-20-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (UnmapViewOfFile): Correct definition. - - Thanks to Dimitry Sibiryakov for the report. - -2009-20-10 Aleksey Chernov <virxkane@users.sourceforge.net> - - * include/sspi.h: Include ntsecapi.h to correct postgresql build error. - -2009-20-10 Heiko Hund <heiko@ist.eigentlich.net> - - * include/commctrl.h (GetMUILanguage, InitMUILanguage): Add prototypes. - * lib/comctl32.def (GetMUILanguage, InitMUILanguage): Define. - -2009-20-10 Michael James <james.me@gmail.com> - - * include/wingdi.h (CLEARTYPE_QUALITY): Define. - * include/winuser.h (WM_KEYLAST): Alternative definition when _WIN32_WINNT - >= 0x0501. - (WM_UNICHAR,UNICODE_NOCHAR): Define. - * lib/comctl32.def (DefSubclassProc@16,GetWindowSubclass@16, - RemoveWindowSubclass@12): Add exports. - * lib/gdi32.def (GetDCBrushColor@4,GetDCPenColor@4): Add exports. - -2009-20-10 Jarkko Sakkinen <jarkko.sakkinen@iki.fi> - - * include/winuser.h (WM_TOUCHMOVE, WM_TOUCHDOWN, WM_TOUCHUP, - TOUCHEVENTF_DOWN, TOUCHEVENTF_INRANGE, TOUCHEVENTF_MOVE, - TOUCHEVENTF_NOCOALESCE, TOUCHEVENTF_PALM, TOUCHEVENTF_PEN, - TOUCHEVENTF_PRIMARY, TOUCHEVENTF_UP, TOUCHEVENTMASKF_CONTACTAREA, - TOUCHEVENTMASKF_EXTRAINFO, TOUCHEVENTMASKF_TIMEFROMSYSTEM, TOUCHINPUT, - CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow, - RegisterTouchWindow, UnregisterTouchWindow): Define. - * lib/user32.def (CloseTouchInputHandle, GetTouchInputInfo, IsTouchWindow, - RegisterTouchWindow, UnregisterTouchWindow): Define. - -2009-20-10 Dmitry Potapov <dpotapov@users.sourceforge.net> - - * include/winver.h (VerQueryValue[AW]): Correct definition. - -2009-20-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shlobj.h (SHARD): Add enum. - (SHARD_PATH): Define based on UNICODE. - - Thanks to Jacek Caban for the report. - -2009-14-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/wingdi.h (_devicemodeW, _devicemodeA): Correct definition. - - Thanks to Bruno Martinez for the report. - -2009-14-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shlobj.h (IDO_SHGIOI_SHARE, IDO_SHGIOI_LINK, IDO_SHGIOI_SLOWFILE, - IDO_SHGIOI_DEFAULT, SHGetIconOverlayIndexW, SHGetIconOverlayIndexA, - SHGetIconOverlayIndex): Define. - - Thanks to Tim Kosse for the report. - -2009-13-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/wincon.h (AttachConsole): Correct guard. - - Thanks to Alexander Shaduri for the report. - -2009-13-09 Robert Moerland <rjmoerland@users.sourceforge.net> - - * include/wininet.h (NTERNET_CACHE_ENTRY_INFOW): Correct definition. - (DeleteUrlCacheEntryW, DeleteUrlCacheEntryA): Define. - -2009-13-09 Jacky Lai <crazyjacky@users.sourceforge.net> - - * include/winerror.h: Fix typos in macro names. - -2009-13-09 Jan Nijtmans <nijtmans@users.sourceforge.net> - - * include/winuser.h (SendMessageTimeoutA, SendMessageTimeoutW): Correct - definition. - -2009-11-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winnt.h (PROCESS_SUSPEND_RESUME): Define. - -2009-10-29 Charles Wilson <mingw@cwilson.fastmail.fm> - - Honor DESTDIR for winsup/mingw and winsup/w32api. - Detect and report error if installation paths are win32 - format, but DESTDIR is non-empty. - - * Makefile.in (install, uninstall): Use FLAGS_TO_PASS - when invoking make in subdirs. - * lib/Makefile.in (DESTDIR): Honor per convention. - (need-DESTDIR-compatibility): New macro; define it and a - corresponding rule. - (fail-DESTDIR-compatibility): New dependency goal. - (install-libraries, install-headers, uninstall-libraries, - uninstall-headers): Require need-DESTDIR-compatibility. - * lib/ddk/Makefile.in: Ditto. - * lib/directx/Makefile.in: Ditto. - -2009-10-04 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h (CreateRestrictedToken): Declare for >= Win 2000. - _WIN32_WINNT >= 0x0500. - (DISABLE_MAX_PRIVILEGE, SANDBOX_INERT, LUA_TOKEN, - WRITE_RESTRICTED): Define. - (IsTokenRestricted): Declare for >= Win 2000. - -2009-08-30 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/wtsapi32.h (WTSQuerySessionInformationA, - WTSQuerySessionInformationW, WTSQuerySessionInformation, WTSFreeMemory): - Moved to (_WIN32_WINNT >= 0x0500) guard. - (thanks to Pierre Ossman) - -2009-08-09 Andy Koppe <andy.koppe@gmail.com> - - * include/winnls.h (IS_HIGH_SURROGATE, IS_LOW_SURROGATE, - IS_SURROGATE_PAIR): Define. - -2009-07-27 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (FILE_SUPPORTS_HARD_LINKS, - FILE_SUPPORTS_EXTENDED_ATTRIBUTES, FILE_SUPPORTS_OPEN_BY_FILE_ID, - FILE_SUPPORTS_USN_JOURNALS): Define. Add comment. - * include/ddk/ntifs.h: Ditto. - (FILE_SEQUENTIAL_WRITE_ONCE, FILE_SUPPORTS_TRANSACTIONS): Define. - -2009-07-21 Corinna Vinschen <corinna@vinschen.de> - - * lib/msimg32.def (GetDCBrushColor, GetDCPenColor): Move entry points - from here... - * lib/gdo32.dll: ...to here. - -2009-07-01 Corinna Vinschen <corinna@vinschen.de> - - * lib/comctl32.def (StrCSpnA@8, StrCSpnIA@8, StrCSpnW@8, StrChrA@8, - StrChrIA@8, StrChrIW@8, StrChrW@8, StrCmpNA@12, StrCmpNIA@12, - StrCmpNIW@12, StrCmpNW@12, StrRChrA@12, StrRChrIA@12, StrRChrW@12, - StrRStrIA@12, StrRStrIW@12, StrStrA@8, StrStrIA@8, StrStrIW@8, - StrStrW@8, StrToIntA@4, StrToIntW@4): Remove erroneously defined - entry points. - -2009-06-24 Corinna Vinschen <corinna@vinschen.de> - - * include/wtsapi32.h (WTSQueryUserToken, WTSEnumerateSessionsW, - WTSEnumerateSessionsA): Add function prototypes. - (struct _WTS_SESSION_INFOW, struct _WTS_SESSION_INFOA): Add typedefs. - (WTS_SESSION_INFO, PWTS_SESSION_INFO, WTSEnumerateSessions): Add - defines dependent on UNICODE setting. - -2009-06-07 Corinna Vinschen <corinna@vinschen.de> - - * include/ddk/ntapi.h: Add NtXxx equivalent to ZwXxx where missing - and vice versa. - * include/ddk/ntifs.h: Ditto. - * include/ddk/winddk.h: Ditto. - * lib/ntdll.def (NtPlugPlayControl, NtQueryInstallUILanguage, - ZwPlugPlayControl, ZwQueryInstallUILanguage): Add entry points defined - in header, but missing in lib. Omit NT4-only entry points. - -2009-05-01 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shellapi.h (SHIL_LARGE, SHIL_SMALL, SHIL_EXTRALARGE, - SHIL_SYSSMALL, SHIL_JUMBO, SHIL_LAST SHIL_JUMBO, SHGetImageList): Define. - * lib/shell32.def (SHGetImageList): Define. - -2009-02-18 Corinna Vinschen <corinna@vinschen.de> - - * winnt.h: Add Vista token security extensions. - (SID_HASH_SIZE): Define. - (TOKEN_MANDATORY_POLICY_OFF, TOKEN_MANDATORY_POLICY_NO_WRITE_UP, - TOKEN_MANDATORY_POLICY_NEW_PROCESS_MIN, - TOKEN_MANDATORY_POLICY_VALID_MASK): Define. - (SID_HASH_ENTRY): Define. - (struct _SID_AND_ATTRIBUTES_HASH): Define. - (struct _TOKEN_LINKED_TOKEN): Define. - (struct _TOKEN_MANDATORY_LABEL): Define. - (struct _TOKEN_MANDATORY_POLICY): Define. - (struct _TOKEN_ELEVATION): Define. - (struct _TOKEN_ACCESS_INFORMATION): Define. - (enum _TOKEN_INFORMATION_CLASS): Conditionally define new Vista token - information enumeration values. - -2009-02-09 Corinna Vinschen <corinna@vinschen.de> - - * include/winioctl.h (FSCTL_ALLOW_EXTENDED_DASD_IO): Copy definition - from ddk/ntifs.h. - -2009-02-06 Linton Miller <Linton.Miller@trivininc.com> - - * include/wtsapi32.h (WTS_CURRENT_SESSION): Fix definition. - -2009-01-19 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h (enum _DEP_SYSTEM_POLICY_TYPE): Fix version guard. - -2009-01-11 Henry Nestler <henry@bigfoot.de> - - * lib/ddk/ntoskrnl.def: Enable ZwQueryEaFile, ZwSetEaFile, NtQueryEaFile, - NtSetEaFile. - -2009-01-07 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h (SCS_64BIT_BINARY): Define. - -2008-12-05 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.13. - * Makefile.in: Ditto. - -2008-12-05 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * lib/glut.def: remove. - * lib/glut32.def: ditto. - -2008-11-11 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h (PROCESS_DEP_ENABLE, - PROCESS_DEP_DISABLE_ATL_THUNK_EMULATION): Define for >= Vista SP1. - (enum _DEP_SYSTEM_POLICY_TYPE): Ditto. - (GetProcessDEPPolicy, GetSystemDEPPolicy, SetProcessDEPPolicy): Ditto. - -2008-10-09 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/mmsystem.h (sndAlias): Correct GCC4 warning. - -2008-10-04 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/shellapi.h (NOTIFYICON_VERSION_4): Define. - -2008-09-25 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/vfw.h (capSendMessage): Rename to __capSendMessage. - -2008-09-24 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW, - WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD, - WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW, - WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM, - WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT, - WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW, - WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW, - WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA, - WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA, - WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA, - WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA, - WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT, - WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE, - WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT, - WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY, - WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS, - WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP, - WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP, - WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW, - WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT, - WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME, - WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW, - WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE, - WM_CAP_SET_CALLBACK_CAPCONTROL): Define using WM_USER. - (capSendMessage): Don't undef. - -2008-09-21 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * incude/sspi.h: include subauth.h to fix issue of UNICODE_STRING being - undefined. - -2008-09-13 mega-squall <mega-squall@users.sf.net> - - * include/winnt.h (SUBLANG_BENGALI_INDIA, SUBLANG_PUNJABI_INDIA, - SUBLANG_ROMANIAN_ROMANIA): Correct definition. - (SUBLANG_BENGALI_BANGLADESH, SUBLANG_PUNJABI_PAKISTAN, - SUBLANG_ROMANIAN_MOLDOVA): Define. - -2008-09-11 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/shlwapi.h (ASSOCSTR): Update enum. - -2008-09-07 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.12. - * Makefile.in: Ditto. - -2008-09-07 Michael Hentschel <mikeh42@users.sourceforge.net> - - * include/shlwapi.h (STIF_DEFAULT, STIF_SUPPORT_HEX): Define. - -2008-09-07 alsemm <alsemm@users.sourceforge.net> - - * include/mlang.h (IMLangFontLink2::MapFont): Fix definition. - -2008-09-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ws2tcpip.h (IPV6_MREQ): Fix typo. - Thanks to Richard Hughes for report. - -2008-09-06 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * Makefile.in: Adjust to new naming standard for MinGW while maintaining old - naming standard for Cygwin. - -2008-08-30 Bo Yang <techrazy@users.sourceforge.net> - - * include/sspi.h: Fix PSecurityFunctionTableW structure. - -2008-08-29 Andy Grover <andy.grover@oracle.com> - - * include/ddk/scsi.h: Define READ_TOC formats. - * lib/ddk/scsiport.def (ScsiPortGetDeviceBase): Fix export. - -2008-08-29 Andy Grover <andy.grover@oracle.com> - - * include/ddk/ndis.h (NDIS_MINIPORT_MAJOR_VERSION, NDIS_MINIPORT_MINOR_VERSION, - struct NDIS_TASK_OFFLOAD_HEADER, PROTOCOL_RESERVED_SIZE_IN_PACKET, - NdisGetFirstBufferFromPacketSafe, NdisMIndicateReceivePacket, - NdisSetPacketPoolProtocolId, NdisMInitializeTimer, NdisMSetPeriodicTimer, - NdisMCancelTimer): Define. - (enum NDIS_ENCAPSULATION, struct NDIS_ENCAPSULATION_FORMAT): move in file. - (struct _NDIS_PACKET): Define using _ANONYMOUS_UNION and ANONYMOUS_STRUCT to - eliminate warnings. - (NdisReinitializePacket): Rename from NdisReinitializePacketCounts. - * lib/ddk/ndis.def (NdisInitAnsiString, NdisInitUnicodeString, NdisMCancelTimer, - NdisMInitializeTimer, NdisMSetPeriodicTimer, NdisSetPacketPoolProtocolId): - Export. - -2008-08-29 Andy Grover <andy.grover@oracle.com> - - * include/ddk/winddk.h (RtlStringCbCopyA, RtlStringCbPrintfA, - RtlStringCbVPrintfA): define in terms of POSIX string functions. - -2008-08-29 Andy Grover <andy.grover@oracle.com> - - * include/ddk/winddk.h (KeRaiseIrql): Define. - (KfRaiseIrql, KfLowerIrql): remove incorrect definitions. - -2008-08-29 Andy Grover <andy.grover@oracle.com> - - * include/ddk/winddk.h (KeFlushQueuedDpcs, KeMemoryBarrier): Define. - (KeGetCurrentProcessorNumber): Fix incorrect member reference. - (InterlockedIncrement, InterlockedDecrement): fix warning. - * lib/ddk/ntoskrnl.def (KeFlushQueuedDpcs, KeMemoryBarrier): Export. - (KeNumberProcessors): Export. - -2008-08-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shlwapi.h (ASSOCF_INIT_NOREMAPCLSID, ASSOCF_INIT_BYEXENAME, - ASSOCF_OPEN_BYEXENAME, ASSOCF_INIT_DEFAULTTOSTAR, - ASSOCF_INIT_DEFAULTTOFOLDER, ASSOCF_NOUSERSETTINGS, ASSOCF_NOTRUNCATE, - ASSOCF_VERIFY, ASSOCF_REMAPRUNDLL, ASSOCF_NOFIXUPS, ASSOCF_IGNOREBASECLASS, - ASSOCF_INIT_IGNOREUNKNOWN): Define. - -2008-08-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/commctrl.h (LVN_MARQUEEBEGIN): Define. - - Thanks to Tim Kosse <botg at users dot sf dot net>. - -2008-08-22 Bo Yang <techrazy@users.sourceforge.net> - - * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION, - DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION): Correct. - * include/winnt.h (OWNER_SECURITY_INFORMATION, GROUP_SECURITY_INFORMATION, - DACL_SECURITY_INFORMATION, SACL_SECURITY_INFORMATION, - LABEL_SECURITY_INFORMATION, UNPROTECTED_SACL_SECURITY_INFORMATION, - UNPROTECTED_DACL_SECURITY_INFORMATION, PROTECTED_SACL_SECURITY_INFORMATION, - PROTECTED_DACL_SECURITY_INFORMATION): Define. - -2008-08-19 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/wtsapi32.h (_WTS_INFO_CLASS, _WTS_CONNECTSTATE_CLASS, - WTSQuerySessionInformation, WTSFreeMemory): Define. - -2008-07-25 Bo Yang <techrazy@users.sourceforge.net> - - * lib/gdi32.def (SetLayout): Export. - -2008-07-25 Bo Yang <techrazy@users.sourceforge.net> - - * include/wincrypt.h (struct _CRYPT_KEY_PROV_PARAM, - struct _CRYPT_KEY_PROV_INFO, CertGetCertificateContextProperty, - CryptEnumKeyIdentifierProperties, CryptAcquireCertificatePrivateKey, - CertCreateCertificateContext, CryptGetKeyIdentifierProperty, - CertSetCertificateContextProperty, CertCompareCertificateName, - CryptSetKeyIdentifierProperty, CertOIDToAlgId, CryptGetDefaultProviderA, - CryptGetDefaultProviderW and many corresponding macroes): Define. - * lib/crypt32.def (Export the above 11 functions): Export. - * include/winerror.h (CRYPT_E_NOT_FOUND and other crypt related - macroes): Define. - - -2008-07-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winuser.h (MENUGETOBJECTINFO, MNGO_NOINTERFACE, MNGO_NOERROR, - MNGOF_TOPGAP, MNGOF_BOTTOMGAP): Define. - -2008-07-24 techrazy <techrazy@users.sourceforge.net> - - * include/wingdi.h (OUT_PS_ONLY_PRECIS): Define. - -2008-07-24 Corinna Vinschen <corinna@vinschen.de> - - * include/lmaccess.h (struct _USER_INFO_4): Define. - (struct _USER_INFO_23): Define. - (struct _GROUP_INFO_3): Define. - -2008-07-14 Corinna Vinschen <corinna@vinschen.de> - - * include/iphlpapi.h (GetExtendedTcpTable): Add prototype. - * include/iprtrmib.h (TCP_TABLE_CLASS, MIB_TCPROW_OWNER_PID, - MIB_TCPTABLE_OWNER_PID, MIB_TCP6ROW_OWNER_PID, - MIB_TCP6TABLE_OWNER_PID): Define. - * lib/iphlpapi.def (GetExtendedTcpTable): Export. - -2008-06-25 Brandon Sneed <nivenh@sourceware.org> - - * include/winbase.h (GetProcessHandleCount, GetSystemRegistryQuota, - GetThreadIOPendingFlag): Modified to rely on _WIN32_WINNT 0x0501 instead - of 0x0502. - Bug reported by Thomas Denk. - -2008-06-25 Brandon Sneed <nivenh@sourceware.org> - - * include/winbase.h (InterlockedIncrement, InterlockedDecrement, - InterlockedCompareExchange, InterlockedExchange, - InterlockedCompareExchangePointer, InterlockedExchangeAdd, - InterlockedExchangePointer): Modified from PLONG to LONG volatile *. - Bug reported by Erik Blake. - -2008-06-20 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/ddk/hal.def (HalTranslateBusAddress): Correct suffix. - * lib/ddk/ntoskrnl.def (MmAllocateContiguousMemory): Correct suffix. - Bug reported by Brian Hawley. - -2008-06-17 Corinna Vinschen <corinna@vinschen.de> - - * include/dsgetdc.h (DS_FORCE_REDISCOVERY, DS_FORCE_REDISCOVERY, - DS_DIRECTORY_SERVICE_REQUIRED, DS_DIRECTORY_SERVICE_PREFERRED, - DS_GC_SERVER_REQUIRED, DS_PDC_REQUIRED, DS_BACKGROUND_ONLY, - DS_IP_REQUIRED, DS_KDC_REQUIRED, DS_TIMESERV_REQUIRED, - DS_WRITABLE_REQUIRED, DS_GOOD_TIMESERV_PREFERRED, DS_AVOID_SELF, - DS_ONLY_LDAP_NEEDED, DS_IS_FLAT_NAME, DS_IS_DNS_NAME, - DS_RETURN_DNS_NAME, DS_RETURN_FLAT_NAME): Define. - (DsGetDcNameW, DsGetDcNameA): Declare. - (DsGetDcName): Define. - * lib/netapi32.def (DsGetDcNameA, DsGetDcNameW): Export. - -2008-05-28 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/commctrl.h (NMLVODSTATECHANGE): Define. - - Thanks to Tim Kosse <botg at users dot sf dot net>. - -2008-05-28 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/winnt.h (SUBLANG_TIBETAN_BHUTAN): Fix definition. - - Thanks to Nicola Di Nisio <nicoladinisio at users dot sf dot net>. - -2008-05-15 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (FILE_SEQUENTIAL_WRITE_ONCE): Define. - (FILE_SUPPORTS_TRANSACTIONS): Define. - -2008-05-01 Bart Oldeman <bartoldeman@users.sf.net> - - * include/winuser.h (DEVICE_NOTIFY_WINDOW_HANDLE, - DEVICE_NOTIFY_SERVICE_HANDLE): remove duplicate definition. - -2008-05-02 Ramiro Polla <ramiro@lisha.ufsc.br> - - * include/vfw.h (WM_CAP_SET_CALLBACK_ERRORA, WM_CAP_SET_CALLBACK_ERRORW, - WM_CAP_SET_CALLBACK_STATUS, WM_CAP_SET_CALLBACK_YIELD, - WM_CAP_SET_CALLBACK_FRAMEA, WM_CAP_SET_CALLBACK_FRAMEW, - WM_CAP_SET_CALLBACK_VIDEOSTREAM, WM_CAP_SET_CALLBACK_WAVESTREAM, - WM_CAP_GET_USER_DATA, WM_CAP_SET_USER_DATA, WM_CAP_DRIVER_CONNECT, - WM_CAP_DRIVER_DISCONNECT, WM_CAP_DRIVER_GET_NAMEA, WM_CAP_DRIVER_GET_NAMEW, - WM_CAP_DRIVER_GET_VERSIONA, WM_CAP_DRIVER_GET_VERSIONW, - WM_CAP_DRIVER_GET_CAPS, WM_CAP_FILE_SET_CAPTURE_FILEA, - WM_CAP_FILE_SET_CAPTURE_FILEW, WM_CAP_FILE_GET_CAPTURE_FILEA, - WM_CAP_FILE_GET_CAPTURE_FILEW, WM_CAP_FILE_ALLOCATE, WM_CAP_FILE_SAVEASA, - WM_CAP_FILE_SAVEASW, WM_CAP_FILE_SET_INFOCHUNK, WM_CAP_FILE_SAVEDIBA, - WM_CAP_FILE_SAVEDIBW, WM_CAP_EDIT_COPY, WM_CAP_SET_AUDIOFORMAT, - WM_CAP_GET_AUDIOFORMAT, WM_CAP_DLG_VIDEOFORMAT, WM_CAP_DLG_VIDEOSOURCE, - WM_CAP_DLG_VIDEODISPLAY, WM_CAP_GET_VIDEOFORMAT, WM_CAP_SET_VIDEOFORMAT, - WM_CAP_DLG_VIDEOCOMPRESSION, WM_CAP_SET_PREVIEW, WM_CAP_SET_OVERLAY, - WM_CAP_SET_PREVIEWRATE, WM_CAP_SET_SCALE, WM_CAP_GET_STATUS, - WM_CAP_SET_SCROLL, WM_CAP_GRAB_FRAME, WM_CAP_GRAB_FRAME_NOSTOP, - WM_CAP_SEQUENCE, WM_CAP_SEQUENCE_NOFILE, WM_CAP_SET_SEQUENCE_SETUP, - WM_CAP_GET_SEQUENCE_SETUP, WM_CAP_SET_MCI_DEVICEA, WM_CAP_SET_MCI_DEVICEW, - WM_CAP_GET_MCI_DEVICEA, WM_CAP_GET_MCI_DEVICEW, WM_CAP_STOP, WM_CAP_ABORT, - WM_CAP_SINGLE_FRAME_OPEN, WM_CAP_SINGLE_FRAME_CLOSE, WM_CAP_SINGLE_FRAME, - WM_CAP_PAL_OPENA, WM_CAP_PAL_OPENW, WM_CAP_PAL_SAVEA, WM_CAP_PAL_SAVEW, - WM_CAP_PAL_PASTE, WM_CAP_PAL_AUTOCREATE, WM_CAP_PAL_MANUALCREATE, - WM_CAP_SET_CALLBACK_CAPCONTROL, WM_CAP_SET_CALLBACK_ERROR, - WM_CAP_SET_CALLBACK_FRAME, WM_CAP_DRIVER_GET_NAME, - WM_CAP_DRIVER_GET_VERSION, WM_CAP_FILE_SET_CAPTURE_FILE, - WM_CAP_FILE_GET_CAPTURE_FILE, WM_CAP_FILE_SAVEAS, WM_CAP_FILE_SAVEDIB, - WM_CAP_SET_MCI_DEVICE, WM_CAP_GET_MCI_DEVICE, WM_CAP_PAL_OPEN, - WM_CAP_PAL_SAVE, capSetCallbackOnError, capSetCallbackOnStatus, - capSetCallbackOnYield, capSetCallbackOnFrame, capSetCallbackOnVideoStream, - capSetCallbackOnWaveStream, capGetUserData, capSetUserData, - capDriverConnect, capDriverDisconnect, capDriverGetName, - capDriverGetVersion, capDriverGetCaps, capFileSetCaptureFile, - capFileGetCaptureFile, capFileAlloc, capFileSaveAs, capFileSetInfoChunk, - capFileSaveDIB, capEditCopy, capSetAudioFormat, capGetAudioFormat, - capGetAudioFormatSize, capDlgVideoFormat, capDlgVideoSource, - capDlgVideoDisplay, capGetVideoFormat, capGetVideoFormatSize, - capSetVideoFormat, capDlgVideoCompression, capPreview, capOverlay, - capPreviewRate, capPreviewScale, capGetStatus, capSetScrollPos, - capGrabFrame, capGrabFrameNoStop, capCaptureSequence, - capCaptureSequenceNoFile, capCaptureSetSetup, capCaptureGetSetup, - capSetMCIDeviceName, capGetMCIDeviceName, capCaptureStop, capCaptureAbort, - capCaptureSingleFrameOpen, capCaptureSingleFrameClose, - capCaptureSingleFrame, capPaletteOpen, capPaletteSave, capPalettePaste, - capPaletteAuto, capPaletteManual, capSetCallbackOnCapControl): Define. - (CAPDRIVERCAPS, *LPCAPDRIVERCAPS, CAPINFOCHUNK, *LPCAPINFOCHUNK, CAPSTATUS, - *LPCAPSTATUS, CAPTUREPARMS, *LPCAPTUREPARMS, VIDEOHDR, *LPVIDEOHDR): typedef. - -2008-04-26 Yuval <uvman@users.sourceforge.net> - - * include/ntsecpkg.h (SECPKG_STATE_ENCRYPTION_PERMITTED, - SECPKG_STATE_STRONG_ENCRYPTION_PERMITTED, SECPKG_STATE_DOMAIN_CONTROLLER, - SECPKG_STATE_WORKSTATION, SECPKG_STATE_STANDALONE, - LSA_TOKEN_INFORMATION_TYPE, SECPKG_EXTENDED_INFORMATION_CLASS, - SECPKG_NAME_TYPE, SECPKG_PRIMARY_CRED, SECPKG_SUPPLEMENTAL_CRED, - SECPKG_SUPPLEMENTAL_CRED_ARRAY, SECPKG_PARAMETERS, - SECPKG_EVENT_DOMAIN_CHANGE, SECPKG_CLIENT_INFO, SecurityUserData, - SECPKG_GSS_INFO, SECPKG_CONTEXT_THUNKS, SECPKG_MUTUAL_AUTH_LEVEL, - SECPKG_CALL_INFO, SECPKG_EXTENDED_INFORMATION, PLSA_CALLBACK_FUNCTION, - *PLSA_CLIENT_REQUEST, LSA_SEC_HANDLE, SEC_THREAD_START, SEC_ATTRS, - *PLSA_REGISTER_CALLBACK, *PLSA_CREATE_LOGON_SESSION, - *PLSA_DELETE_LOGON_SESSION, *PLSA_ADD_CREDENTIAL, *PLSA_GET_CREDENTIALS, - *PLSA_DELETE_CREDENTIAL, *PLSA_ALLOCATE_LSA_HEAP, *PLSA_FREE_LSA_HEAP, - *PLSA_ALLOCATE_CLIENT_BUFFER, *PLSA_FREE_CLIENT_BUFFER, - *PLSA_COPY_TO_CLIENT_BUFFER, *PLSA_COPY_FROM_CLIENT_BUFFER, - *PLSA_IMPERSONATE_CLIENT, *PLSA_UNLOAD_PACKAGE, *PLSA_DUPLICATE_HANDLE, - *PLSA_SAVE_SUPPLEMENTAL_CREDENTIALS, *PLSA_CREATE_THREAD, - *PLSA_GET_CLIENT_INFO, *PLSA_REGISTER_NOTIFICATION, - *PLSA_CANCEL_NOTIFICATION, *PLSA_MAP_BUFFER, *PLSA_CREATE_TOKEN, - *PLSA_AUDIT_LOGON, *PLSA_CALL_PACKAGE, *PLSA_FREE_LSA_HEAP, - *PLSA_GET_CALL_INFO, *PLSA_CALL_PACKAGEEX, *PLSA_CREATE_SHARED_MEMORY, - *PLSA_ALLOCATE_SHARED_MEMORY, *PLSA_FREE_SHARED_MEMORY, - *PLSA_DELETE_SHARED_MEMORY, *PLSA_OPEN_SAM_USER, *PLSA_GET_USER_CREDENTIALS, - *PLSA_GET_USER_AUTH_DATA, *PLSA_CLOSE_SAM_USER, - *PLSA_CONVERT_AUTH_DATA_TO_TOKEN, *PLSA_CLIENT_CALLBACK, - *PLSA_UPDATE_PRIMARY_CREDENTIALS, *PLSA_GET_AUTH_DATA_FOR_USER, - *PLSA_CRACK_SINGLE_NAME, *PLSA_AUDIT_ACCOUNT_LOGON, - *PLSA_CALL_PACKAGE_PASSTHROUGH, SECPKG_DLL_FUNCTIONS, LSA_DISPATCH_TABLE, - LSA_SECPKG_FUNCTION_TABLE, *PLSA_AP_INITIALIZE_PACKAGE, *PLSA_AP_LOGON_USER, - *PLSA_AP_CALL_PACKAGE, *PLSA_AP_LOGON_TERMINATED, - *PLSA_AP_CALL_PACKAGE_UNTRUSTED, *PLSA_AP_CALL_PACKAGE_PASSTHROUGH, - *PLSA_AP_LOGON_USER_EX, *PLSA_AP_LOGON_USER_EX2, SpInitializeFn, - SpShutDownFn, SpGetInfoFn, SpAcceptCredentialsFn, - SpAcquireCredentialsHandleFn, SpQueryCredentialsAttributesFn, - SpFreeCredentialsHandleFn, SpSaveCredentialsFn, SpGetCredentialsFn, - SpDeleteCredentialsFn, SpInitLsaModeContextFn, SpAcceptLsaModeContextFn, - SpDeleteContextFn, SpApplyControlTokenFn, SpGetUserInfoFn, - SpGetExtendedInformationFn, SpQueryContextAttributesFn, SpAddCredentialsFn, - SpSetExtendedInformationFn, SpInstanceInitFn, SpInitUserModeContextFn, - SpMakeSignatureFn, SpVerifySignatureFn, SpSealMessageFn, SpUnsealMessageFn, - SpGetContextTokenFn, SpCompleteAuthTokenFn, SpFormatCredentialsFn, - SpMarshallSupplementalCredsFn, SpExportSecurityContextFn, - SpImportSecurityContextFn, SECPKG_FUNCTION_TABLE, - SECPKG_USER_FUNCTION_TABLE, *SpLsaModeInitializeFn, - *SpUserModeInitializeFn): Define. - * include/sspi.h (SECURITY_STRING): Define. - -2008-04-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/specstrings.h: Add more dummy defines. - -2008-04-22 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (SECURITY_MANDATORY_LABEL_AUTHORITY): Define. - (SECURITY_MANDATORY_UNTRUSTED_RID): Define. - (SECURITY_MANDATORY_LOW_RID): Define. - (SECURITY_MANDATORY_MEDIUM_RID): Define. - (SECURITY_MANDATORY_HIGH_RID): Define. - (SECURITY_MANDATORY_SYSTEM_RID): Define. - (SECURITY_MANDATORY_PROTECTED_PROCESS_RID): Define. - (SECURITY_MANDATORY_MAXIMUM_USER_RID): Define. - (SE_GROUP_INTEGRITY): Define. - (SE_GROUP_INTEGRITY_ENABLED): Define. - -2008-04-11 Corinna Vinschen <corinna@vinschen.de> - - * include/sddl.h (ConvertStringSidToSidA): Declare. - (ConvertStringSidToSidW): Declare. - (ConvertStringSidToSid): Define. - -2008-03-19 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/mprapi.h: Add guard for MprAdminAcceptReauthentication function - and MPR_INTERFACE_3 structure since they are available only in Windows - Server 2008 - - Thanks to crackedmind <crackedmind at sf dot net>. - -2008-02-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winnt.h: Update guard around KEY_WOW64_64KEY and KEY_WOW64_32KEY - definitions. - * include/winreg.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Remove. - -2008-02-23 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winnt.h (KEY_WOW64_64KEY, KEY_WOW64_32KEY): Define. - -2008-02-02 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/specstrings.h (IN, OUT, OPTIONAL): Remove. - * include/windef.h (IN, OUT, OPTIONAL): Define. - -2008-02-02 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/specstrings.h: new file, move pseudo modifiers from windef.h. - * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount, - __out, __out_ecount_part, __struct_bcount, __field_ecount_opt, - __out_bcount_opt): Move to specstrings.h. - -2008-01-30 Brandon Sneed <nivenh@sourceware.org> - - * lib/bthprops.def: new file, bluetooth imports. - -2008-01-30 Brandon Sneed <nivenh@sourceware.org> - - * include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount, - __out, __out_ecount_part, __struct_bcount, __field_ecount_opt, - __out_bcount_opt): Defined additional pseudo-modifiers. - -2008-01-29 Brandon Sneed <nivenh@sourceware.org> - * include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix. - (RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix, - dwTcpWindowSize, szPrerequisitePbk, szPrerequisiteEntry, dwRedialCount, - dwRedialPause. - -2008-01-29 Brandon Sneed <nivenh@sourceware.org> - - * include/winnt.h (SYSTEM_POWER_CONDITION): typedef. - * include/winuser.h (PBT_POWERSETTINGCHANGE, DEVICE_NOTIFY_WINDOW_HANDLE, - DEVICE_NOTIFY_SERVICE_HANDLE): define. - * include/winuser.h (LPCGUID, HPOWERNOTIFY, POWERBROADCAST_SETTING): typedefs. - * include/winuser.h (GUID_POWERSCHEME_PERSONALITY, GUID_MIN_POWER_SAVINGS, - GUID_MAX_POWER_SAVINGS, GUID_TYPICAL_POWER_SAVINGS, GUID_ACDC_POWER_SOURCE, - GUID_BATTERY_PERCENTAGE_REMAINING, GUID_IDLE_BACKGROUND_TASK, - GUID_SYSTEM_AWAYMODE, GUID_MONITOR_POWER_ON): added externs for GUIDs. - * include/winuser.h (RegisterPowerSettingNotification, - UnregisterPowerSettingNotification): Add prototypes. - * lib/user32.def: Added imports for the above prototypes. - * lib/Makefile.in: Added build support for power-uuid.c. - * lib/power-uuid.c: New file containing power GUID definitions. - -2008-01-29 Brandon Sneed <nivenh@sourceware.org> - - * include/ras.h (RAS_MaxDnsSuffix): define. - -2008-01-29 Brandon Sneed <nivenh@sourceware.org> - - * include/psapi.h (GetProcessImageFileNameA, GetProcessImageFileNameW): - Add prototypes. - * lib/psapi.def (GetProcessImageFileNameA@12, GetProcessImageFileNameW@12): - Add exports. - -2007-12-27 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.11. - * Makefile.in: Ditto. - -2007-12-11 Dave Korn <dave.korn@artimi.com> - - * include/wincrypt.h (PCRYPT_DECODE_PARA): Add missing typedef. - (CERT_POLICY_MAPPINGS_INFO): Move before CERT_POLICY_MAPPING. - -2007-12-03 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/wingdi.h: Change WINVER guard to _WIN32_WINNT. - -2007-12-03 techrazy <techrazy@users.sourceforge.net> - - * include/wingdi.h (NTM_NONNEGATIVE_AC, NTM_PS_OPENTYPE, NTM_TT_OPENTYPE, - NTM_MULTIPLEMASTER, NTM_TYPE1, NTM_DSIG): define. - -2007-11-21 Kevin Conaway <kevin_conaway@users.sourceforge.net> - - * include/wincrypt.h (CryptProtectData, CryptUnprotectData): define. - -2007-11-21 elsapo <elsapo@users.sourceforge.net> - - * include/wincrypt.h (CERT_NAME_STR_COMMA_FLAG, - CERT_NAME_STR_DISABLE_IE4_UTF8_FLAG, CERT_NAME_STR_ENABLE_UTF8_UNICODE_FLAG, - CMC_ADD_ATTRIBUTES, CMC_ADD_EXTENSIONS, X509_CERT_PAIR, - X509_CERTIFICATE_TEMPLATE, X509_CROSS_CERT_DIST_POINTS, CMC_DATA, - X509_NAME_CONSTRAINTS, X509_POLICY_CONSTRAINTS, X509_POLICY_MAPPINGS, - CMC_RESPONSE, CMC_STATUS, X509_ALGORITHM_IDENTIFIER, X509_ALTERNATE_NAME, - PKCS_ATTRIBUTE, X509_AUTHORITY_INFO_ACCESS, X509_AUTHORITY_KEY_ID, - X509_AUTHORITY_KEY_ID2, szOID_BASIC_CONSTRAINTS, X509_BASIC_CONSTRAINTS2, - X509_BIOMETRIC_EXT, X509_BITS, X509_CERT, X509_CERT_CRL_TO_BE_SIGNED, - X509_CERT_POLICIES, X509_CERT_REQUEST_TO_BE_SIGNED, X509_CERT_TO_BE_SIGNED, - X509_CHOICE_OF_TIME, PKCS_CONTENT_INFO, PKCS_CONTENT_INFO_SEQUENCE_OF_ANY, - X509_CRL_DIST_POINTS, RSA_CSP_PUBLICKEYBLOB, PKCS_CTL, X509_DSS_PARAMETERS, - X509_DSS_SIGNATURE, X509_ECC_SIGNATURE, X509_ENHANCED_KEY_USAGE, - X509_ENUMERATED, X509_EXTENSIONS, X509_INTEGER, X509_ISSUING_DIST_POINT, - X509_KEY_ATTRIBUTES, X509_KEY_USAGE, X509_KEY_USAGE_RESTRICTION, - X509_KEYGEN_REQUEST_TO_BE_SIGNED, X509_LOGOTYPE_EXT, - X509_MULTI_BYTE_INTEGER, X509_MULTI_BYTE_UINT, X509_NAME, X509_NAME_VALUE, - X509_OBJECT_IDENTIFIER, X509_OCTET_STRING, X509_PUBLIC_KEY_INFO, - PKCS_RC2_CBC_PARAMETERS, CNG_RSA_PUBLIC_KEY_BLOB, - PKCS_RSA_SSA_PSS_PARAMETERS, PKCS_RSAES_OAEP_PARAMETERS, - ECC_CMS_SHARED_INFO, X509_SEQUENCE_OF_ANY, PKCS7_SIGNER_INFO, - CMS_SIGNER_INFO, PKCS_SMIME_CAPABILITIES, PKCS_TIME_REQUEST, - X509_UNICODE_NAME, X509_UNICODE_NAME_VALUE, PKCS_UTC_TIME, - OCSP_SIGNED_REQUEST, OCSP_REQUEST, OCSP_RESPONSE, - OCSP_BASIC_SIGNED_RESPONSE, OCSP_BASIC_RESPONSE, CRL_REASON_UNSPECIFIED, - CRL_REASON_KEY_COMPROMISE, CRL_REASON_CA_COMPROMISE, - CRL_REASON_AFFILIATION_CHANGED, CRL_REASON_SUPERSEDED, - CRL_REASON_CESSATION_OF_OPERATION, CRL_REASON_CERTIFICATE_HOLD, - CRL_REASON_REMOVE_FROM_CRL, CRYPT_ENCODE_ALLOC_FLAG, - CRYPT_UNICODE_NAME_ENCODE_DISABLE_CHECK_TYPE_FLAG, - CRYPT_UNICODE_NAME_ENCODE_ENABLE_T61_UNICODE_FLAG, - CRYPT_UNICODE_NAME_ENCODE_ENABLE_UTF8_UNICODE_FLAG, - CRYPT_UNICODE_NAME_ENCODE_FORCE_UTF8_UNICODE_FLAG, - szOID_APPLICATION_CERT_POLICIES, szOID_APPLICATION_POLICY_CONSTRAINTS, - szOID_APPLICATION_POLICY_MAPPINGS, szOID_AUTHORITY_INFO_ACCESS, - szOID_AUTHORITY_KEY_IDENTIFIER, szOID_AUTHORITY_KEY_IDENTIFIER2, - X509_BASIC_CONSTRAINTS, szOID_BIOMETRIC_EXT, szOID_CERT_EXTENSIONS, - szOID_CERT_POLICIES, szOID_CERTIFICATE_TEMPLATE, szOID_CRL_NUMBER, - szOID_CROSS_CERT_DIST_POINTS, szOID_DELTA_CRL_INDICATOR, - szOID_ENROLLMENT_NAME_VALUE_PAIR, szOID_FRESHEST_CRL, - szOID_ISSUING_DIST_POINT, szOID_NAME_CONSTRAINTS, szOID_CRL_DIST_POINTS, - szOID_CRL_REASON_CODE, szOID_CRL_VIRTUAL_BASE, szOID_ECC_PUBLIC_KEY, - szOID_ECDSA_SPECIFIED, szOID_ENHANCED_KEY_USAGE, szOID_ISSUER_ALT_NAME, - szOID_ISSUER_ALT_NAME2, szOID_KEY_ATTRIBUTES, szOID_KEY_USAGE, - szOID_KEY_USAGE_RESTRICTION, szOID_LOGOTYPE_EXT, szOID_POLICY_CONSTRAINTS, - szOID_POLICY_MAPPINGS, szOID_RSA_SSA_PSS, szOID_RSAES_OAEP, - szOID_SUBJECT_ALT_NAME, szOID_SUBJECT_ALT_NAME2, - szOID_SUBJECT_KEY_IDENTIFIER, CMC_ADD_ATTRIBUTES_INFO, - PCMC_ADD_ATTRIBUTES_INFO, CMC_ADD_EXTENSIONS_INFO, PCMC_ADD_EXTENSIONS_INFO, - CERT_ALT_NAME_ENTRY, PCERT_ALT_NAME_ENTRY, CERT_ALT_NAME_INFO, - PCERT_ALT_NAME_INFO, CERT_NAME_VALUE, PCERT_NAME_VALUE, - CERT_POLICY_QUALIFIER_INFO, PCERT_POLICY_QUALIFIER_INFO, - CERT_POLICY_CONSTRAINTS_INFO, PCERT_POLICY_CONSTRAINTS_INFO, - CERT_POLICY_MAPPINGS_INFO, PCERT_POLICY_MAPPINGS_INFO, CERT_POLICY_MAPPING, - PCERT_POLICY_MAPPING, CryptDecodeObjectEx, CryptEncodeObject, - CryptEncodeObjectEx): define. - -2007-11-21 Brian Dessent <dessent@users.sourceforge.net> - - * include/winbase.h (CheckTokenMembership): define. - -2007-10-03 Jiri Malak <Jiri.Malak@iol.cz> - - * include/rpcndr.h: Missing NdrClientCall2 entry. - * lib/rpcrt4.def: Ditto. - -2007-10-03 Frank Fesevur <ffes@users.sourceforge.net> - * lib/scnsave.c: Multi-monitor support. - -2007-08-03 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.10. - * Makefile.in: Ditto. - -2007-08-02 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h (ReOpenFile): Add prototype. - * lib/kernel32.def (ReOpenFile@16): Add export. - -2007-07-31 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/wtsapi32.h (WTS_CURRENT_SESSION, WTSDisconnectSession): Define. - -2007-7-30 Martijn Wargers <martijnw22@users.sourceforge.net> - - * include/wingdi.h (GetTextExtentExPointI): Add prototype. - * lib/gdi32.def (GetTextExtentExPointI@28): Add export. - -2007-07-25 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wtypes.h (LPDECIMAL): Define. - (DECIMAL_NEG, DECIMAL_SETZERO): Move definitions. - -2007-07-18 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (SE_TRUSTED_CREDMAN_ACCESS_NAME): Define. - -2007-07-17 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (FILE_READ_ONLY_VOLUME): Define. - * include/ddk/ntifs.h (FILE_READ_ONLY_VOLUME): Define. - -2007-07-12 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winuser.h (FE_FONTSMOOTHINGSTANDARD, FE_FONTSMOOTHINGCLEARTYPE): - Define. - -2007-07-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/pbt.h (PBT_APMRESUMEAUTOMATIC) Define. - * include/winuser.h: (PBT_APMQUERYSUSPEND, PBT_APMQUERYSTANDBY, - PBT_APMQUERYSUSPENDFAILED, PBT_APMQUERYSTANDBYFAILED, - PBT_APMSUSPEND, PBT_APMSTANDBY, PBT_APMRESUMECRITICAL, - PBT_APMRESUMESUSPEND, PBT_APMRESUMESTANDBY, PBT_APMBATTERYLOW, - PBT_APMPOWERSTATUSCHANGE, PBT_APMOEMEVENT, PBT_APMRESUMEAUTOMATIC): - Sync with include/pbt.h. - -2007-07-12 Danny Smith <dannysmith@users.sourceforge.net> - - [mingw-Bugs-1751518] - * include/mshtml.h (IHTMLDocument2): Correct spelling of put_URL, - get_URL. - - [mingw-Bugs-1751565] - * include/basetyps.h (IID); Guard with __IID_DEFINED__. - - [mingw-Bugs-1751595] - * include/exdisp.h (DWebBrowserEvents2): Remove undocumented STDDISP - methods. - - Thanks to Yuji Kuwabara <yujikuwabara at sf dot net>. - -2007-07-10 Danny Smith <dannysmith@users.sourceforge.net> - - [mingw-Bugs-1750898] - * include/mmsystem.h (MIXERCONTROL): Correct UNICODE mapping. - Thanks to Yuji Kuwabara <yujikuwabara at sf dot net>. - -2007-07-09 Danny Smith <dannysmith@users.sourceforge.net> - - [mingw-Bugs-1749305] - * lib/kernel32.def (GetConsoleProcessList@8): Add export. - -2007-07-02 Przemek Czerkas <pczerkas@gmail.com> - - * include/shlobj.h: Add CSIDL_MYMUSIC and CSIDL_MYVIDEO. - -2007-07-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/oaidl.h: Include windows.h and ole2.h, - unless COM_NO_WINDOWS_H. - - [mingw-Bugs-1742130] - * include/oaidl.h (struct tagVARIANT): Add union members - LONGLONG * pllVal and ULONGLONG * pullVal. - -2007-07-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ws2tcpip.h (s6_addr32): Correct definition. - Thanks to Alfred E. Heggestad <aeh at db dot org> - -2007-05-23 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/secur32.def (InitSecurityInterfaceA, InitSecurityInterfaceW): Define. - - Thanks to Jim Marshall (jim dot marshall at wbemsolutions dot com) for - supplying the information. - -2007-05-19 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shellapi.h (NIN_POPUPOPEN, NIN_POPUPCLOSE): Define. - -2007-04-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support - Vista. - -2007-04-20 Matthias Miller <matthiasmiller@users.sourceforge.net> - - * include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN, - CRYPTPROTECT_LOCAL_MACHINE): Define. - -2007-04-15 Piotr Wyderski <piotr.wyderski@wp.pl> - - * include/winbase.h (SetInformationJobObject, QueryInformationJobObject): - Define. - -2007-03-30 Brian Dessent <brian@dessent.net> - - * lib/kernel32.def (CreateMemoryResourceNotification@4): Define. - -2007-03-25 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.9. - * Makefile.in: Ditto. - -2007-03-23 Corinna Vinschen <corinna@vinschen.de> - - * include/psapi.h (GetMappedFileName): Fix messed up checkin. - -2007-03-23 Matthew Gregan <kinetik@flim.org> - - * include/psapi.h (GetMappedFileName): Rename from GetMappedFilenameEx. - -2007-03-06 Brandon Sneed <brandon@oqo.com> - - * include/setupapi.h: Added SetupConfigureWmiFromInfSectionA - Added SetupConfigureWmiFromInfSectionW - Added SetupConfigureWmiFromInfSection define to unicode and non-unicode sections - - * lib/setupapi.def: Added exports for SetupConfigureWmiFromInfSectionA and W - - * include/winuser.h: Added PBT_APMQUERYSUSPEND - Added PBT_APMQUERYSTANDBY - Added PBT_APMQUERYSUSPENDFAILED - Added PBT_APMQUERYSTANDBYFAILED - Added PBT_APMSUSPEND - Added PBT_APMSTANDBY - Added PBT_APMRESUMECRITICAL - Added PBT_APMRESUMESUSPEND - Added PBT_APMRESUMESTANDBY - Added PBT_APMBATTERYLOW - Added PBT_APMPOWERSTATUSCHANGE - Added PBT_APMOEMEVENT - Added PBT_APMRESUMEAUTOMATIC - - * include/wtsapi32.h: New file - - * include/wingdi.h: Added DM_DISPLAYORIENTATION define for use with DMDO_* defines - -2007-03-05 Jan Nijtmans <nijtmans@users.sourceforge.net> - - * include/ddeml.h (DdeCreateStringHandleA, DdeCreateStringHandleW): Switch - argument to constant. - -2007-02-18 Jiri Malak <jiri.malak@iol.cz> - - * include/windef.h [WATCOM]: Fix !NONAMELESSUNION defines. - * include/winnt.h [WATCOM] (GetCurrentFiber, GetFiberData): - Add prototypes. - [WATCOM] (NtCurrentTeb): Add protype and inline asm definition. - -2007-02-18 Vesa Jääskeläinen <chaac@users.sourceforge.net> - - * lib/user32.def (InternalGetWindowText): Add stub. - -2007-02-11 Daniel Atallah <datallah@users.sourceforge.net> - - * include/winnt.h (LANG_SERBIAN_NEUTRAL, LANG_BOSNIAN, - LANG_BOSNIAN_NEUTRAL): Define. - -2007-02-11 Daniel Schlyder <thrug@users.sourceforge.net> - - * include/winuser.h: Add guards around TITLEBARINFO and - GetTitleBarInfo(). - -2007-01-11 Gisle Vanem <giva@users.sourceforge.net> - - * include/winbase.h (struct _OVERLAPPED): Change type of - Internal, InternalHigh members to ULONG_PTR. - (PAPCFUNC): Change DWORD parameter to ULONG_PTR. - (CreateIoCompletionPort): Likewise. - (PostQueuedCompletionStatus): Likewise. - (QueueUserAPC): Likewise. - -2007-01-06 Pierre A. Humblet <Pierre.Humblet@ieee.org> - - * include/windns.h (DNS_TYPE_RP, DNS_TYPE_AFSDB, DNS_TYPE_X25, - DNS_TYPE_ISDN, DNS_TYPE_RT, DNS_TYPE_NSAP, DNS_TYPE_NSAPPTR, - DNS_TYPE_SIG, DNS_TYPE_KEY, DNS_TYPE_PX, DNS_TYPE_GPOS, - DNS_TYPE_AAAA, DNS_TYPE_LOC, DNS_TYPE_NXT, DNS_TYPE_EID, - DNS_TYPE_NIMLOC, DNS_TYPE_SRV, DNS_TYPE_ATMA, DNS_TYPE_NAPTR, - DNS_TYPE_KX, DNS_TYPE_CERT, DNS_TYPE_A6, DNS_TYPE_DNAME, - DNS_TYPE_SINK, DNS_TYPE_OPT, DNS_TYPE_UINFO, DNS_TYPE_UID, - DNS_TYPE_GID, DNS_TYPE_UNSPEC, DNS_TYPE_ADDRS, DNS_TYPE_TKEY, - DNS_TYPE_TSIG, DNS_TYPE_IXFR, DNS_TYPE_AXFR, DNS_TYPE_MAILB, - DNS_TYPE_MAILA, DNS_TYPE_ALL, DNS_TYPE_ANY): Add enum values. - -2006-11-21 Danny Smith <dannysmith@users.sourceforge.net> - - * Makefile.in: Add aclocal.m4 to source release. - -2006-11-18 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.8. - * Makefile.in: Ditto. - -2006-11-13 Daniel Schlyder <thrug@users.sourceforge.net> - - * include/winnt.h (VER_SUITE_EMBEDDEDNT, VER_SUITE_SINGLEUSERTS, - VER_SUITE_STORAGE_SERVER, VER_SUITE_COMPUTE_SERVER): Define. - - * include/winuser.h (SM_STARTER, SM_SERVERR2): Define. - -2006-11-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (LR_DEFAULTSIZE): Remove duplicate. - - * include/winnt.h (GetCurrentFiber): Remove extern declaration. Make - inline static. - (GetFiberData): Likewise. - * lib/kernel32.c: Remove. - * lib/Makefile.in: Remove reference to kernel32.[co]. - -2006-10-31 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (SE_RELABEL_NAME): Define. - (SE_INCREASE_WORKING_SET_NAME): Define. - (SE_TIME_ZONE_NAME): Define. - (SE_CREATE_SYMBOLIC_LINK_NAME): Define. - -2006-10-31 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (IO_REPARSE_TAG_SYMLINK): Define. - (struct _REPARSE_DATA_BUFFER): Add missing Flags field to - SymbolicLinkReparseBuffer substructure. - -2006-10-29 Daniel Atallah <datallah@users.sourceforge.net> - - * lib/ws2_32.def (WSANSPIoctl): Add to lib. - -2006-10-26 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/Makefile.in: Fix order for 'all' rule. - -2006-10-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (LR_DEFAULTSIZE, LR_VGACOLOR): Define. - -2006-10-05 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winreg.h (RegDeleteKeyEx{A|W}): Add prototype and UNICODE - mappings. - (KEY_WOW64_32KEY, KEY_WOW64_64KEY): Define. - * lib/advapi.def (RegDeleteKeyEx{A|W}): Export. - -2006-10-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/rpc.h: Add whitespace. - * include/winnt.h (C_ASSERT): Define. - -2006-10-04 Danny Smith <dannysmith@users.sourceforge.net> - - [mingw-Bugs-1568067] - * include/winuser.h: (DISP_CHANGE_BADDUALVIEW): Define. - * include/wingdi.h: (DM_POSITION): Define. - -2006-10-03 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/rpcrt4.def: Remove "_imp__"-prefixed export symbols. - * lib/user32.def: Likewise. - -2006-09-11 Chris Sutcliffe <ir0n3h4d@users.sourceforge.net> - - * lib/Makefile.in: fix typo. - * lib/ddk/Makefile.in: fix typo. - * lib/directx/Makefile.in: fix typo. - - Thanks to Keith Marshall (keithmarshall at users dot sourceforge dot net) - for pointing it out. - -2006-09-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * Makefile.in: Remove files from lib directory with distclean target - -2006-09-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winuser.h (CS_DROPSHADOW): Define. - -2006-09-08 Michael Gerdau <mgdde@users.sourceforge.net> - - * include/uxtheme.h: (TMT_GRADIENTCOLOR4, TMT_GRADIENTCOLOR5, - TMT_SHADOWCOLOR, TMT_GLOWCOLOR, TMT_TEXTBORDERCOLOR, - TMT_TEXTSHADOWCOLOR, TMT_GLYPHTEXTCOLOR, TMT_GLYPHTRANSPARENTCOLOR, - TMT_FILLCOLORHINT, TMT_BORDERCOLORHINT, TMT_ACCENTCOLORHINT): - - Increase each constant by 1. - -2006-09-07 Danny Smith <dannysmith@users.sourceforge.net> - - [mingw-Bugs-1553275] - * include/wingdi.h (SetLayout): Add prototype. - (GetLayout): Likewise. - -2006-09-02 Danny Smith <dannysmith@users.sourceforge.net> - - [mingw-Bugs-1550139] - * include/oleauto.h (GetRecordInfoFromTypeInfo): Add prototype. - Tanks to: Samit Basu <samitbasu at sf dot net> - (GetRecordInfoFromGuids): Add prototype. - -2006-09-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h: Add comment about 'missing' SEM flag. - -2006-08-30 Corinna Vinschen <corinna@vinschen.de> - - * configure.in: Substitute with_cross_host in depending files. - * configure: Regenerate. - * lib/Makefile.in: Add with_cross_host to allow more granular checks. - Set installation directories accordingly. - * lib/ddk/Makefile.in: Ditto. - * lib/directx/Makefile.in: Ditto. - -2006-08-10 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/wtsapi32.def (WTSGetActiveConsoleSessionId). Move from here... - * lib/kernel32.def (WTSGetActiveConsoleSessionId). ...to here. - Bug reported by: <macleone at users dot sf dot net> - -2006-07-29 Danny Smith <dannysmith@users.sourceforge.net> - - Update some more IMAGE relocation type indicators - to PECOFF v8 (May, 2006) specs. - - * include/winnt.h (IMAGE_REL_SH3_ABSOLUTE, - IMAGE_REL_SH3_DIRECT16, IMAGE_REL_SH3_DIRECT32, - IMAGE_REL_SH3_DIRECT8, IMAGE_REL_SH3_DIRECT8_WORD, - IMAGE_REL_SH3_DIRECT8_LONG, IMAGE_REL_SH3_DIRECT4, - IMAGE_REL_SH3_DIRECT4_WORD, IMAGE_REL_SH3_DIRECT4_LONG, - IMAGE_REL_SH3_PCREL8_WORD, IMAGE_REL_SH3_PCREL8_LONG, - IMAGE_REL_SH3_PCREL12_WORD, IMAGE_REL_SH3_STARTOF_SECTION, - IMAGE_REL_SH3_SIZEOF_SECTION, IMAGE_REL_SH3_SECTION, - IMAGE_REL_SH3_SECREL, IMAGE_REL_SH3_DIRECT32_NB, - IMAGE_REL_SH3_GPREL4_LONG, IMAGE_REL_SH3_TOKEN, - IMAGE_REL_SHM_PCRELPT, IMAGE_REL_SHM_REFLO, - IMAGE_REL_SHM_REFHALF, IMAGE_REL_SHM_RELLO, - IMAGE_REL_SHM_RELHALF, IMAGE_REL_SHM_PAIR, - IMAGE_REL_SHM_NOMODE): Add defines. - - (IMAGE_REL_M32R_ABSOLUTE, IMAGE_REL_M32R_ADDR32, - IMAGE_REL_M32R_ADDR32NB, IMAGE_REL_M32R_ADDR24, - IMAGE_REL_M32R_GPREL16, IMAGE_REL_M32R_PCREL24, - IMAGE_REL_M32R_PCREL16, IMAGE_REL_M32R_PCREL8, - IMAGE_REL_M32R_REFHALF, IMAGE_REL_M32R_REFHI, - IMAGE_REL_M32R_REFLO, IMAGE_REL_M32R_PAIR, - IMAGE_REL_M32R_SECTION, IMAGE_REL_M32R_SECREL, - IMAGE_REL_M32R_TOKEN): Add defines. - - (IMAGE_REL_MIPS_JMPADDR16): Add define. - -2006-07-27 Danny Smith <dannysmith@users.sourceforge.net> - - Update some IMAGE flags to PECOFF v8 (May, 2006) specs. - * include/winnt.h (IMAGE_FILE_MACHINE_AM33, - IMAGE_FILE_MACHINE_ARM, IMAGE_FILE_MACHINE_EBC, - IMAGE_FILE_MACHINE_M32R, IMAGE_FILE_MACHINE_MIPS16, - IMAGE_FILE_MACHINE_MIPSFPU, IMAGE_FILE_MACHINE_MIPSFPU16, - IMAGE_FILE_MACHINE_POWERPCFP, IMAGE_FILE_MACHINE_R4000, - IMAGE_FILE_MACHINE_SH3, IMAGE_FILE_MACHINE_SH3DSP, - IMAGE_FILE_MACHINE_SH4, IMAGE_FILE_MACHINE_SH5, - IMAGE_FILE_MACHINE_THUMB, IMAGE_FILE_MACHINE_WCEMIPSV2): - Add defines. - - (IMAGE_SUBSYSTEM_EFI_APPLICATION, - IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER, - IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER, IMAGE_SUBSYSTEM_EFI_ROM): - Add defines. - - (IMAGE_SYM_CLASS_CLR_TOKEN): Add define. - - (IMAGE_DLL_CHARACTERISTICS_DYNAMIC_BASE, - IMAGE_DLL_CHARACTERISTICS_FORCE_INTEGRITY, - IMAGE_DLL_CHARACTERISTICS_NX_COMPAT, - IMAGE_DLLCHARACTERISTICS_NO_ISOLATION, IMAGE_DLLCHARACTERISTICS_NO_SEH, - IMAGE_DLLCHARACTERISTICS_NO_BIND, - IMAGE_DLLCHARACTERISTICS_TERMINAL_SERVER_AWARE): Add defines. - - (IMAGE_REL_I386_TOKEN, IMAGE_REL_I386_SECREL7): Add defines. - - (IMAGE_REL_AMD64_ABSOLUTE, IMAGE_REL_AMD64_ADDR64, - IMAGE_REL_AMD64_ADDR32, IMAGE_REL_AMD64_ADDR32NB, IMAGE_REL_AMD64_REL32, - IMAGE_REL_AMD64_REL32_1, IMAGE_REL_AMD64_REL32_2, - IMAGE_REL_AMD64_REL32_3, IMAGE_REL_AMD64_REL32_4, - IMAGE_REL_AMD64_REL32_5, IMAGE_REL_AMD64_SECTION, - IMAGE_REL_AMD64_SECREL, IMAGE_REL_AMD64_SECREL7, IMAGE_REL_AMD64_TOKEN, - IMAGE_REL_AMD64_SREL32, IMAGE_REL_AMD64_PAIR, IMAGE_REL_AMD64_SSPAN32): - Add defines. - - (IMAGE_REL_IA64_ABSOLUTE, IMAGE_REL_IA64_IMM14, IMAGE_REL_IA64_IMM22, - IMAGE_REL_IA64_IMM64, IMAGE_REL_IA64_DIR32, IMAGE_REL_IA64_DIR64, - IMAGE_REL_IA64_PCREL21B, IMAGE_REL_IA64_PCREL21M, - IMAGE_REL_IA64_PCREL21F, IMAGE_REL_IA64_GPREL22, IMAGE_REL_IA64_LTOFF22, - IMAGE_REL_IA64_SECTION, IMAGE_REL_IA64_SECREL22, - IMAGE_REL_IA64_SECREL64I, IMAGE_REL_IA64_SECREL32, - IMAGE_REL_IA64_DIR32NB, IMAGE_REL_IA64_SREL14, IMAGE_REL_IA64_SREL22, - IMAGE_REL_IA64_SREL32, IMAGE_REL_IA64_UREL32, IMAGE_REL_IA64_PCREL60X, - IMAGE_REL_IA64_PCREL60B, IMAGE_REL_IA64_PCREL60F, - IMAGE_REL_IA64_PCREL60I, IMAGE_REL_IA64_PCREL60M, - IMAGE_REL_IA64_IMMGPREL64, IMAGE_REL_IA64_TOKEN, IMAGE_REL_IA64_GPREL32, - IMAGE_REL_IA64_ADDEND): Add defines. - - (IMAGE_SCN_GPREL): Add define. - -2006-07-25 Danny Smith <dannysmith@users.sourceforge.net> - - * include/aclui.h: Replace __OBJC__ guard with _OBJC_NO_COM. - * include/basetyps.h: Likewise. - (_COM_interface): New define. - (interface): Define to _COM_interface, conditional on !__OBJC__. - Replace 'interface' with '_COM_interface', throughout. - * include/comcat.h: Replace 'interface' with '_COM_interface', throughout. - * include/commdlg.h: Replace __OBJC__ guard with _OBJC_NO_COM. - * include/docobj.h: Replace 'interface' with '_COM_interface', throughout. - * include/mshtml.h: Likewise. - * include/oaidl.h: Likewise. - * include/objfwd.h: Likewise. - * include/objidl.h: Likewise. - * include/ocidl.h: Likwise. - * include/olectl.h: Likewise. - * include/oleidl.h: Likewise. - * include/shlobj.h: Likewise. - * include/shlwapi.h: Replace __OBJC__ guard with _OBJC_NO_COM. - * include/vfw.h: Likewise. - * include/windows.h. Likewise. Add comment. - * include/directx/d3d9.h: Replace 'interface' with '_COM_interface', - throughout. - - * lib/test.c: Replace __OBJC__ guard with _OBJC_NO_COM. - Add test for conflict with '@interface' - -2006-07-22 ipsoner <ipsoner@users.sourceforge.net> - - * include/wincrypt.h (szOID_RSA, szOID_PKCS, szOID_RSA_HASH, - szOID_RSA_ENCRYPT, szOID_PKCS_1, szOID_PKCS_2, szOID_PKCS_3, - szOID_PKCS_4, szOID_PKCS_5, szOID_PKCS_6, szOID_PKCS_7, - szOID_PKCS_8, szOID_PKCS_9, szOID_PKCS_10, szOID_PKCS_12, - szOID_RSA_MD2, szOID_RSA_MD4, szOID_RSA_MD5, szOID_RSA_RSA, - szOID_RSA_MD2RSA, szOID_RSA_MD4RSA, szOID_RSA_MD5RSA, - szOID_RSA_SHA1RSA, szOID_RSA_SETOAEP_RSA, szOID_RSA_DH, - szOID_RSA_data, szOID_RSA_signedData, szOID_RSA_envelopedData, - szOID_RSA_signEnvData, szOID_RSA_digestedData, szOID_RSA_hashedData, - szOID_RSA_encryptedData, szOID_RSA_emailAddr, szOID_RSA_unstructName, - szOID_RSA_contentType, szOID_RSA_messageDigest, szOID_RSA_signingTime, - szOID_RSA_counterSign, szOID_RSA_challengePwd, szOID_RSA_unstructAddr, - szOID_RSA_extCertAttrs, szOID_RSA_SMIMECapabilities, - szOID_RSA_preferSignedData, szOID_RSA_RC2CBC, szOID_RSA_RC4, - szOID_RSA_DES_EDE3_CBC, szOID_RSA_RC5_CBCPad, szOID_ANSI_x942, - szOID_ANSI_x942_DH, szOID_X957, szOID_X957_DSA, szOID_DATA STRUCTURE, - szOID_DS, szOID_DSALG, szOID_DSALG_CRPT, szOID_DSALG_HASH, - szOID_DSALG_SIGN, szOID_DSALG_RSA, szOID_OIW, szOID_OIWSEC, - szOID_OIWSEC_md4RSA, szOID_OIWSEC_md5RSA, szOID_OIWSEC_md4RSA2, - szOID_OIWSEC_desECB, szOID_OIWSEC_desCBC, szOID_OIWSEC_desOFB, - szOID_OIWSEC_desCFB, szOID_OIWSEC_desMAC, szOID_OIWSEC_rsaSign, - szOID_OIWSEC_dsa, szOID_OIWSEC_shaDSA, szOID_OIWSEC_mdc2RSA, - szOID_OIWSEC_shaRSA, szOID_OIWSEC_dhCommMod, szOID_OIWSEC_desEDE, - szOID_OIWSEC_sha, szOID_OIWSEC_mdc2, szOID_OIWSEC_dsaComm, - szOID_OIWSEC_dsaCommSHA, szOID_OIWSEC_rsaXchg, szOID_OIWSEC_keyHashSeal, - szOID_OIWSEC_md2RSASign, szOID_OIWSEC_md5RSASign, szOID_OIWSEC_sha1, - szOID_OIWSEC_dsaSHA1, szOID_OIWSEC_dsaCommSHA1, szOID_OIWSEC_sha1RSASign, - szOID_OIWDIR, szOID_OIWDIR_CRPT, szOID_OIWDIR_HASH, szOID_OIWDIR_SIGN, - szOID_OIWDIR_md2, szOID_OIWDIR_md2RSA, szOID_INFOSEC, - szOID_INFOSEC_sdnsSignature, szOID_INFOSEC_mosaicSignature, - szOID_INFOSEC_sdnsConfidentiality, szOID_INFOSEC_mosaicConfidentiality, - szOID_INFOSEC_sdnsIntegrity, szOID_INFOSEC_mosaicIntegrity, - szOID_INFOSEC_sdnsTokenProtection, szOID_INFOSEC_mosaicTokenProtection, - szOID_INFOSEC_sdnsKeyManagement, szOID_INFOSEC_mosaicKeyManagement, - szOID_INFOSEC_sdnsKMandSig, szOID_INFOSEC_mosaicKMandSig, - szOID_INFOSEC_SuiteASignature, szOID_INFOSEC_SuiteAConfidentiality, - szOID_INFOSEC_SuiteAIntegrity, szOID_INFOSEC_SuiteATokenProtection, - szOID_INFOSEC_SuiteAKeyManagement, szOID_INFOSEC_SuiteAKMandSig, - szOID_INFOSEC_mosaicUpdatedSig, szOID_INFOSEC_mosaicKMandUpdSig, - szOID_INFOSEC_mosaicUpdatedInteg, szOID_PKIX_NO_SIGNATURE, - szOID_COMMON_NAME, szOID_COUNTRY_NAME, szOID_DEVICE_SERIAL_NUMBER, - szOID_DOMAIN_COMPONENT, szOID_RSA_emailAddr, szOID_GIVEN_NAME, - szOID_INITIALS, szOID_LOCALITY_NAME, szOID_ORGANIZATION_NAME, - szOID_ORGANIZATIONAL_UNIT_NAME, szOID_STATE_OR_PROVINCE_NAME, - szOID_STREET_ADDRESS, szOID_SUR_NAME, szOID_TITLE, szOID_RSA_unstructAddr, - szOID_RSA_unstructName, szOID_BASIC_CONSTRAINTS2, - CERT_BASIC_CONSTRAINTS2_INFO, CRYPT_ENCODE_PARA,CertDuplicateStore, - CertEnumCertificatesInStore, CertDuplicateCertificateContext, - CertGetNameStringA, CertGetNameStringW, CertGetNameString, PFXIsPFXBlob, - CertFindExtension, CryptDecodeObject, CertAddCertificateContextToStore, - CertCompareCertificate, PFXVerifyPassword, PFXImportCertStore, - CertDeleteCertificateFromStore): Define. - * lib/crypt32.def (CertDuplicateStore, CertEnumCertificatesInStore, - CertDuplicateCertificateContext, CertGetNameStringA, CertGetNameStringW, - CertGetNameString, PFXIsPFXBlob, CertFindExtension, CryptDecodeObject, - CertAddCertificateContextToStore, CertCompareCertificate, - PFXVerifyPassword, PFXImportCertStore, CertDeleteCertificateFromStore): - Define. - -2006-07-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/uuid.c: Remove. - -2006-07-20 Elias Naur <elias_naur@users.sourceforge.net> - - * include/devguid.h: Add new file with missing GUID_DEVCLASS_* - declarations. They were extracted from the registry with a script. - * lib/devguid.c: Add new file with the implementation of the - missing GUIDs. - * lib/Makefile.in: Add devguid.c to UUID_SOURCES and UUID_OBJS. - -2006-07-19 Elias Naur <elias_naur@users.sourceforge.net> - - * include/winuser.h (WM_INPUT): Add missing Raw Input - notification define. - (RID_DEVICE_INFO_MOUSE, RID_DEVICE_INFO_KEYBOARD, - RID_DEVICE_INFO_HID, RID_DEVICE_INFO): Define Raw Input structs - -2006-07-19 Danny Smith <dannysmith@users.sourceforge.net> - - [mingw-Bugs-1525021] - * iptypes.h (IP_ADAPTER_ANYCAST_ADDRESS): Fix NONAMELESSUNION warnings. - (IP_ADAPTER_MULTICAST_ADDRESS): Likewise. - (IP_ADAPTER_UNICAST_ADDRESS): Likewise. - (IP_ADAPTER_DNS_SERVER_ADDRESS): Likewise. - (IP_ADAPTER_ADAPTER_PREFIX): Likewise. - (IP_ADAPTER_ADDRESSES): Likewise. - -2006-06-13 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol, - CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol, - CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Remove. Moved to - extras-uuid.c. - * lib/extras-uuid.c (CLSID_FileProtocol, CLSID_FtpProtocol, CLSID_GopherProtocol, - CLSID_HttpProtocol, CLSID_HttpSProtocol, CLSID_MkProtocol, - CLSID_PSUrlMonProxy, CLSID_StdURLMoniker): Added. - * lib/hlguids-uuid.c: State source of CLSIDs. - -2006-06-13 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/Makefile.in: Added extras-uuid as an object and source. - * lib/uuid.c (IID_IClientSiteHandler, IID_IContinue, IID_IHttpNegotiate, - IID_IPersistMoniker, IID_IServerHandler, IID_ITargetEmbedding, - IID_ITargetFrame, IID_ITypeComp, IID_IUrlHistoryStg, IID_IWinInetHttpInfo, - IID_IWinInetInfo, IID_IEnumSTATPROPSETSTG, IID_IEnumSTATPROPSTG, - IID_IEnumSTATURL): Remove. Moved to extras-uuid.c. - * lib/extras-uuid.c: New file. - Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot - net). - -2006-06-12 Danny Smith <dannysmith@users.sourceforge.net> - - [mingw-Bugs-1424461] - *include/imagehlp.h: Comment out IN, OUT and OPTIONAL, - throughout. - *include/rpcdce.h: Don't define IN, OUT or OPTIONAL if - _NO_W32_PSEUDO_MODIFIERS. - *include/rpcnsi.h: Comment out IN, OUT and OPTIONAL, - throughout. - *include/rpcnsip.h: Likewise. - *include/windef.h: Don't define IN, OUT or OPTIONAL - if _NO_W32_PSEUDO_MODIFIERS. - *include/ddk/batclass.h: Comment out IN, OUT and OPTIONAL, - throughout. - *include/ddk/cfgmgr32.h: Likewise. - *include/ddk/ddkmapi.h: Likewise. - *include/ddk/hidclass.h: Likewise. - *include/ddk/hidpi.h: Likewise. - *include/ddk/kbdmou.h: Likewise. - *include/ddk/mcd.h: Likewise. - *include/ddk/miniport.h: Likewise. - *include/ddk/minitape.h: Likewise. - *include/ddk/ndis.h: Likewise. - *include/ddk/ndistapi.h: Likewise. - *include/ddk/ndiswan.h: Likewise. - *include/ddk/ntapi.h: Likewise. - *include/ddk/ntdd8042.h: Likewise. - *include/ddk/ntddpcm.h: Likewise. - *include/ddk/ntifs.h: Likewise. - *include/ddk/ntpoapi.h: Likewise. - *include/ddk/parallel.h: Likewise. - *include/ddk/pfhook.h: Likewise. - *include/ddk/scsiwmi.h: Likewise. - *include/ddk/smbus.h: Likewise. - *include/ddk/srb.h: Likewise. - *include/ddk/storport.h: Likewise. - *include/ddk/tdikrnl.h: Likewise. - *include/ddk/upssvc.h: Likewise. - *include/ddk/usbcamdi.h: Likewise. - *include/ddk/usbscan.h: Likewise. - *include/ddk/video.h: Likewise. - *include/ddk/videoagp.h: Likewise. - *include/ddk/win2k.h: Likewise. - *include/ddk/winddi.h: Likewise. - *include/ddk/winddk.h: Don't define IN, OUT or OPTIONAL - if _NO_W32_PSEUDO_MODIFIERS. - Comment out IN, OUT and OPTIONAL, throughout. - *include/ddk/winnt4.h: Comment out IN, OUT and OPTIONAL, - throughout. - *include/ddk/ws2san.h: Likewise. - -2006-06-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/Makefile.in: Added hlguids-uuid as source and object. - -2006-06-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/uuid.c (CLSID_StaticDib, CLSID_StaticMetafile, CLSID_StdHlink, - CLSID_StdHlinkBrowseContext): Remove. Moved to relevant files. - * lib/cguid-uuid.c (CLSID_StaticDib, CLSID_StaticMetafile): Added. - * lib/hlguids-uuid.c: New file. - Thank you to Julien Lecomte (julienlecomte at users dot sourceforge dot - net). - -2006-06-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/Makefile.in: Added urlmon-uuid and hlink-uuid as sources and - objects. - * lib/uuid.c (IID_IAuthenticate, IID_IBindHost, IID_IBindProtocol, - IID_IBindStatusCallback, IID_IBindStatusCallbackMsg, IID_IBinding, - IID_IHlink, IID_IHlinkBrowseContext, IID_IHlinkFrame, IID_IHlinkSite, - IID_IHlinkTarget): Remove. Moved to new files. - * lib/urlmon-uuid.c: New file. - * lib/hlink-uuid.c: New file. - -2006-06-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/Makefile.in: Added ativscp-uuid as source and object. - * lib/uuid.c (IID_IActiveScript, IID_IActiveScriptError, - IID_IActiveScriptParse, IID_IActiveScriptSite, - IID_IActiveScriptSiteWindow): Remove. Moved to ativscp-uuid.c. - * lib/ativscp-uuid.c: New file. - -2006-06-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/uuid.c (IID_IClientSecurity, IID_IMallocSpy, IID_IServerSecurity): - Remove. Moved to objidl-uuid.c - * lib/objidl-uuid.c (IID_IClientSecurity, IID_IMallocSpy, - IID_IServerSecurity): Defined. - -2006-06-09 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/Makefile.in: Add cguid-uuid and olectlid-uuid as sources and - objects. - * lib/uuid.c (CLSID_CColorPropPage, CLSID_CFontPropPage, - CLSID_CPicturePropPage, CLSID_Picture_Dib, CLSID_Picture_Metafile, - CLSID_StdFont, CLSID_StdPicture, GUID_NULL, IID_ICreateTypeInfo, - IID_ICreateTypeInfo2, IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_IDebug, - IID_IDebugStream, IID_IDispatch, IID_IEnumFORMATETC,IID_IEnumMoniker, - IID_IEnumOLEVERB, IID_IEnumSTATDATA, IID_IEnumSTATSTG, IID_IEnumString, - IID_IEnumUnknown, IID_IEnumVARIANT, IID_IOleLink, IID_IPSFactory, - IID_IRpcChannel, IID_IRpcProxy, IID_IRpcStub, IID_ITypeInfo, - IID_ITypeInfo2, IID_ITypeLib, IID_ITypeLib2): Remove. Moved to relevant - files. - * lib/oaidl-uuid.c (IID_ICreateTypeInfo, IID_ICreateTypeInfo2, - IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, IID_ITypeInfo2, - IID_ITypeLib, IID_ITypeLib2, IID_IEnumVARIANT): Define. - * lib/cguid-uuid.c: New file. - * lib/olectlid-uuid.c: New file. - -2006-06-08 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/Makefile.in: Add objsafe-uuid oaidl-uuid docobj-uuid comcat-uuid - exdisp-uuid mlang-uuid objidl-uuid as sources and objects. - * lib/uuid.c (CATID_Control, CATID_DocObject, CATID_Insertable, - CATID_PersistsToPropertyBag, CATID_PersistsToStorage, CATID_PersistsToStream, - CATID_PersistsToStreamInit, CATID_Printable, CATID_Programmable, - CLSID_CMultiLanguage, CLSID_StdComponentCategoriesMgr, CLSID_WebBrowser, - DIID_DWebBrowserEvents, DIID_DWebBrowserEvents2, IID_IAdviseSink, - IID_IAdviseSink2, IID_IBindCtx, IID_ICatInformation, IID_ICatRegister, - IID_IClassActivator, IID_IContinueCallback, IID_ICreateErrorInfo, - IID_IDataAdviseHolder, IID_IDataObject, IID_IEnumCATEGORYINFO, - IID_IEnumGUID, IID_IEnumOleDocumentViews, IID_IErrorInfo, - IID_IExternalConnection, IID_IFillLockBytes, IID_ILockBytes, IID_IMalloc, - IID_IMarshal, IID_IMessageFilter, IID_IMoniker, IID_IObjectSafety, - IID_IOleCommandTarget, IID_IOleDocument, IID_IOleDocumentSite, - IID_IOleDocumentView, IID_IPSFactoryBuffer, IID_IPersist, - IID_IPersistFile, IID_IPersistStorage, IID_IPersistStream, IID_IPrint, - IID_IProgressNotify, IID_IPropertySetStorage, IID_IPropertyStorage, - IID_IROTData, IID_IRootStorage, IID_IRpcChannelBuffer, - IID_IRpcProxyBuffer, IID_IRpcStubBuffer, IID_IRunnableObject, - IID_IRunningObjectTable, IID_ISequentialStream, IID_IStdMarshalInfo, - IID_IStorage, IID_IStream, IID_ISupportErrorInfo, IID_IWebBrowser, - IID_IWebBrowser2, IID_IWebBrowserApp): Remove. Moved to new files. - * lib/comcat-uuid.c: New file. - * lib/docobj-uuid.c: New File. - * lib/exdisp-uuid.c: New file. - * lib/mlang-uuid.c: New file. - * lib/oaidl-uuid.c: New file. - * lib/objidl-uuid.c: New file. - * lib/objsafe-uuid.c: New file. - -2006-06-07 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/Makefile.in: Add oleacc-uuid oleidl-uuid ocidl-uuid as sources and - objects. - * lib/uuid.c (IID_IOleCache, IID_IOleCache2, IID_IOleCacheControl, IID_IViewObject, - IID_IViewObject2, IID_IDropSource, IID_IDropTarget, IID_IOleAdviseHolder, - IID_IOleInPlaceUIWindow, IID_IOleInPlaceObject, IID_IOleInPlaceActiveObject, - IID_IOleInPlaceFrame, IID_IOleInPlaceSite, IID_IOleContainer, IID_IOleItemContainer, - IID_IOleClientSite, IID_IOleObject, IID_IOleWindow, IID_IParseDisplayName, - IID_IAccessible, LIBID_Accessibility, IID_IQuickActivate, IID_IOleUndoManager, - IID_IOleParentUndoUnit, IID_IOleUndoUnit, IID_IEnumOleUndoUnits, IID_IPointerInactive, - IID_IAdviseSinkEx, IID_IOleInPlaceSiteEx, IID_IOleControl, IID_IOleControlSite, - IID_IPersistPropertyBag, IID_IPersistPropertyBag2, IID_IPersistStreamInit, - IID_IPersistMemory, IID_IPropertyBag, IID_IPropertyBag2, IID_IPropertyNotifySink, - IID_IPropertyPage, IID_IPropertyPage2, IID_IPropertyPageSite, IID_IFont, IID_IFontDisp, - IID_IPicture, IID_IPictureDisp, IID_IProvideClassInfo, IID_IProvideClassInfo2, - IID_IEnumConnectionPoints, IID_IEnumConnections, IID_IConnectionPoint, - IID_IConnectionPointContainer, IID_IClassFactory2, IID_IErrorLog, - IID_IObjectWithSite, IID_IPerPropertyBrowsing, IID_ISimpleFrameSite, - IID_ISpecifyPropertyPages): Remove. Moved to new files. - * lib/oleidl-uuid.c: New file. - * lib/oleacc-uuid.c: New file. - * lib/ocidl-uuid.c: New file. - -2006-06-04 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/Makefile.in: Add unknwn-uuid and servprov-uuid as sources and - objects. - * lib/uuid.c (IID_IUnknown, IID_IClassFactory, IID_IServiceProvider): - Remove. Moved to unknwn-uuid and servprov-uuid. - * lib/unknwn-uuid.c: New file. - * lib/servprov-uuid.c: New file. - -2006-06-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/strmif.h (VMRDeinterlaceTech): Correct typedef for DeinterlaceTech_* - enum. - -2006-06-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/strmif.h (enum tagAnalogVideoStandard): Add missing ','. - -2006-06-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (DM_BITSPERPEL, DM_PELSWIDTH, DM_PELSHEIGHT, - DM_DISPLAYFLAGS, DM_DISPLAYFREQUENCY): Remove. Duplicates of - wingdi.h defines. - -2006-06-02 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h ((SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Remove - duplicate defines. - - * include/winnt.h (SUBLANG_ARABIC_SAUDI_ARABIA): Revert accidental - removal. - (SUBLANG_MARATHI_INDIA): Remove duplicate define. - -2006-05-24 Christopher Faylor <cgf@timesys.com> - - * configure.in: Update to newer autoconf. - (thanks to Steve Ellcey) - * configure: Regenerate. - * aclocal.m4: New file. - -2006-05-21 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/uuid.c (IID_IRpcProxyBuffer34): Remove definition. - -2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/rtutils.h (TraceDumpA,TraceDumpW,TracePutsA,TracePutsW) - (TraceRegisterA,TraceRegisterW,TraceVprintfA,TraceVprintfW): Define - as macros. - Thanks to: Bruce M Simpson <bms_spc at sf dot net> - -2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mprapi.h (MprAdminMIBBufferFree,MprAdminMIBEntryCreate) - (MprAdminMIBEntryDelete,MprAdminMIBEntryGet,MprAdminMIBEntryGetFirst) - (MprAdminMIBEntryGetNext,MprAdminMIBEntrySet,MprAdminMIBGetTrapInfo) - (MprAdminMIBServerConnect,MprAdminMIBServerDisconnect) - (MprAdminMIBSetTrapInfo): Declare functions. - Note: MprAdminMIBSetTrapInfo is missing from mprapi.def. - (MIB_SERVER_HANDLE): New typedef. - (MprConfigTransportSetInfo): Declare function. - * lib/mprapi.def (MprSetupIpInIpInterfaceFriendlyNameEnum) - (MprSetupIpInIpInterfaceFriendlyNameFree): Fix size. - -2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * lib/rtutils.def: New file. Generated on Windows XP. - (TracePrintf{AW},TracePrintfEx{AW}): Left out for now. - * include/rtutils.h: New file. - (TraceDump{AW},TracePuts{AW},TraceRegister{AW},TraceVprintf{AW}): - Commented out, they're missing from rtutils.def. - -2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mprapi.h (MprInfoBlockAdd,MprInfoBlockFind) - (MprInfoBlockQuerySize,MprInfoBlockRemove,MprInfoBlockSet) - (MprInfoCreate,MprInfoDelete,MprInfoDuplicate) - (MprInfoRemoveAll): Declare functions. - -2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mprapi.h (MprConfigBufferFree,MprConfigGetFriendlyName) - (MprConfigGetGuidName,MprConfigInterfaceCreate) - (MprConfigInterfaceDelete,MprConfigInterfaceEnum) - (MprConfigInterfaceGetHandle,MprConfigInterfaceGetInfo) - (MprConfigInterfaceSetInfo,MprConfigInterfaceTransportAdd) - (MprConfigInterfaceTransportEnum,MprConfigInterfaceTransportGetHandle) - (MprConfigInterfaceTransportGetInfo,MprConfigInterfaceTransportRemove) - (MprConfigInterfaceTransportSetInfo,MprConfigServerBackup) - (MprConfigServerConnect,MprConfigServerDisconnect) - (MprConfigServerGetInfo,MprConfigServerInstall) - (MprConfigServerRestore,MprConfigTransportCreate) - (MprConfigTransportDelete,MprConfigTransportEnum) - (MprConfigTransportGetHandle,MprConfigTransportGetInfo) - (MprConfigTransportSetInfo): Declare functions. - -2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mprapi.h (MprAdminBufferFree) - (MprAdminDeregisterConnectionNotification,MprAdminGetErrorString) - (MprAdminInterfaceConnect,MprAdminInterfaceCreate) - (MprAdminInterfaceDelete,MprAdminInterfaceDeviceGetInfo) - (MprAdminInterfaceDeviceSetInfo,MprAdminInterfaceDisconnect) - (MprAdminInterfaceEnum,MprAdminInterfaceGetCredentials) - (MprAdminInterfaceGetCredentialsEx,MprAdminInterfaceGetHandle) - (MprAdminInterfaceGetInfo,MprAdminInterfaceQueryUpdateResult) - (MprAdminInterfaceSetCredentials,MprAdminInterfaceSetCredentialsEx) - (MprAdminInterfaceSetInfo,MprAdminInterfaceTransportAdd) - (MprAdminInterfaceTransportGetInfo,MprAdminInterfaceTransportRemove) - (MprAdminInterfaceTransportSetInfo) - (MprAdminInterfaceUpdatePhonebookInfo,MprAdminInterfaceUpdateRoutes) - (MprAdminIsServiceRunning,MprAdminRegisterConnectionNotification) - (MprAdminServerConnect,MprAdminServerDisconnect) - (MprAdminServerGetCredentials,MprAdminServerGetInfo) - (MprAdminServerSetCredentials,MprAdminTransportCreate) - (MprAdminTransportGetInfo,MprAdminTransportSetInfo): Declare functions. - -2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/ipxtfflt.h: New file. - -2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mprapi.h: Fix header guard. Cleanup. - (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2) - (MprAdminAcceptNewLink,MprAdminAcceptReauthentication) - (MprAdminConnectionHangupNotification) - (MprAdminConnectionHangupNotification2) - (MprAdminGetIpAddressForUser,MprAdminInitializeDll) - (MprAdminTerminateDll,MprAdminLinkHangupNotification) - (MprAdminReleaseIpAddress): Declare functions. - * lib/mprapi.def: Regenerate on Windows XP. - -2006-05-12 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/ipifcons.h: Cleanup. - * include/ipxconst.h: Fix header guard. - * include/ipxrtdef.h: include <ipxconst.h>. - -2006-05-11 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/ipxrtdef.h: Cleanup. - (IPX_INTERFACE_INFO_TYPE,IPX_STATIC_ROUTE_INFO_TYPE) - (IPX_STATIC_SERVICE_INFO_TYPE,IPX_SERVICE_FILTER_INFO_TYPE) - (IPX_ROUTE_FILTER_INFO_TYPE,IPX_IN_TRAFFIC_FILTER_INFO_TYPE) - (IPX_ADAPTER_INFO_TYPE,IPXWAN_INTERFACE_INFO_TYPE,IPX_GLOBAL_INFO_TYPE) - (IPX_STATIC_NETBIOS_NAME_INFO_TYPE) - (IPX_IN_TRAFFIC_FILTER_GLOBAL_INFO_TYPE) - (IPX_OUT_TRAFFIC_FILTER_INFO_TYPE) - (IPX_OUT_TRAFFIC_FILTER_GLOBAL_INFO_TYPE): Define. - * include/routprot.h: Cleanup. - (PROTO_IP_OTHER,PROTO_IP_LOCAL,PROTO_IP_NETMGMT,PROTO_IP_ICMP) - (PROTO_IP_EGP,PROTO_IP_GGP,PROTO_IP_HELLO,PROTO_IP_RIP,PROTO_IP_IS_IS) - (PROTO_IP_ES_IS,PROTO_IP_CISCO,PROTO_IP_BBN,PROTO_IP_OSPF,PROTO_IP_BGP) - (PROTO_IP_BOOTP,PROTO_IP_NT_AUTOSTATIC,PROTO_IP_NT_STATIC) - (PROTO_IP_NT_STATIC_NON_DOD,IPRTRMGR_PID,IPX_PROTOCOL_BASE) - (IPX_PROTOCOL_RIP,IPX_PROTOCOL_SAP,IPX_PROTOCOL_NLSP): Define. - * include/fltdefs.h: New file. - * include/ipinfoid.h: New file. - -2006-05-11 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/strmif.h (IAMAnalogVideoDecoder,IAMAudioInputMixer) - (IAMAudioRendererStats,IAMBufferNegotiation,IAMCameraControl) - (IAMCertifiedOutputProtection): Add interfaces. - * include/adsprop.h: New file. - * include/cmnquery.h: New file. - * include/dsadmin.h: New file. - * include/dsclient.h: New file. - * include/dsgetdc.h: New file. - * include/dsquery.h: New file. - * include/dsrole.h: New file. - * include/ntdsapi.h: New file. - * include/ntdsbcli.h: New file. - * include/objsel.h: New file. - -2006-05-10 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/qedit.h (DEXTER_PARAM,DEXTER_VALUE,SCompFmt0): Add structures. - (DEXTERF_TRACK_SEARCH_FLAGS,TIMELINE_MAJOR_TYPE): Add enums. - (CONNECTF_DYNAMIC_NONE,CONNECTF_DYNAMIC_SOURCES) - (CONNECTF_DYNAMIC_EFFECTS,SFN_VALIDATEF_CHECK,SFN_VALIDATEF_POPUP) - (SFN_VALIDATEF_TELLME,SFN_VALIDATEF_REPLACE,SFN_VALIDATEF_USELOCAL) - (SFN_VALIDATEF_NOFIND,SFN_VALIDATEF_IGNOREMUTED,RESIZEF_STRETCH) - (RESIZEF_CROP,RESIZEF_PRESERVEASPECTRATIO) - (RESIZEF_PRESERVEASPECTRATIO_NOLETTERBOX): Define. - -2006-05-10 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/qedit.h: New file. - * include/errors.h: Cleanup. - -2006-05-10 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/amvideo.h (BIT_MASKS_MATCH): Don't use memcmp to - avoid dependency on <string.h>. - There's no Win32 equivalent for memcmp: - http://support.microsoft.com/default.aspx?scid=kb;EN-US;q99456 - -2006-05-10 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/amvideo.h (RESET_MASKS,RESET_PALETTE): Use ZeroMemory - instead of memset to avoid dependency on <string.h>. - * include/dshow.h (AM_ASPECT_RATIO_MODE,AM_WST_DRAWBGMODE,AM_WST_LEVEL) - (AMExtendedSeekingCapabilities,AM_WST_SERVICE,AM_WST_STATE) - (AM_WST_STYLE): Add enums. - (AM_WST_PAGE,AMVABeginFrameInfo,AMVACompBufferInfo,AMVAEndFrameInfo, - AMVAInternalMemInfo,AMVAUncompBufferInfo,AMVAUncompDataInfo): New - structures. - * include/errors.h (VFW_E_DVD_CMD_CANCELLED) - (VFW_E_DVD_STATE_WRONG_VERSION,VFW_E_DVD_STATE_CORRUPT) - (VFW_E_DVD_STATE_WRONG_DISC,VFW_E_DVD_INCOMPATIBLE_REGION) - (VFW_E_DVD_NO_ATTRIBUTES,VFW_E_DVD_NO_GOUP_PGC) - (VFW_E_DVD_LOW_PARENTAL_LEVEL,VFW_E_DVD_NOT_IN_KARAOKE_MODE) - (VFW_E_FRAME_STEP_UNSUPPORTED,VFW_E_DVD_STREAM_DISABLED) - (VFW_E_DVD_TITLE_UNKNOWN,VFW_E_DVD_INVALID_DISC) - (VFW_E_DVD_NO_RESUME_INFORMATION) - (VFW_E_PIN_ALREADY_BLOCKED_ON_THIS_THREAD,VFW_E_PIN_ALREADY_BLOCKED) - (VFW_E_CERTIFICATION_FAILURE,VFW_E_VMR_NOT_IN_MIXER_MODE) - (VFW_E_VMR_NO_AP_SUPPLIED,VFW_E_VMR_NO_DEINTERLACE_HW) - (VFW_E_VMR_NO_PROCAMP_HW,VFW_E_DVD_VMR9_INCOMPATIBLEDEC) - (VFW_E_NO_COPP_HW,VFW_E_BAD_KEY): Define. - * include/evcode.h (AM_WMT_EVENT_DATA): New structure. - * include/mmsystem.h (WAVE_FORMAT_EXTENSIBLE): Define. - * include/edevdefs.h (ED_FORMAT_SMPTE_30,ED_FORMAT_SMPTE_30DROP) - (ED_FORMAT_SMPTE_25,ED_FORMAT_SMPTE_24): Move from here... - * include/strmif.h: ... to here. New file. - * include/aviriff.h: New file. - * include/bdatypes.h: New file. - * include/control.h: New file. - * include/dvdmedia.h: New file. - * include/il21dec.h: New file. - * include/ks.h: New file. - * include/ksmedia.h: New file. - * include/mmreg.h: New file. - * include/mpegtype.h: New file. - * include/vidcap.h: New file. - * include/vmr9.h: New file. - * include/vptype.h: New file. - * include/xprtdefs.h: New file. - -2006-05-10 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winnls.h [WINVER >= 0x0500] (LOCALE_IDEFAULTEBCDICCODEPAGE): - Documented as defined on Windows 2000 or later. - [WINVER >= 0x0600] (LOCALE_SDURATION,LOCALE_SIETFLANGUAGE) - (LOCALE_SISO3166CTRYNAME2,LOCALE_SISO639LANGNAME2) - (LOCALE_SKEYBOARDSTOINSTALL,LOCALE_SNAME,LOCALE_SNAN) - (LOCALE_SNEGINFINITY,LOCALE_SPOSINFINITY,LOCALE_SSCRIPTS): Documented - but values unknown, Windows Vista or later. - (CAL_UMALQURA): Cleanup. - (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3) - (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6) - (CAL_SSHORTESTDAYNAME7): Cleanup. - [WINVER >= 0x0410] (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX) - (CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Cleanup. - -2006-05-10 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wingdi.h [WINVER >= 0x0500] (DC_PERSONALITY,DC_PRINTRATE) - (DC_PRINTRATEUNIT,DC_PRINTERMEM,DC_MEDIAREADY,DC_STAPLE) - (DC_PRINTRATEPPM,DC_COLORDEVICE,DC_NUP,DC_MEDIATYPENAMES) - (DC_MEDIATYPES,DMPAPER_DBL_JAPANESE_POSTCARD,DMPAPER_A6) - (DMPAPER_JENV_KAKU2,DMPAPER_JENV_KAKU3,DMPAPER_JENV_CHOU3) - (DMPAPER_JENV_CHOU4,DMPAPER_LETTER_ROTATED) - (DMPAPER_A3_ROTATED,DMPAPER_A4_ROTATED,DMPAPER_A5_ROTATED) - (DMPAPER_B4_JIS_ROTATED,DMPAPER_B5_JIS_ROTATED) - (DMPAPER_JAPANESE_POSTCARD_ROTATED) - (DMPAPER_DBL_JAPANESE_POSTCARD_ROTATED) - (DMPAPER_A6_ROTATED,DMPAPER_JENV_KAKU2_ROTATED) - (DMPAPER_JENV_KAKU3_ROTATED,DMPAPER_JENV_CHOU3_ROTATED) - (DMPAPER_JENV_CHOU4_ROTATED,DMPAPER_B6_JIS) - (DMPAPER_B6_JIS_ROTATED,DMPAPER_12X11,DMPAPER_JENV_YOU4) - (DMPAPER_JENV_YOU4_ROTATED,DMPAPER_P16K,DMPAPER_P32K) - (DMPAPER_P32KBIG,DMPAPER_PENV_1,DMPAPER_PENV_2) - (DMPAPER_PENV_3,DMPAPER_PENV_4,DMPAPER_PENV_5) - (DMPAPER_PENV_6,DMPAPER_PENV_7,DMPAPER_PENV_8) - (DMPAPER_PENV_9,DMPAPER_PENV_10,DMPAPER_P16K_ROTATED) - (DMPAPER_P32K_ROTATED,DMPAPER_P32KBIG_ROTATED) - (DMPAPER_PENV_1_ROTATED,DMPAPER_PENV_2_ROTATED) - (DMPAPER_PENV_3_ROTATED,DMPAPER_PENV_4_ROTATED) - (DMPAPER_PENV_5_ROTATED,DMPAPER_PENV_6_ROTATED) - (DMPAPER_PENV_7_ROTATED,DMPAPER_PENV_8_ROTATED) - (DMPAPER_PENV_9_ROTATED,DMPAPER_PENV_10_ROTATED): Define. - (DMPAPER_LAST): Value depends on DMPAPER_* variables actually defined. - (DM_PANNINGWIDTH,DM_PANNINGHEIGHT,DM_DISPLAYFIXEDOUTPUT) - (DMDO_DEFAULT,DMDO_90,DMDO_180,DMDO_270,DMDFO_DEFAULT,DMDFO_STRETCH) - (DMDFO_CENTER): Define. - (GetDCBrushColor,GetDCPenColor): Declare. - * lib/msimg32.def (GetDCBrushColor,GetDCPenColor): Add stubs. - -2006-05-10 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winnt.h (LANG_PERSIAN,LANG_LOWER_SORBIAN,LANG_UPPER_SORBIAN) - (LANG_TSWANA,LANG_XHOSA,LANG_ZULU,LANG_MALTESE,LANG_SAMI,LANG_IRISH) - (LANG_TIBETAN,LANG_WELSH,LANG_KHMER,LANG_LAO,LANG_SINHALESE) - (LANG_INUKTITUT,LANG_AMHARIC,LANG_TAMAZIGHT,LANG_FRISIAN) - (LANG_PASHTO,LANG_FILIPINO,LANG_HAUSA,LANG_YORUBA,LANG_QUECHUA) - (LANG_SOTHO,LANG_BASHKIR,LANG_LUXEMBOURGISH,LANG_GREENLANDIC) - (LANG_IGBO,LANG_TIGRIGNA,LANG_YI,LANG_MAPUDUNGUN,LANG_MOHAWK) - (LANG_BRETON,LANG_UIGHUR,LANG_MAORI,LANG_OCCITAN,LANG_CORSICAN) - (LANG_ALSATIAN,LANG_YAKUT,LANG_KICHE,LANG_KINYARWANDA,LANG_WOLOF) - (LANG_DARI,LANG_MALAGASY) - (SUBLANG_CUSTOM_DEFAULT,SUBLANG_CUSTOM_UNSPECIFIED) - (SUBLANG_UI_CUSTOM_DEFAULT,SUBLANG_AFRIKAANS_SOUTH_AFRICA) - (SUBLANG_ALBANIAN_ALBANIA,SUBLANG_ALSATIAN_FRANCE) - (SUBLANG_AMHARIC_ETHIOPIA,SUBLANG_ARMENIAN_ARMENIA) - (SUBLANG_ASSAMESE_INDIA,SUBLANG_BASHKIR_RUSSIA,SUBLANG_BASQUE_BASQUE) - (SUBLANG_BELARUSIAN_BELARUS,SUBLANG_BENGALI_INDIA) - (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN) - (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC) - (SUBLANG_BRETON_FRANCE,SUBLANG_BULGARIAN_BULGARIA) - (SUBLANG_CATALAN_CATALAN,SUBLANG_CORSICAN_FRANCE) - (SUBLANG_CZECH_CZECH_REPUBLIC,SUBLANG_CROATIAN_CROATIA) - (SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,SUBLANG_DANISH_DENMARK) - (SUBLANG_DIVEHI_MALDIVES,SUBLANG_ENGLISH_IRELAND) - (SUBLANG_ENGLISH_INDIA,SUBLANG_ENGLISH_MALAYSIA) - (SUBLANG_ENGLISH_SINGAPORE,SUBLANG_ESTONIAN_ESTONIA) - (SUBLANG_FAEROESE_FAROE_ISLANDS,SUBLANG_FILIPINO_PHILIPPINES) - (SUBLANG_FINNISH_FINLAND,SUBLANG_FRISIAN_NETHERLANDS) - (SUBLANG_GALICIAN_GALICIAN,SUBLANG_GEORGIAN_GEORGIA) - (SUBLANG_GREEK_GREECE,SUBLANG_GREENLANDIC_GREENLAND) - (SUBLANG_GUJARATI_INDIA,SUBLANG_HAUSA_NIGERIA,SUBLANG_HEBREW_ISRAEL) - (SUBLANG_HINDI_INDIA,SUBLANG_HUNGARIAN_HUNGARY) - (SUBLANG_ICELANDIC_ICELAND,SUBLANG_IGBO_NIGERIA) - (SUBLANG_INDONESIAN_INDONESIA,SUBLANG_INUKTITUT_CANADA) - (SUBLANG_INUKTITUT_CANADA_LATIN,SUBLANG_IRISH_IRELAND) - (SUBLANG_JAPANESE_JAPAN,SUBLANG_KAZAK_KAZAKHSTAN) - (SUBLANG_KHMER_CAMBODIA,SUBLANG_KICHE_GUATEMALA) - (SUBLANG_KINYARWANDA_RWANDA,SUBLANG_KONKANI_INDIA) - (SUBLANG_KYRGYZ_KYRGYZSTAN,SUBLANG_LAO_LAO_PDR) - (SUBLANG_LATVIAN_LATVIA,SUBLANG_LITHUANIAN_LITHUANIA) - (SUBLANG_LOWER_SORBIAN_GERMANY,SUBLANG_LUXEMBOURGISH_LUXEMBOURG) - (SUBLANG_MACEDONIAN_MACEDONIA,SUBLANG_MALAYALAM_INDIA) - (SUBLANG_MALTESE_MALTA,SUBLANG_MAORI_NEW_ZEALAND) - (SUBLANG_MAPUDUNGUN_CHILE,SUBLANG_MARATHI_INDIA,SUBLANG_MOHAWK_MOHAWK) - (SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA,SUBLANG_MONGOLIAN_PRC) - (SUBLANG_NEPALI_NEPAL,SUBLANG_OCCITAN_FRANCE,SUBLANG_ORIYA_INDIA) - (SUBLANG_PASHTO_AFGHANISTAN,SUBLANG_PERSIAN_IRAN) - (SUBLANG_POLISH_POLAND,SUBLANG_PORTUGUESE_PORTUGAL) - (SUBLANG_PUNJABI_INDIA,SUBLANG_QUECHUA_BOLIVIA,SUBLANG_QUECHUA_ECUADOR) - (SUBLANG_QUECHUA_PERU,SUBLANG_ROMANIAN_ROMANIA) - (SUBLANG_ROMANSH_SWITZERLAND,SUBLANG_RUSSIAN_RUSSIA) - (SUBLANG_SAMI_NORTHERN_NORWAY,SUBLANG_SAMI_NORTHERN_SWEDEN) - (SUBLANG_SAMI_NORTHERN_FINLAND,SUBLANG_SAMI_LULE_NORWAY) - (SUBLANG_SAMI_LULE_SWEDEN,SUBLANG_SAMI_SOUTHERN_NORWAY) - (SUBLANG_SAMI_SOUTHERN_SWEDEN,SUBLANG_SAMI_SKOLT_FINLAND) - (SUBLANG_SAMI_INARI_FINLAND,SUBLANG_SANSKRIT_INDIA) - (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_LATIN) - (SUBLANG_SERBIAN_BOSNIA_HERZEGOVINA_CYRILLIC) - (SUBLANG_SINDHI_AFGHANISTAN,SUBLANG_SINHALESE_SRI_LANKA) - (SUBLANG_SOTHO_NORTHERN_SOUTH_AFRICA,SUBLANG_SLOVAK_SLOVAKIA) - (SUBLANG_SLOVENIAN_SLOVENIA,SUBLANG_SPANISH_US,SUBLANG_SWEDISH_SWEDEN) - (SUBLANG_SYRIAC,SUBLANG_TAJIK_TAJIKISTAN) - (SUBLANG_TAMAZIGHT_ALGERIA_LATIN,SUBLANG_TAMIL_INDIA) - (SUBLANG_TATAR_RUSSIA,SUBLANG_TELUGU_INDIA,SUBLANG_THAI_THAILAND) - (SUBLANG_TIBETAN_PRC,SUBLANG_TIBETAN_BHUTAN,SUBLANG_TIGRIGNA_ERITREA) - (SUBLANG_TSWANA_SOUTH_AFRICA,SUBLANG_TURKISH_TURKEY) - (SUBLANG_TURKMEN_TURKMENISTAN,SUBLANG_UIGHUR_PRC) - (SUBLANG_UKRAINIAN_UKRAINE,SUBLANG_UPPER_SORBIAN_GERMANY) - (SUBLANG_VIETNAMESE_VIETNAM,SUBLANG_WELSH_UNITED_KINGDOM) - (SUBLANG_WOLOF_SENEGAL,SUBLANG_YORUBA_NIGERIA) - (SUBLANG_XHOSA_SOUTH_AFRICA,SUBLANG_YAKUT_RUSSIA,SUBLANG_YI_PRC) - (SUBLANG_ZULU_SOUTH_AFRICA): Define. - (SUBLANG_ARABIC_SAUDI_ARABIA): Removed by error. - (SUBLANG_MARATHI_INDIA): Defined twice by error. - -2006-05-05 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * lib/directx/Makefile.in: Remove reference to libquartz.a since - it was moved. - -2006-05-05 Earnie Boyd <earnie@users.sf.net> - - * lib/scrnsave.c: Correct misspelled SPI_SCREENSAVERUNNING to - SPI_SETSCREENSAVERUNNING. - * include winuser.h (SPI_SCREENSAVERRUNNING): Remove again. - -2006-05-04 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (SPI_SCREENSAVERRUNNING): Define. - It had been removed because it's no documented, but Cygwin needs it. - -2006-05-04 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/amvideo.h (IFullScreenVideo): Define. - (BIT_MASKS_MATCH,PALETTISED,PALETTE_ENTRIES,RESET_MASKS,RESET_PALETTE, - SIZE_EGA_PALETTE,SIZE_MASKS,SIZE_PALETTE): Added Macros. - -2006-05-04 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winnls.h (CAL_SYEARMONTH,CAL_ITWODIGITYEARMAX, - CAL_NOUSEROVERRIDE,CAL_RETURN_NUMBER,CAL_USE_CP_ACP): Documented - as available on Windows 98 and better. - (CAL_SSHORTESTDAYNAME_1,CAL_SSHORTESTDAYNAME_2,CAL_SSHORTESTDAYNAME_3) - (CAL_SSHORTESTDAYNAME_4,CAL_SSHORTESTDAYNAME_5,CAL_SSHORTESTDAYNAME_6) - (CAL_SSHORTESTDAYNAME7,CAL_UMALQURA): Define, Windows Vista and better. - -2006-05-04 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/amvideo.h: New file. - * include/dshow.h: Include <amvideo.h>. - -2006-05-04 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (MOUSEEVENTF_XDOWN,MOUSEEVENTF_XUP): Define. - (MOUSEEVENTF_MOVE,MOUSEEVENTF_LEFTDOWN,MOUSEEVENTF_LEFTUP) - (MOUSEEVENTF_RIGHTDOWN,MOUSEEVENTF_RIGHTUP,MOUSEEVENTF_MIDDLEDOWN) - (MOUSEEVENTF_MIDDLEUP,MOUSEEVENTF_ABSOLUTE,MOUSEEVENTF_WHEEL): Cleanup. - (HWND_BROADCAST): Cleanup. - (HWND_MESSAGE): Windows 2000 only. - (SMTO_ABORTIFHUNG,SMTO_BLOCK,SMTO_NORMAL): Cleanup. - (SMTO_NOTIMEOUTIFNOTHUNG): Define. - (SIF_DISABLENOSCROLL,SIF_PAGE,SIF_POS,SIF_RANGE,SIF_TRACKPOS) - (SIF_ALL): Cleanup. - (SWP_DRAWFRAME,SWP_FRAMECHANGED,SWP_HIDEWINDOW,SWP_NOACTIVATE) - (SWP_NOCOPYBITS,SWP_NOMOVE,SWP_NOSIZE,SWP_NOREDRAW,SWP_NOZORDER) - (SWP_SHOWWINDOW,SWP_NOOWNERZORDER,SWP_NOREPOSITION,SWP_NOSENDCHANGING) - (SWP_DEFERERASE,SWP_ASYNCWINDOWPOS): Cleanup. - (HSHELL_ENDTASK,HSHELL_ACCESSIBILITYSTATE,HSHELL_APPCOMMAND): Define. - (SPI_GETBLOCKSENDINPUTRESETS,SPI_GETCARETWIDTH,SPI_GETDROPSHADOW) - (SPI_GETFILTERKEYS,SPI_GETFLATMENU,SPI_GETFOCUSBORDERHEIGHT) - (SPI_GETFOCUSBORDERWIDTH,SPI_GETFONTSMOOTHINGCONTRAST) - (SPI_GETFONTSMOOTHINGTYPE,SPI_GETFOREGROUNDFLASHCOUNT) - (SPI_GETMENUSHOWDELAY,SPI_GETMOUSECLICKLOCK,SPI_GETMOUSECLICKLOCKTIME) - (SPI_GETMOUSEHOVERHEIGHT,SPI_GETMOUSEHOVERTIME,SPI_GETMOUSEHOVERWIDTH) - (SPI_GETMOUSESONAR,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS) - (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER) - (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING) - (SPI_GETSCREENSAVETIMEOUT,SPI_GETMOUSEVANISH,SPI_GETNONCLIENTMETRICS) - (SPI_GETPOWEROFFACTIVE,SPI_GETPOWEROFFTIMEOUT,SPI_GETSCREENREADER) - (SPI_GETSCREENSAVEACTIVE,SPI_GETSCREENSAVERRUNNING) - (SPI_GETSCREENSAVETIMEOUT,SPI_GETSNAPTODEFBUTTON,SPI_GETUIEFFECTS) - (SPI_SETBLOCKSENDINPUTRESETS,SPI_SETCARETWIDTH,SPI_SETCURSORS) - (SPI_SETDROPSHADOW,SPI_SETFILTERKEYS,SPI_SETFLATMENU) - (SPI_SETFOCUSBORDERHEIGHT,SPI_SETFOCUSBORDERWIDTH) - (SPI_SETFONTSMOOTHINGCONTRAST,SPI_SETFONTSMOOTHINGTYPE) - (SPI_SETFOREGROUNDFLASHCOUNT,SPI_SETICONS,SPI_SETMENUSHOWDELAY) - (SPI_SETMOUSECLICKLOCK,SPI_SETMOUSECLICKLOCKTIME) - (SPI_SETMOUSEHOVERHEIGHT,SPI_SETMOUSEHOVERTIME) - (SPI_SETMOUSEHOVERWIDTH,SPI_SETMOUSESONAR,SPI_SETMOUSEVANISH) - (SPI_SETNONCLIENTMETRICS,SPI_SETPENWINDOWS,SPI_SETPOWEROFFACTIVE) - (SPI_SETPOWEROFFTIMEOUT,SPI_SETSCREENREADER,SPI_SETSCREENSAVEACTIVE) - (SPI_SETSCREENSAVERRUNNING,SPI_SETSCREENSAVETIMEOUT,SPI_SETSHOWIMEUI) - (SPI_SETSNAPTODEFBUTTON,SPI_SETUIEFFECTS): Define. - (SPI_GETACCESSTIMEOUT,SPI_GETANIMATION,SPI_GETBEEP) - (SPI_GETDEFAULTINPUTLANG,SPI_GETDESKWALLPAPER,SPI_GETDRAGFULLWINDOWS) - (SPI_GETFASTTASKSWITCH,SPI_GETFONTSMOOTHING,SPI_GETGRIDGRANULARITY) - (SPI_GETHIGHCONTRAST,SPI_GETICONMETRICS,SPI_GETICONTITLELOGFONT) - (SPI_GETICONTITLEWRAP,SPI_GETKEYBOARDDELAY,SPI_GETKEYBOARDPREF) - (SPI_GETKEYBOARDSPEED,SPI_GETLOWPOWERACTIVE,SPI_GETLOWPOWERTIMEOUT) - (SPI_GETMENUDROPALIGNMENT,SPI_GETMENUUNDERLINES,SPI_GETMINIMIZEDMETRICS) - (SPI_GETMOUSE,SPI_GETMOUSEKEYS,SPI_GETMOUSESPEED,SPI_GETMOUSETRAILS) - (SPI_GETSERIALKEYS,SPI_GETSHOWIMEUI,SPI_GETSHOWSOUNDS) - (SPI_GETSOUNDSENTRY,SPI_GETSTICKYKEYS,SPI_GETTOGGLEKEYS) - (SPI_GETWHEELSCROLLLINES,SPI_GETWINDOWSEXTENSION,SPI_GETWORKAREA) - (SPI_ICONHORIZONTALSPACING,SPI_ICONVERTICALSPACING) - (SPI_SETACCESSTIMEOUT,SPI_SETANIMATION,SPI_SETBEEP,SPI_SETBORDER) - (SPI_SETDEFAULTINPUTLANG,SPI_SETDESKPATTERN,SPI_SETDESKWALLPAPER) - (SPI_SETDOUBLECLICKTIME,SPI_SETDOUBLECLKHEIGHT,SPI_SETDOUBLECLKWIDTH) - (SPI_SETDRAGFULLWINDOWS,SPI_SETDRAGHEIGHT,SPI_SETDRAGWIDTH) - (SPI_SETFASTTASKSWITCH,SPI_SETFONTSMOOTHING,SPI_SETGRIDGRANULARITY) - (SPI_SETHANDHELD,SPI_SETHIGHCONTRAST,SPI_SETICONMETRICS) - (SPI_SETICONTITLELOGFONT,SPI_SETICONTITLEWRAP,SPI_SETKEYBOARDDELAY) - (SPI_SETKEYBOARDPREF,SPI_SETKEYBOARDSPEED,SPI_SETLANGTOGGLE) - (SPI_SETLOWPOWERACTIVE,SPI_SETLOWPOWERTIMEOUT,SPI_SETMENUDROPALIGNMENT) - (SPI_SETMENUUNDERLINES,SPI_SETMINIMIZEDMETRICS,SPI_SETMOUSE) - (SPI_SETMOUSEBUTTONSWAP,SPI_SETMOUSEKEYS,SPI_SETMOUSESPEED) - (SPI_SETMOUSETRAILS,SPI_SETSERIALKEYS,SPI_SETSHOWSOUNDS) - (SPI_SETSOUNDSENTRY,SPI_SETSTICKYKEYS,SPI_SETTOGGLEKEYS) - (SPI_SETWHEELSCROLLLINES,SPI_SETWORKAREA): Cleanup. - (SPI_GETMOUSETRAILS,SPI_SETMOUSETRAILS): Defined twice by error. - (SPI_SCREENSAVERRUNNING): Removed. - (SPIF_UPDATEINIFILE,SPIF_SENDCHANGE,SPIF_SENDWININICHANGE): Cleanup. - * include/wingdi.h (ETO_NUMERICSLATIN,ETO_NUMERICSLOCAL) - (ETO_IGNORELANGUAGE,ETO_PDY): Define. - (ETO_CLIPPED,ETO_GLYPH_INDEX,ETO_OPAQUE,ETO_RTLREADING): Cleanup. - -2006-05-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mprapi.h (MPR_SERVER_HANDLE): Add typedef. - (MprAdminGetPDCServer): Add prototype. - (MprAdminSendUserMessage): Add prototype. - (MprAdminUserGetInfo): Add prototype. - (MprAdminUserSetInfo): Add prototype. - * lib/mprapi.def: Add stubs for above functions. - -2006-05-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * lib/directx/quartz.def: Move from here... - * lib/quartz.def: ... to here. - -2006-05-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/amaudio.h: New file. - * include/dshow.h: Include <amaudio.h>. - -2006-05-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/errors.h: New file. - * include/dshow.h: Include <errors.h>. - -2006-05-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/dshow.h: New file. - * include/evcode.h: New file. - * include/audevcod.h: New file. - * include/dvdevcod.h: New file. - -2006-05-02 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mprapi.h (RAS_SERVER_HANDLE): Add typedef. - (MprAdminConnectionClearStats): Add prototype. - (MprAdminConnectionEnum): Add prototype. - (MprAdminConnectionGetInfo): Add prototype. - (MprAdminConnectionRemoveQuarantine): Add prototype. - (MprAdminPortClearStats): Add prototype. - (MprAdminPortDisconnect): Add prototype. - (MprAdminPortEnum): Add prototype. - (MprAdminPortGetInfo): Add prototype. - (MprAdminPortReset): Add prototype. - * lib/mprapi.def: New file. - -2006-05-02 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mprapi.h: #include <lmcons.h> - (MAX_DEVICETYPE_NAME): Add define. - (MAX_PHONE_NUMBER_LEN): Add define. - (ATADDRESSLEN): Add define. - (IPADDRESSLEN): Add define. - (IPXADDRESSLEN): Add define. - (MPR_ENABLE_RAS_ON_DEVICE): Add define. - (MPR_ENABLE_ROUTING_ON_DEVICE): Add define. - (RAS_FLAGS_PPP_CONNECTION): Add define. - (RAS_FLAGS_MESSENGER_PRESENT): Add define. - (RAS_FLAGS_RAS_CONNECTION): Add define. - (RAS_FLAGS_QUARANTINE_PRESENT): Add define. - (RASCCPCA_STAC): Add define. - (RASCCPCA_MPPC): Add define. - (PPP_CCP_COMPRESSION): Add define. - (PPP_CCP_ENCRYPTION40BITOLD): Add define. - (PPP_CCP_ENCRYPTION40BIT): Add define. - (PPP_CCP_ENCRYPTION128BIT): Add define. - (PPP_CCP_ENCRYPTION56BIT): Add define. - (PPP_CCP_HISTORYLESS): Add define. - (RASPRIV_NoCallback): Add define. - (RASPRIV_AdminSetCallback): Add define. - (RASPRIV_CallerSetCallback): Add define. - (RASPRIV_DialinPrivilege): Add define. - (RASPRIV_CallbackType): Add define. - (RASPRIV2_DialinPolicy): Add define. - (PPP_LCP_PAP): Add define. - (PPP_LCP_SPAP): Add define. - (PPP_LCP_CHAP): Add define. - (PPP_LCP_EAP): Add define. - (PPP_LCP_CHAP_MD5): Add define. - (PPP_LCP_CHAP_MS): Add define. - (PPP_LCP_CHAP_MSV2): Add define. - (PPP_LCP_MULTILINK_FRAMING): Add define. - (enum _RAS_HARDWARE_CONDITION): Add. - (enum _RAS_PORT_CONDITION): Add. - (struct _PPP_ATCP_INFO): Add. - (struct _PPP_ATCP_INFO): Add. - (struct _PPP_IPCP_INFO): Add. - (struct _PPP_IPCP_INFO2): Add. - (struct _PPP_IPXCP_INFO): Add. - (struct _PPP_LCP_INFO): Add. - (struct _PPP_NBFCP_INFO): Add. - (struct _PPP_INFO): Add. - (struct _PPP_INFO_2): Add. - (struct _RAS_CONNECTION_0): Add. - (struct RAS_CONNECTION_1): Add. - (struct _RAS_CONNECTION_2): Add. - (struct RAS_PORT_0): Add. - (struct _RAS_PORT_1): Add. - (struct _RAS_USER_0): Add. - (struct _RAS_USER_1): Add. - -2006-05-02 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mprapi.h: New file. - * include/routprot.h: New file. - * include/ipxrtdef.h: New file. - * include/ipxconst.h: New file. - * include/stm.h: New file. - -2006-04-28 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/ddk/winddk.h (KAFFINITY): Fix typo. - Thanks to: Oliver Stoeneberg <kidkat at sf dot net> - -2006-04-28 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h (ENUMRESLANGPROC,ENUMRESLANGPROCA,ENUMRESLANGPROCW) - (ENUMRESNAMEPROC,ENUMRESNAMEPROCA,ENUMRESNAMEPROCW) - (ENUMRESTYPEPROC,ENUMRESTYPEPROCA,ENUMRESTYPEPROCW): ANSI and Unicode - versions. - Thanks to: Oliver Stoeneberg <kidkat at sf dot net> - -2006-04-28 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/ntsecapi.h (POLICY_DNS_DOMAIN_INFO): Fix typo. - Thanks to: Oliver Stoeneberg <kidkat at sf dot net> - -2006-04-28 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wingdi.h (BITMAPV5HEADER): New structure definition. - -2006-04-28 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/basetyps.h (REFFMTID): Define properly. - -2006-04-28 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winnt.h (WT_SET_MAX_THREADPOOL_THREADS): Define. - Thanks to: Bruce M Simpson <bms_spc at sf dot net> - -2006-04-28 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/ipifcons.h (MIN_IF_TYPE,IF_TYPE_OTHER,IF_TYPE_REGULAR_1822) - (IF_TYPE_HDH_1822,IF_TYPE_DDN_X25,IF_TYPE_RFC877_X25) - (IF_TYPE_ETHERNET_CSMACD,IF_TYPE_IS088023_CSMACD) - (IF_TYPE_ISO88024_TOKENBUS,IF_TYPE_ISO88025_TOKENRING) - (IF_TYPE_ISO88026_MAN,IF_TYPE_STARLAN,IF_TYPE_PROTEON_10MBIT) - (IF_TYPE_PROTEON_80MBIT,IF_TYPE_HYPERCHANNEL,IF_TYPE_FDDI) - (IF_TYPE_LAP_B,IF_TYPE_SDLC,IF_TYPE_DS1,IF_TYPE_E1,IF_TYPE_BASIC_ISDN) - (IF_TYPE_PRIMARY_ISDN,IF_TYPE_PROP_POINT2POINT_SERIAL,IF_TYPE_PPP) - (IF_TYPE_SOFTWARE_LOOPBACK,IF_TYPE_EON,IF_TYPE_ETHERNET_3MBIT) - (IF_TYPE_NSIP,IF_TYPE_SLIP,IF_TYPE_ULTRA,IF_TYPE_DS3,IF_TYPE_SIP) - (IF_TYPE_FRAMERELAY,IF_TYPE_RS232,IF_TYPE_PARA,IF_TYPE_ARCNET) - (IF_TYPE_ARCNET_PLUS,IF_TYPE_ATM,IF_TYPE_MIO_X25,IF_TYPE_SONET) - (IF_TYPE_X25_PLE,IF_TYPE_ISO88022_LLC,IF_TYPE_LOCALTALK) - (IF_TYPE_SMDS_DXI,IF_TYPE_FRAMERELAY_SERVICE,IF_TYPE_V35,IF_TYPE_HSSI) - (IF_TYPE_HIPPI,IF_TYPE_MODEM,IF_TYPE_AAL5,IF_TYPE_SONET_PATH) - (IF_TYPE_SONET_VT,IF_TYPE_SMDS_ICIP,IF_TYPE_PROP_VIRTUAL) - (IF_TYPE_PROP_MULTIPLEXOR,IF_TYPE_IEEE80212,IF_TYPE_FIBRECHANNEL) - (IF_TYPE_HIPPIINTERFACE,IF_TYPE_FRAMERELAY_INTERCONNECT) - (IF_TYPE_AFLANE_8023,IF_TYPE_AFLANE_8025,IF_TYPE_CCTEMUL) - (IF_TYPE_FASTETHER,IF_TYPE_ISDN,IF_TYPE_V11,IF_TYPE_V36) - (IF_TYPE_G703_64K,IF_TYPE_G703_2MB,IF_TYPE_QLLC,IF_TYPE_FASTETHER_FX) - (IF_TYPE_CHANNEL,IF_TYPE_IEEE80211,,IF_TYPE_IBM370PARCHAN) - (IF_TYPE_ESCON,IF_TYPE_DLSW,IF_TYPE_ISDN_S,IF_TYPE_ISDN_U) - (IF_TYPE_LAP_D,IF_TYPE_IPSWITCH,IF_TYPE_RSRB,IF_TYPE_ATM_LOGICAL) - (IF_TYPE_DS0,IF_TYPE_DS0_BUNDLE,IF_TYPE_BSC,IF_TYPE_ASYNC,IF_TYPE_CNR) - (IF_TYPE_ISO88025R_DTR,IF_TYPE_EPLRS,IF_TYPE_ARAP,IF_TYPE_PROP_CNLS) - (IF_TYPE_HOSTPAD,IF_TYPE_TERMPAD,IF_TYPE_FRAMERELAY_MPI,IF_TYPE_X213) - (IF_TYPE_ADSL,IF_TYPE_RADSL,IF_TYPE_SDSL,IF_TYPE_VDSL) - (IF_TYPE_ISO88025_CRFPRINT,IF_TYPE_MYRINET,IF_TYPE_VOICE_EM) - (IF_TYPE_VOICE_FXO,IF_TYPE_VOICE_FXS,IF_TYPE_VOICE_ENCAP) - (IF_TYPE_VOICE_OVERIP,IF_TYPE_ATM_DXI,IF_TYPE_ATM_FUNI,IF_TYPE_ATM_IMA) - (IF_TYPE_PPPMULTILINKBUNDLE,IF_TYPE_IPOVER_CDLC,IF_TYPE_IPOVER_CLAW) - (IF_TYPE_STACKTOSTACK,IF_TYPE_VIRTUALIPADDRESS,IF_TYPE_MPC - (IF_TYPE_IPOVER_ATM,IF_TYPE_ISO88025_FIBER,IF_TYPE_TDLC - (IF_TYPE_GIGABITETHERNET,IF_TYPE_HDLC,IF_TYPE_LAP_F,IF_TYPE_V37) - (IF_TYPE_X25_MLP,IF_TYPE_X25_HUNTGROUP,IF_TYPE_TRANSPHDLC) - (IF_TYPE_INTERLEAVE,IF_TYPE_FAST,IF_TYPE_IP,IF_TYPE_DOCSCABLE_MACLAYER) - (IF_TYPE_DOCSCABLE_DOWNSTREAM,IF_TYPE_DOCSCABLE_UPSTREAM) - (IF_TYPE_A12MPPSWITCH,IF_TYPE_TUNNEL,IF_TYPE_COFFEE,IF_TYPE_CES) - (IF_TYPE_ATM_SUBINTERFACE,IF_TYPE_L2_VLAN,IF_TYPE_L3_IPVLAN) - (IF_TYPE_L3_IPXVLAN,IF_TYPE_DIGITALPOWERLINE,IF_TYPE_MEDIAMAILOVERIP) - (IF_TYPE_DTM,IF_TYPE_DCN,IF_TYPE_IPFORWARD,IF_TYPE_MSDSL) - (IF_TYPE_IEEE1394,IF_TYPE_RECEIVE_ONLY,MAX_IF_TYPE,IF_ACCESS_LOOPBACK) - (IF_ACCESS_BROADCAST,IF_ACCESS_POINTTOPOINT) - (IF_ACCESS_POINTTOMULTIPOINT,IF_CHECK_NONE,IF_CHECK_MCAST) - (IF_CHECK_SEND,IF_CONNECTION_DEDICATED,IF_CONNECTION_PASSIVE) - (IF_CONNECTION_DEMAND,IF_ADMIN_STATUS_UP,IF_ADMIN_STATUS_DOWN) - (IF_ADMIN_STATUS_TESTING,IF_OPER_STATUS_NON_OPERATIONAL) - (IF_OPER_STATUS_UNREACHABLE,IF_OPER_STATUS_DISCONNECTED) - (IF_OPER_STATUS_CONNECTING,IF_OPER_STATUS_CONNECTED) - (IF_OPER_STATUS_OPERATIONAL): Define. - * include/winbase.h (CancelWaitableTimer,UnregisterWait): - Add function declaration. - * include/mgm.h: New file. - * lib/rtm.def: New file. - Thanks to: Bruce M Simpson <bms_spc at sf dot net> - -2006-04-24 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/ws2tcpip.h (gai_strerror): Remove thread-safety comment. - This function cannot be made thread-safe, the API would have to be - changed for that, just like strerror() -> strerror_r() and similar - ISO C or POSIX functions... - -2006-04-19 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/edevdefs.h: New file. - -2006-04-19 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mmsystem.h (_LPCWAVEFORMATEX_DEFINED): Define. - Use as guard for the WAVEFORMATEX structure instead of - _WAVEFORMATEX_ to avoid clashes with DirectSound. Keep - _WAVEFORMATEX_ for compatibility. - Thanks to: Andrew Jones <guln at sf dot net> - -2006-04-19 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (CharNextEx,CharNextExW,CharPrevEx,CharPrevExW): - Delete. Only CharNextExA and CharPrevExA are documented in MSDN. - Thanks to: David Golub <david_golub at sf dot net> - -2006-04-18 Eric House <ehouse@eehouse.org> - - PocketPC support. - * include/aygshell.h: New file [_WIN32_WCE]. Declare most common - functions for using aygshell on PocketPC: - SHCreateMenuBar, SHFindMenuBar, SHCreateNewItem, SHFullScreen, - SHSipInfo, SHHandleWMActivate, SHHandleWMSettingChange - - * include/commctrl.h [_WIN32_WCE] Add function prototypes for - command bar API on PocketPC: - CommandBar_Create, CommandBar_Show, CommandBar_AddBitmap, - CommandBar_InsertComboBox, CommandBar_InsertMenubar, - CommandBar_InsertMenubarEx, CommandBar_DrawMenuBar, - CommandBar_GetMenu, CommandBar_AddAdornments, CommandBar_Height, - CommandBar_InsertButton, CommandBar_Destroy. - - * include/winbase.h [_WIN32_WCE] (WIN32_FIND_DATA{A|W}): Remove - fields not present on PocketPC. - (GetCurrentThreadId): Conditionally declare as extern function - without dllimport attribute on PocketPC. - (ResetEvent): Likwise. - (SetEvent): Likewise. - - * include/wingdi.h [_WIN32_WCE] (GetTextExtentPoint32{A|W}): - Conditionally declare as extern function without dllimport - attribute on PocketPC. - * winuser.h [_WIN32_WCE] (DialogBoxParam{A|W}): Conditionally - declare as extern function without dllimport attribute on PocketPC. - -2006-04-18 Thorsten Dahlheimer <dahlheim@users.sf.net> - - * lib/test.c: Include icm.h. - -2006-04-18 Thorsten Dahlheimer <dahlheim@users.sf.net> - - * include/wingdi.h (ColorCorrectPalette): Add declaration. - (CreateColorSpace): Add UNICODE mappings. - * lib/gdi32.def (ColorCorrectPalette): Add stub. - * include/icm.h: New file. - * lib/mscms.def: New file. - * lib/icmui.def: New file. - -2006-04-18 Thorsten Dahlheimer <dahlheim@users.sf.net> - - * include/winnt.h (IMAGE_FILE_MACHINE_IA64): New define. - (IMAGE_FILE_MACHINE_AMD64): New define. - (IMAGE_NT_OPTIONAL_HDR32_MAGIC,IMAGE_NT_OPTIONAL_HDR64_MAGIC): - New defines. - (IMAGE_NT_OPTIONAL_HDR_MAGIC): Map to one of the above. - (IMAGE_SUBSYSTEM_NATIVE_WINDOWS): New define. - (IMAGE_SUBSYSTEM_WINDOWS_CE_GUI): New define. - (IMAGE_DLLCHARACTERISTICS_WDM_DRIVER): New define. - (IMAGE_DIRECTORY_ENTRY_ARCHITECTURE,IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT) - (IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR): New defines. - (IMAGE_SCN_TYPE_REG,IMAGE_SCN_TYPE_DSECT,IMAGE_SCN_TYPE_NOLOAD) - (IMAGE_SCN_TYPE_GROUP,IMAGE_SCN_TYPE_COPY,IMAGE_SCN_TYPE_OVER): - New defines. - (IMAGE_SCN_ALIGN_128BYTES,IMAGE_SCN_ALIGN_256BYTES) - (IMAGE_SCN_ALIGN_512BYTES,IMAGE_SCN_ALIGN_1024BYTES) - (IMAGE_SCN_ALIGN_2048BYTES,IMAGE_SCN_ALIGN_4096BYTES) - (IMAGE_SCN_ALIGN_8192BYTES): New defines. - (IMAGE_DEBUG_TYPE_BORLAND): New define. - (IMAGE_OPTIONAL_HEADER32,PIMAGE_OPTIONAL_HEADER32) - (IMAGE_OPTIONAL_HEADER64,PIMAGE_OPTIONAL_HEADER64): New structure - definitions and typedefs. - (IMAGE_OPTIONAL_HEADER,PIMAGE_OPTIONAL_HEADER): Map to the above. - (IMAGE_NT_HEADERS32,PIMAGE_NT_HEADERS32,IMAGE_NT_HEADERS64) - (PIMAGE_NT_HEADERS64): New structure definitions and typedefs. - (IMAGE_NT_HEADERS,PIMAGE_NT_HEADERS): Map to the above. - (IMAGE_LOAD_CONFIG_DIRECTORY64,PIMAGE_LOAD_CONFIG_DIRECTORY64): - New structure definition and typedefs. - (IMAGE_CE_RUNTIME_FUNCTION_ENTRY,PIMAGE_CE_RUNTIME_FUNCTION_ENTRY): - Likewise. - (IMAGE_FUNCTION_ENTRY64,PIMAGE_FUNCTION_ENTRY64): Likewise. - -2006-04-18 Bart Oldeman <bartoldeman@users.sf.net> - - * lib/test.c: Fix typo in #inlcude. - * include/aclui.h: INTERFACE should not remain - defined at the end of the header. - * include/servprov.h: Ditto. - -2006-04-16 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ws2tcpip.h (gai_strerror): Add thread-safety comment. - -2006-04-14 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/ws2tcpip.h (gai_strerrorA,gai_strerrorW): Implement inline. - -2006-04-14 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wsahelp.h (system_header): Add pragma. - * include/ws2spi.h (system_header): Add pragma. - * include/rasdlg.h (system_header): Add pragma. - * include/rasdlg.h (_RASDLG_H): Define. - Define instead of _RASDLG_H_, this is the w32api standard. - * include/mlang.h (_MLANG_H): Define. - Define instead of _MLANG_H_, this is the w32api standard. - * include/setupapi.h (_SETUPAPI_H): Define. - Define instead of _SETUPAPI_H_, this is the w32api standard. - -2006-04-14 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/rpcndr.h (boolean): Add typedef. - Thanks to: James du Russel <ephelon at users dot sf dot net> - * include/rpcndr.h (_RPCNDR_H): Define. - Define in addition to __RPCNDR_H__, this is the w32api standard. - -2006-04-14 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.7. - * Makefile.in: Ditto. - -2006-04-13 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, - GET_MODULE_HANDLE_EX_FLAG_PIN, - GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT): Define. - Thanks to: Brandon Sneed <brandon at redf dot net> - -2006-04-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/secext.h: Enclose function declarations in extern "C" - if __cplusplus. - -2006-04-11 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/comcat.h: INTERFACE should not remain defined - at the end of the header. - * include/docobj.h: Ditto. - * include/exdisp.h: Ditto. - * include/intshcut.h: Ditto. - * include/mlang.h: Ditto. - * include/mshtml.h: Ditto. - * include/oaidl.h: Ditto. - * include/objidl.h: Ditto. - * include/objsafe.h: Ditto. - * include/ocidl.h: Ditto. - * include/oleacc.h: Ditto. - * include/oledlg.h: Ditto. - * include/oleidl.h: Ditto. - * include/richole.h: Ditto. - * include/shldisp.h: Ditto. - * include/shlobj.h: Ditto. - * include/unknwn.h: Ditto. - * include/vfw.h: Ditto. - Thanks to: Brandon Sneed <brandon at redf dot net> - -2006-04-11 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/commdlg.h [_WIN32_WINNT >= 0x0500] (PD_CURRENTPAGE) - (PD_NOCURRENTPAGE,PD_EXCLUSIONFLAGS,PD_USELARGETEMPLATE): Define. - Thanks to: Wolfgang Glas <softadm at users dot sf dot net> - -2006-04-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/iphlpapi.h (GetAdaptersAddresses): Check for winsock2 - here also. - -2006-04-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wincrypt.h (PROV_MS_EXCHANGE): Define. - We should probably remove PROV_MS_MAIL but I'm keeping it for - now for compatibility reasons. - Thanks to: Marcus Agehall <agehall at users dot sf dot net> - -2006-04-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/commdlg.h [_WIN32_WINNT >= 0x0500] (START_PAGE_GENERAL) - (PD_RESULT_PRINT,PD_RESULT_APPLY): Define. - Thanks to: Wolfgang Glas <softadm at users dot sf dot net> - -2006-04-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wingdi.h [WINVER >= 0x0410] - (AlphaBlend,GradientFill,TransparentBlt): Windows 98 and better. - Thanks to: Alessandro Antonello <aleantonello at users dot sf dot net> - -2006-04-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wingdi.h (CAPTUREBLT,NOMIRRORBITMAP): Define. - * include/commctrl.h (WC_LINKA,WC_LINKW,LIF_ITEMINDEX,LIF_STATE) - (LIF_ITEMID,LIF_URL,LIS_FOCUSED,LIS_ENABLED,LIS_VISITED,LM_HITTEST) - (LM_GETIDEALHEIGHT,LM_SETITEM,LM_GETITEM,MAX_LINKID_TEXT) - (L_MAX_URL_LENGTH): Define. - (LITEM,LHITTESTINFO,NMLINK): Add structures. - Thanks to: Brandon Sneed <brandon at redf dot net> - -2006-04-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/w32api.h (IE601,IE602,IE7): Define for recent versions of IE. - -2006-04-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/w32api.h (_W32API_H): Define. - Define in addition to _W32API_H_, this is the w32api standard. - -2006-04-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/w32api.h (WindowsVista): Define. - -2006-04-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/iptypes.h (IP_ADAPTER_*): Define parts that depend - on SOCKET_ADDRESS only if winsock2.h has already been included. - -2006-04-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (WM_IME_*): Remove. Defined in imm.h. - -2006-04-05 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/iphlpapi.h (GAA_FLAG_*): Define. - (GetAdaptersAddresses): Add function declaration. - * lib/iphlpapi.def (GetAdaptersAddresses): Add function stub. - Thanks to: ross <rossboulet at users dot sf dot net> - -2006-04-05 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/iptypes.h (IP_INTERFACE_NAME_INFO, - IP_ADAPTER_ANYCAST_ADDRESS,IP_ADAPTER_MULTICAST_ADDRESS, - IP_ADAPTER_UNICAST_ADDRESS,IP_ADAPTER_DNS_SERVER_ADDRESS, - IP_ADAPTER_PREFIX,IP_ADAPTER_ADDRESSES): Add structures. - (IF_OPER_STATUS,IP_DAD_STATE,IP_PREFIX_ORIGIN,IP_SUFFIX_ORIGIN, - SCOPE_LEVEL): Add enums. - (IP_ADAPTER_*): Define. - -2006-04-05 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (GetWindowExtEx): Removed, belongs to wingdi.h. - Thanks to: Sergey Philippov <phis at users dot sf dot net> - -2006-04-05 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/objidl.h (PIDSI_*): Define. - (PRSPEC_*): Define. - Thanks to: Oliver Stoeneberg <kidkat at users dot sf dot net> - -2006-04-05 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h (LOGON32_PROVIDER_WINNT40, - LOGON32_PROVIDER_WINNT50, LOGON32_LOGON_NETWORK, - LOGON32_LOGON_UNLOCK, LOGON32_LOGON_NETWORK_CLEARTEXT, - LOGON32_LOGON_NEW_CREDENTIALS): Define. - Thanks to: Oliver Stoeneberg <kidkat at users dot sf dot net> - -2006-04-05 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/mq.h: New file. - * lib/mqrt.def (MQ*): Define a few missing functions. - -2006-04-05 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * lib/mqrt.def: New file. - Needs the mq.h file to work properly, working on it. - Thanks to: Pascal Obry <pobry at users dot sf dot net> - -2006-04-05 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winerror.h (STG_E_*): Define. - Thanks to: Oliver Stoeneberg <kidkat at users dot sf dot net> - * include/winerror.h (STG_S_*): Define. - (CO_S_MACHINENAMENOTFOUND): Define. - (RPC_E_*): Define. - (NTE_*): Define. - -2006-04-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/commctrl.h (ListView_*): Define and correct. - (LVM_*): Define. - -2006-04-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (WM_IME_*): Define (DWORD type). - (EM_*IMESTATUS): Define. - (WM_*): Define. - (XBUTTON*): Define. - Thanks to: Steve Folly <spfolly at users dot sf dot net> - -2006-03-31 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnetwk.h (WNetGetResourceInformationW): Correct first param. - Thanks to: Rene Rivera <grafik at users dot sf dot net> - -2006-03-29 Christopher Faylor <cgf@timesys.com> - - * include/winspool.h: Protect use of PRINTER_ENUM_VALUESW with proper - version conditional. - -2006-03-29 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winspool.h (JOB_INFO_3): Add structure. - (PROVIDOR_INFO_*{AW}): Add structure. - * include/winspool.h [_WIN32_WINNT >= 0x0500] - (PRINTER_ENUM_VALUES{AW}): Add structure. - (PRINTPROCESSOR_CAPS): Add structure. - -2006-03-29 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winspool.h [_WIN32_WINNT >= 0x0500] - (PRINTER_INFO_7A): Correct definition. - -2006-03-29 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winspool.h [_WIN32_WINNT >= 0x0500] - (DRIVER_INFO_*{AW}): Add structure. - (PRINTER_INFO_*{AW}): Add structure. - Thanks to: Roland Schwingel <rolandschwingel at users dot sf dot net> - -2006-03-29 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winspool.h [_WIN32_WINNT >= 0x0500] - (DRIVER_*MODE): Define (DWORD type). - Thanks to: Roland Schwingel <rolandschwingel at users dot sf dot net> - -2006-03-27 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wincon.h (GetConsoleProcessList): Declare. - -2006-03-27 Hansres Engel <engel@node.ch> - - * include/mlang.h: New file. - -2006-03-26 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (SetProcessWorkingSetSize): Corrected define. - -2006-03-26 Hansres Engel <engel@node.ch> - - Add Uniscribe API for typography and for complex scripts. - * include/usp10.h: New file. - * lib/usp10.def: New file. - - * include/winver.h: Change first argument of GetFileVersionInfo[...] to const. - - * include/imm.h (IMECHARPOSITION): Add structure. - (RECONVERTSTRING): Likwise. - - * include/commdlg.h (OPENFILENAME_SIZE_VERSION_400): Define. - - * lib/uuid.c (CMultiLanguage): Add UUID definition. - (IMLangFontLink2): Likewise. - (IMultiLanguage): Likewise. - -2006-03-18 Julien Lecomte <julienlecomte@users.sourceforge.net> - - * include/wincon.h (ENABLE_*): Add more defines. - -2006-03-18 Jan Nijtmans <nijtmans@users.sourceforge.net> - - * include/winnt.h (INHERITED_ACE): Define. - (VALID_INHERIT_FLAGS): Correct definition. - -2006-03-18 Peter Åstrand <astrand@cendio.se> - - * lib/wtsapi32.def: New file. - -2006-03-15 Christopher Faylor <cgf@timesys.com> - - * include/winbase.h (STATUS_DLL_INIT_FAILED): New define. - (STATUS_DLL_INIT_FAILED_LOGOFF): Ditto. - -2006-03-09 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winspool.h (DI_MEMORYMAP_WRITE): Define (DWORD type). - (FORM_USER,FORM_PRINTER): Define (DWORD type). - * include/winspool.h [_WIN32_WINNT >= 0x0500] - (DSPRINT_*): Define (DWORD type). - Thanks to: Roland Schwingel <rolandschwingel at users dot sf dot net> - -2006-03-09 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winspool.h (JOB_CONTROL_*,JOB_STATUS_*): Define. - Thanks to: Roland Schwingel <rolandschwingel at users dot sf dot net> - -2006-03-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/shellapi.h [_WIN32_IE >= 0x0600] - (SEE_MASK_NOZONECHECKS,SEE_MASK_FLAG_LOG_USAGE): Define on - Windows XP SP1 and Windows XP respectively. - -2006-03-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/shellapi.h (NOTIFYICONDATA_V*_SIZE): Define. - Thanks to: Daniel Atallah <datallah at users dot sf dot net> - * include/shellapi.h [_WIN32_IE >= 0x0500] - (NIS_*): Introduced in Version 5.0. - -2006-03-06 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (CS_*): Correct WINVER guard on - Image Color Matching colour definitions. - -2006-03-06 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (SFGAO_ISSLOW): Define. - (SFGAO_DISPLAYATTRMASK): Define in terms of preceding display - attribute constants. - -2006-03-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wingdi.h [WINVER >= 0x0500] - (GRADIENT_FILL_*,*_EMBEDED): Included in Windows 2000 and later. - Thanks to: David A. Capello <dacap at users dot sf dot net> - -2006-03-05 Paul J. Lucas <pauljlucas@users.sourceforge.net> - - * include/wininet.h (INTERNET_CONNECTED_INFO): Define structure. - (INTERNET_STATE_*): Define flags. - (INTERNET_OPTION_CONNECTED_STATE): Define constant. - -2006-03-05 Chris Wilson <chris+mingw@qwirx.com> - - * include/sddl.h: New file. - -2006-02-21 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Revert - last change. - Remove file level #pragma pack(push,4)/#pragma pop. - -2006-02-19 Corinna Vinschen <corinna@vinschen.de> - - * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Add filler - value to force correct alignment. - -2006-02-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (LPNMLVCACHEHINT): Correct spelling. - Thanks to: Sebastian Pipping <hartwork at users dot sf dot net> - (PNM_CACHEHINT): Add backward compatibilty define. - (LPNM_CACHEHINT): Likewise. - -2006-02-06 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (PathResolve): Fix typo in _WIN32_WINNT guard. - -2006-02-06 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, - PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Define. - * lib/shell32.def (PathResolve): Define. - -2006-02-06 Christopher Faylor <cgf@timesys.com> - - * include/shlobj.h (PathResolve): Fix typo. - -2006-02-06 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shlobj.h (PathResolve): Define. - (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF, - PRF_DONTFINDLNK): Ditto. - * lib/shell32.def (PathResolve): Define. - -2006-02-04 Ron Lee <ronl@users.sourceforge.net> - - * include/winnls.h: Remove stray end ';' from preprocessor defines. - -2006-02-02 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/iphlpapi.def: (NotifyAddrChange@8): Define. - Reported by: Daniel Atallah <datallah at users dot sf dot net> - (NotifyRouteChange@8): Define. - -2006-01-29 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winsock2.h (WINSOCK_API_LINKAGE): Define. Add to - prototypes. - -2006-01-29 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (FORCEINLINE): Define. - -2006-01-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (DECLSPEC_SELECTANY): Define. - -2006-01-26 Filip Navara <xnavara@volny.cz> - - * include/winnt.h (DECLSPEC_ALIGN): Define. - -2006-01-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h: Correct spelling of 'compatibility' in - comments. - * include/setupapi.h: Likewise. - * include/ws2tcpip.h: Likewise. - -2006-01-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/winddk.h (KeGetCurrentKPCR): Support -masm=intel. - -2006-01-24 Jiri Malak <Jiri.Malak@iol.cz> - - WATCOM compatibility changes. - * include/ddk/ntddk.h (DECL_IMPORT): Define using __declspec, - rather than __attribute__. - (DECL_EXPORT): Likewise. - * include/ddk/winddk.h (DDKAPI): Avoid using __attribute__. - (DDKFASTAPI): Likewise. - (DDKCDECLAPI): Likwise. - (KeGetCurrentKPCR): Provide __WATCOMC__ syntax for inline code. - -2006-01-23 Brandon Sneed <brandon@redf.net> - - * setupapi.def: Add all CM_* functions defined in ddk/cfgmgr32.h - to exports. - -2006-01-17 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.6. - * Makefile.in: Ditto. - -2006-01-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wincrypt.h (WINADVAPI): Add to prototypes of - advapi32.dll functions. - -2006-01-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winsock2.h (struct sockaddr_storage): Use RFC 2553 - names for padding size constants. - -2006-01-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/aclapi.h (WINADVAPI): Add to prototypes. - * include/winreg.h (WINADVAPI): Likewise. - * include/winsvc.h (WINADVAPI): Likewise. - -2006-01-05 Michael Gerdau <mgd@technosis.de> - - * include/winbase.h (WINADVAPI): Define. - -2006-01-03 Christopher Faylor <cgf@timesys.com> - - * include/winuser.h (CreateWindowStation): Correctly identify first - argument as constant. - (CreateWindowStation@): Ditto. - -2006-01-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/uxtheme.h [_WIN32_WINNT >= 0x0501] - (TMT_*, BT_*): Add constants. - -2005-12-31 Corinna Vinschen <corinna@vinschen.de> - - * include/winsock2.h: Don't define struct sockaddr_storage when - building Cygwin. - -2005-12-22 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/ws2_32.c: New file, defining IPv6 constants. - * lib/Makefile.in (SOURCES): Add ws2_32.c - (EXTRA_OBJS): Add ws2_32.o. - -2005-12-21 Michael Jung <mjung@iss.tu-darmstadt.de> - - * lib/user32.def (PrivateExtractIconsA@32, - PrivateExtractIconsW@32): Define. - * lib/shell32.c (IID_IShellLinkDataList): Add GUID. - -2005-12-12 Christopher Faylor <cgf@timesys.com> - - * include/winuser.h (WINSTA_ALL_ACCESS): Define. - -2005-12-09 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/kernel32.def (CreateFiberEx): Correct suffix. - -2005-12-09 Huw Davies <hdavies@users.sourceforge.net> - Danny Smith <dannysmith@users.sourceforge.net> - - * lib/msxml-uuid.c: New file to generate UUIDs for - MSXML interfaces. - * lib/Makefile.in (UUID_OBJS): Add msxml-uuid.o. - -2005-12-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (GetDevicePowerState): Add prototype. - * lib/kernel32.def (GetDevicePowerState): Correct suffix. - -2005-12-07 Brian Gunlogson <gmb300@users.sourceforge.net> - - * include/winuser.h (GetClassLongPtr{AW}): Guard prototypes with _WIN64. - Define as macro if !_WIN64. - (SetClassLongPtr{AW}): Likewise. - (GCLP_*): Add GetClassLongPtr defines. - * lib/user32.def (GetClassLongPtr{AW}): Remove stubs. - (SetClassLongPtr{AW}): Likewise. - -2005-11-18 Brian Gunlogson <gmb300@users.sourceforge.net> - - * include/winuser.h (GetClassLongPtr{AW}): Add prototypes. - (SetClassLongPtr{AW}): Likewise. - (GCLP_*): Add GetClassLongPtr defines. - * lib/user32.def (GetClassLongPtr{AW}): Add stubs. - (SetClassLongPtr{AW}): Likewise. - -2005-11-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commdlg.h (OPENFILENAMEW): Add members for - _WIN32_WINNT >= 0x0500. - Thanks to Ricardo Dalcorsso Fodra. - (OPENFILENAMEA): Modify whitespace. Ansify comment. - -2005-11-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (GetICMProfileA): Correct prototype. - (GetICMProfileW): Likewise. - Thanks to: Paul J Lucas - -2005-11-04 Michael Jung <mjung@iss.tu-darmstadt.de> - - * lib/shell32.c (CLSID_ShellFSFolder): Add GUID. - -2005-11-03 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/crypt32.def (CertOIDToAlgId, CertAlgIDToOID, CryptProtectData, - CryptUnprotectData, CryptDecodeObjectEx, CryptEncodeObjectEx, - CryptRegisterOIDFunction, CryptUnregisterOIDFunction): Add stubs. - Thanks to: F Richter <res2002 at users dot sourceforge dot net> - -2005-10-29 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/objbase.h: Fix typo. - * include/w32api.h: Increment version to 3.5. - * Makefile.in: Ditto. - -2005-10-27 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.4. - * Makefile.in: Ditto. - -2005-10-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (GetProcessId): Remove duplicate declaration. - Use _WIN32_WINNT >= 0x0501 guard. - -2005-10-11 Christopher Faylor <cgf@timesys.com> - - * include/winbase.h (GetProcessId): Declare. - -2005-09-23 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/ddk/newdev.def: Added. - Thanks to: Stephan Meyer <ste_meyer at users dot sourceforge dot net> - -2005-09-23 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/commdlg.h (OPENFILENAME): Added WINNT >= 0x0500 - component. - Thanks to: Gennady Feldman <gena01 at users dot sourceforge dot net> - -2005-09-23 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * lib/shell32.def (SHILCreateFromPath): Add stub. - Thanks to: Michael Jung <mjung at iss dot tu-darmstadt dot de> - -2005-09-21 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winbase.h (RegisterWaitForSingleObject, - RegisterWaitForSingleObjectEx): Define. - * lib/kernel32.def (RegisterWaitForSingleObjectEx@20): Define. - (RegisterWaitForSingleObject@16): Changed to - RegisterWaitForSingleObject@24. - Thanks to: Brandon Sneed <nivenh at users dot sourceforge dot net> - -2005-09-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winsock2.h (SO_EXCLUSIVEADDRUSE): Define. - Thanks to: Gisle Vanem <giva at bgnett dot no> - -2005-09-08 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/reason.h [_WIN32_WINNT >= 0x0501] - (SHTDN_REASON_*): New file. - * include/objbase.h: Avoid double header guard. - -2005-08-17 Michael Jung <mjung@iss.tu-darmstadt.de> - - * lib/shell32.c (CLSID_RecycleBin, CLSID_ControlPanel, - CLSID_MyComputer,CLSID_Internet, CLSID_NetworkPlaces, - CLSID_MyDocuments, CLSID_FolderShortcut): Add GUIDs. - -005-08-17 Martin Fuchs <martin-fuchs@gmx.net> - - * include/shlobj.h (IContextMenu3): Define. - * include/shlguid.h (IID_IContextMenu3): Declare. - * lib/shell32.c (IID_IContextMenu3): Define. - -2005-08-17 Martin Fuchs <martin-fuchs@gmx.net> - - * include/shlobj.h (SHFormatDrive): Declaration of function - and associated constants. - -2005-08-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/hidsdi.h: New file. - * lib/ddk/hid.def: Uncomment symbols and add stdcall suffix for - functions declared in hidsdi.h. - Thanks to: Alex J Lennon <ajlennon at organixconsulting dot com> - -2005-08-12 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/imm32.def (ImmDisableIME): Add stub. - Thanks to: "kidmin" <kidmin at users dot sourceforge dot net> - -2005-08-10 Chris Sutcliffe <ir0nh34d@users.sf.net> - - * include/w32api.h: Increment version to 3.3. - * Makefile.in: Ditto. - -2005-07-28 Earnie Boyd <earnie@users.sf.net> - - * include/winnt.h (SUBLANG_PORTUGUESE, SUBLANG_PORTUGUESE_BRAZILIAN): - Correct their values. - Thanks to: Daniel K. O. <danielosmari at users dont sf dot net> - -2005-07-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/winuser.h (HSHELL_RUDEAPPACTIVATED): Define. - -2005-07-20 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (TT_PRIM_CSPLINE): Define. - Thanks to: Bob Jamison <ishmal at users dot sourceforge dot net> - -2005-07-20 Danny Smith <dannysmith@users.sourceforge.net> - - * include/richedit.h (SETTEXTEX): Define structure and - associated constants. - (GT_SELECTION): Define GETTEXTEX flag constant. - -2005-07-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (SYSPAL_NOSTATIC256): Define. - -2005-07-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (WINGDIAPI): Define to DECLSPEC_DLLIMPORT - if __W32API_USE_DLLIMPORT__. Use throughout to qualify - prototypes. - -2005-07-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (RBBS_USECHEVRON): Define. - (RBBS_*): Use hex notation, group together. - -2005-07-18 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/kernel32.def (GetUserGeoID): Correct suffix. - Thanks to: "bernd23" <bernd23 at users dot sourceforge dot net> - -2005-07-18 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (TreeView_SetItemState): Initilise - _tvi.hItem. - Thanks to: Joseph Remes <jremes at users dot sourceforge dot net> - -2005-07-18 Mattia Barbon <mbarbon@users.sourceforge.net> - - * include/commctrl.h (NMLVFINDITEM): Add structure. - -2005-07-18 Michael Gerdau <mgdde@users.sourceforge.net> - - * include/wininet.h (WININET_API_FLAG_*): Add defines. - -2005-07-18 Daniel Atallah <datallah@users.sourceforge.net> - - * include/winnt.h (VER_SET_CONDITION): Define. - -2005-07-18 Michael Gerdau <mgdde@users.sourceforge.net> - - * include/wincon.h (AttachConsole): Correct _WIN32_WINNT guard. - (ATTACH_PARENT_PROCESS): Define. - (CONSOLE_WINDOWED_MODE): Correct definition to match MSDN - documentation. - -2005-07-17 Benoit Blanchon <bblanchon@users.sourceforge.net> - - * include/winbase.h (QueueUserWorkItem): Add prototype. - -2005-07-13 Benoit Blanchon <bblanchon@users.sourceforge.net> - - * include/wingdi.h (SHADEBLENDCAPS, SB_NONE, SB_CONST_ALPHA, - SB_PIXEL_ALPHA, SB_PREMULT_ALPHA, SB_GRAD_RECT, SB_GRAD_TRI, - COLORMGMTCAPS, CM_NONE, CM_DEVICE_ICM, CM_GAMMA_RAMP, - CM_CMYK_COLOR): Define. - -2005-06-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winldap.h (ldap_simple_bindW, ldap_simple_bind_sW, - ldap_bindW, ldap_bind_sW): Change PCHAR arg to PWCHAR. - Thanks to: Christian <chhd at users dot sf dot net> - -2005-06-18 Danny Smith <dannysmith@users.sourceforge.net> - - * include/richedit.h (GETTEXTEX): Correct name of lpUsedDefChar - field. - Thanks to: Saulius Menkevicius <bobas at users dot sf dot net> - -2005-06-18 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (GlobalDiscard): Define as macro. - Thanks to: David Golub <david_golub at users dot sf dot net> - -2005-05-13 Corinna Vinschen <corinna@vinschen.de> - - * include/winnetwk.h (WNetGetResourceParentA): Add missing declaration. - (WNetGetResourceParentW): Ditto. - * include/ddk/ntifs.h (FILE_ID_FULL_DIRECTORY_INFORMATION): Define. - (FILE_ID_BOTH_DIRECTORY_INFORMATION): Define. - -2005-04-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wininet.h (FtpGetFileSize): Add prototype. - (FtpCommand[AW]): Correct prototypes. - Reported by: <siger at users dot sf dot net> - -2005-04-25 Danny Smith <dannysmith@users.sourceforge.net> - - * include/vfw.h (capCreateCaptureWindow[AW]): Add prototypes. - (capGetDriverDescription[AW]): Likewise. - -2005-04-03 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h (SE_UNDOCK_NAME TEXT): Define. - (SE_MANAGE_VOLUME_NAME TEXT): Ditto. - (SE_IMPERSONATE_NAME TEXT): Ditto. - (SE_ENABLE_DELEGATION_NAME TEXT): Ditto. - (SE_SYNC_AGENT_NAME TEXT): Ditto. - -2005-03-16 Christopher Faylor <cgf@timesys.com> - - * include/winnt.h (SYSTEM_LUID): Fix definitition invalidated by below - change. - -2005-03-16 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (_LUID): Add structure. Correct LUID typedef. - Thanks to: - Paul-Christiaan Spruijtenburg <wakarimasu at users dot sf dot net> - -2005-03-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ws2tcpip.h (getaddrinfo, freeaddrinfo, getnameinfo): - Guard with _WIN32_WINNT >= 0x0501. Add FIXME comment. - (gai_strerror[AW]): Put into #if 0 block. - -2005-03-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/basetyps.h (__int16): Correct define. - -2005-02-10 Jiri Malak <Jiri.Malak@iol.cz> - Danny Smith <dannysmith@users.sourceforge.net> - - * lib/directx/dinput_private.h (ATTRIBUTE_TEXT_SECTION): New - define for Open Watcom portability. - * lib/directx/(dinput_joy.c, dinput_joy2.c, dinput_kbd.c, - dinput_mouse.c, dinput_mouse2.c): Use new macro in definition - of local c_rgodfDI* objects. Replace .rdata section attribute - with 'const' keyword in definition of global c_dfDI* objects. - -2005-02-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winioctl.h (IOCTL_VOLUME_BASE, - IOCTL_VOLUME_GET_VOLUME_DISK_EXTENTS, IOCTL_VOLUME_IS_CLUSTERED): - Copy defines from include/ddk/ntdddvol.h. - Bug reported to Debian by Anand Kumria <wildfire@progsoc.org> - -2005-01-27 Oliver Stoeneberg <oliverst@online.de> - - * include/winbase.h (PWIN32_FIND_DATA): Add typedef. - -2005-01-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (SW_SMOOTHSCROLL): Add define. - Reported by: Christian Ehrlicher <chehrlic@users.sf.net> - -2005-01-21 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/commdlg.h (OFN_DONTADDTORECENT): Added definition. - -2005-01-18 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/user32.def (MonitorFromPoint): Correct suffix. - -2005-01-13 Benoit Blanchon <bblanchon@users.sourceforge.net> - - * include/wininet.h (InternetCheckConnectionA, - InternetCheckConnectionW) Add prototypes. - (INTERNET_RAS_INSTALLED, INTERNET_CONNECTION_OFFLINE, - INTERNET_CONNECTION_CONFIGURED): Add defines. - -2005-01-07 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/commctrl.h (ComboBox_SetMinVisible, - ComboBox_GetMinVisible): Added Macros. - * include/winuser.h (CB_SETMINVISIBLE, CB_GETMINVISIBLE): - Added definitions. - -2005-01-02 Jiri Malak <Jiri.Malak@geac.cz> - - * include/winnt.h (GetCurrentFiber, GetFiberData): Make inline - assembly code conditional on _X86_. - -2005-01-02 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment version to 3.2. - * Makefile.in: Ditto. - * include/afxres.h: Remove the \r from the line ending. - * include/errorrep.h: Ditto. - * include/shldisp.h: Ditto. - * include/tschema.h: Ditto. - * lib/dhcpcsvc.def: Ditto. - * lib/uxtheme.def: Ditto. - * lib/wldap32.def: Ditto. - -2005-01-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY): - Correct typo. - Thanks to: Aidan France <aidan1@users.sourceforge.net> - -2004-12-29 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - *include/winuser.h (MNS_*, WM_MENUCOMMAND, - WM_MENUGETOBJECT, WM_MENUDRAG, WM_NCMOUSEHOVER, - WM_NCMOUSELEAVE, WM_UNINITMENUPOPUP, - SPI_GETFOREGROUNDLOCKTIMEOUT, - SPI_SETFOREGROUNDLOCKTIMEOUT): Added definitions. - *include/imm.h (WM_IME_REQUEST): Added definition. - *include/shlobj.h (SLGP_RAWPATH, - SLGP_UNCPRIORITY): Added definition. - -2004-12-28 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - *include/winuser.h (HSHELL_FLASH): Added definition. - -2004-12-23 Chris Sutcliffe <ir0nh34d@users.sourceforge.net> - - * include/shldisp.h (IAutoComplete): Added interface definiton. - * include/shldisp.h (IAutoComplete2): Added interface definiton. - * include/shldisp.h (ACO_AUTOSUGGEST): Added definition. - * include/shlobj.h (IObjMgr): Added interface definiton. - * lib/shell32.c (CLSID_AutoComplete, IID_AutoComplete, - IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr, - CLSID_ACListISF, IID_IACList): Added GUIDs. - * include/shlguid.h (CLSID_AutoComplete, IID_AutoComplete, - IID_AutoComplete2, CLSID_ACLMulti, IID_IObjMgr, - CLSID_ACListISF, IID_IACList): Added GUIDs. - -2004-12-23 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (CDRF_NOTIFYSUBITEMDRAW): Add define. - Thanks to: Chris Sutcliffe <ironhead@walled.net> - (CDRF_*): Use hex notation for constants. - -2004-12-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/sqlext.h (SQL_INTERVAL_*): Correct macros. - Reported by Eric Sharkey <sharkey at netrics dot com> - -2004-12-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (TOKEN_INFORMATION_CLASS): Add - TokenGroupsAndPrivileges, TokenSessionReference, - TokenSandBoxInert, TokenAuditPolicy, TokenOrigin. - Reformat. - (SID_NAME_USE): Add SidTypeComputer. Reformat. - Thanks to Gabriel Linder <mingwlinder@users.sourceforge.net> - -2004-12-02 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/comctl32.def (ImageList_Copy, ImageList_DrawIndirect, - ImageList_Duplicate): Add stubs. - -2004-12-02 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/directx/strmiids.c (MEDIASUBTYPE_YV12): Correct GUID. - Thanks to "Pete" <pross@xvid.org> - -2004-11-21 Benoit Blanchon <bblanchon@users.sourceforge.net> - - * include/wingdi.h (AC_SRC_ALPHA, AC_SRC_NO_ALPHA, - AC_DST_NO_ALPHA, ...): Add defines. - * include/winuser.h (ULW_COLORKEY,ULW_ALPHA, - ULW_OPAQUE): Add defines. - -2004-11-21 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (VerSetConditionMask): Correct typo in _WIN32_WINNT - guard. - * lib/kernel32.def (VerSetConditionMask): Correct stdcall - suffix. - * lib/ddk/ntoskrnl.def (VerSetConditionMask): Likewise. - -2004-11-20 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (PPROCESS_INFORMATION): Add typedef. - (CreateProcessWithLogonW): Declare. - (LOGON_WITH_PROFILE, LOGON_NETCREDENTIALS_ONLY): Add defines. - Thanks to: "jkmaki" <jkmaki@users.sourceforge.net> - -2004-11-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/sspi.h (SecPkgContext_Sizes): Fix typo. - Thanks to: David Leonard <leonard@users.sourceforge.net> - -2004-11-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/sspi.h (SecPkgCredentials_Names[AW]): Correct name. - Thanks to: David Leonard <leonard@users.sourceforge.net> - -2004-11-19 Magnus Olsen <greatlord@users.sourceforge.net> - - * include/winuser.h (MSLLHOOKSTRUCT): Add structure. - -2004-11-19 Magnus Olsen <greatlord@users.sourceforge.net> - - * include/winuser.h (LLKHF_EXTENDED, LLKHF_INJECTED, LLKHF_UP): - Add defines. - (LLKHF_ALTDOWN): Define based on KF_ALTDOWN. - -2004-11-19 Benoit Blanchon <bblanchon@users.sourceforge.net> - - * include/shellapi.h (NIF_GUID): Add another define. - -2004-11-18 Earnie Boyd <earnie@users.sf.net> - - * include/wincon.h (AttachConsole): Correct the _WIN32_WINNT filter. - Changed it twice due to inconsistent MSDN documentation. - * include/w32api.h (Windows95, etc. and IE3, etc.): Add definitions. - -2004-11-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (SHGFP_TYPE): Add enum. - -2004-11-12 Loïc Guilloux (glx@users.sourceforge.net> - - * include/winuser.h (WM_THEMECHANGED): Add define. - -2004-11-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/winddk.h (ExAllocateFromPagedLookasideList, - ExFreeToPagedLookasideList): Guard inline versions with - (__USE_NTOSKRNL__) && (_WIN32_WINNT >= 0x0501). Declare as - external functions for earlier _WIN32_WINNT. - -2004-11-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ras.h (RASCONN[AW]): Remove dwSessionId field. - -2004-11-09 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnls.h (WINBASEAPI): Define as DECLSPEC_IMPORT - if undefined and __W32API_USE_DLLIMPORT__. - Add WINBASEAPI token to prototypes, throughout. - -2004-11-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (GetCurrentFiber): Support -masm=intel. - (GetFiberData): Likewise. - (NtCurrentTeb): Likewise. - -2004-11-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shellapi.h (NIF_INFO): Add define. - (NIIF_*) Add defines.. - Thanks to: Benoit Blanchon <bblanchon@users.sourceforge.net> - (NIF_*): Convert constants to hex. - -2004-11-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (GetFontUnicodeRanges,GetGlyphIndicesA, - GetGlyphIndicesW): Declare. - (GGI_MARK_NONEXISTING_GLYPHS): Define - * lib/gdi32.def (GetFontUnicodeRanges,GetGlyphIndicesA, - GetGlyphIndicesW): Add stubs. - -2004-10-24 Dan Aloni <da-x@colinux.org> - - * include/ddk/ntapi.h (NtQueryFullAttributesFile, - ZwQueryFullAttributesFile): Declare. - * include/ddk/ntapi.h (RtlDosPathNameToNtPathName_U): - Declare. - lib/ntoskrnl.def (ZwQueryDirectoryFile, ZwQueryFullAttributesFile. - ZwQueryVolumeInformationFile): Add stubs. - -2004-10-18 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping, - PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__. - -2004-10-15 Robert Wruck <wruck@tweerlei.de> - Danny Smith <dannysmith@users.sourceforge.net> - - = include/winbase.h (InitializeSListHead, Interlocked*): - Guard with !__USE_NTOSKRNL__. - - * include/ddk/ntddk.h (__USE_NTOSKRNL__): Define. - * include/ddk/winddk.h (InitializeSListHead, Interlocked*): - Guard with __USE_NTOSKRNL__. - (ExInterlockedPopEntrySList, ExInterlockedPushEntrySList): - Add prototypes. Guard macro definition with __USE_NTOSKRNL__ - && _WIN32_WINNT >= 0x0501 - (ExAllocateFromNPagedLookasideList, ExAllocateFromPagedLookasideList, - ExFreeToNPagedLookasideList, ExFreeToPagedLookasideList): - Replace calts to InterlockedPopEntrySList, InterlockedPushEntrySList - with ExInterlockedPopEntrySList, ExInterlockedPushEntrySList. - - * lib/ddk/ntosknl.def (ExInterlockedPopEntrySList, - ExInterlockedPushEntrySList) Add stubs with fastcall decoration. - (ExDesktopObjectType, ExEventObjectType, ExSemaphoreObjectType, - ExWindowStationObjectType, IoAdapterObjectType, - IoDeviceHandlerObjectSize, IoDeviceHandlerObjectType, - IoDeviceObjectType, IoDriverObjectType, IoFileObjectType, - LpcPortObjectType, MmSectionObjectType, SeTokenObjectType): - Uncomment stubs. - -2004-10-11 Robert Wruck <wruck@tweerlei.de> - - * include/ddk/winddk.h (IoReleaseRemoveLockAndWait): Fix - definition - (IoReleaseRemoveLock): Add definition. - -2004-10-10 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/winnt4.h (Exi386InterlockedDecrementLong, - Exi386InterlockedExchangeUlong, Exi386InterlockedIncrementLong); - Add prototypes. - * include/winddk.h (ExInterlockedAddUlong, - ExInterlockedInsertHeadList, ExInterlockedInsertTailList, - ExInterlockedRemoveHeadList, ExInterlockedPopEntryList, - ExInterlockedPushEntryList): Change calling convention to - DDKAPI. - (ExfInterlockedAddUlong,ExInterlockedInsertHeadList, - ExInterlockedInsertTailList, ExInterlockedRemoveHeadList, - ExInterlockedPopEntryList, ExInterlockedPushEntryList): - Add prototypes for DDKFASTAPI versions. - Thanks to Vadim Yegor0v <zg at bmg dot lv> for report. - * lib/ntoskrnl.def (ExInterlockedAddUlong, - ExInterlockedInsertHeadList, ExInterlockedInsertTailList, - ExInterlockedRemoveHeadList, ExInterlockedPopEntryList, - ExInterlockedPushEntryList): Remove lead '@' from stubs. - (ExfInterlockedAddUlong,ExfInterlockedInsertHeadList, - ExfInterlockedInsertTailList, ExfInterlockedRemoveHeadList, - ExfInterlockedPopEntryList, ExfInterlockedPushEntryList): - Add fastcall stubs. - (Exi386InterlockedDecrementLong, Exi386InterlockedExchangeUlong, - Exi386InterlockedIncrementLong); Add stdcall stubs. - -2004-09-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (WINBASEAPI): Define as DECLSPEC_IMPORT only - if __W32API_USE_DLLIMPORT__ is defined. - * include/winuser.h (WINUSERAPI): Likewise. - -2004-09-29 Filip Navara <xnavara@volny.cz> - - * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h, - d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, mcd.h, miniport.h, - mountdev.h, mountmgr.h, ndis.h, ndistapi.h, ndiswan.h, netpnp.h, - newdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, ntddcdvd.h, - ntddchgr.h, ntdddisk.h, ntddkbd.h, ntddmou.h, ntddpar.h, ntddpcm.h, - ntddscsi.h, ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, - ntddvdeo.h, ntddvol.h, ntpoapi.h, parallel.h, pfhook.h, poclass.h, - scsi.h, scsiscan.h, smbus.h, srb.h, storport.h, tdiinfo.h, - tdikrnl.h, tvout.h, upssvc.h, usb.h, usb100.h, usbdi.h, usbioctl.h, - usbiodef.h, usbscan.h, usbuser.h, videoagp.h, winddi.h, winddk.h, - winnt4.h, ws2san.h): Fixed packing. - * include/ddk/atm.h (ATM_TRAFFIC_DESCRIPTOR_IE): Fixed declaration. - * include/ddk/hidclass.h (HID_INTERFACE_HIDPARSE, - HID_INTERFACE_NOTIFY_PNP): Likewise. - * include/ddk/ndis.h (NDIS_DMA_BLOCK, CO_FLOW_PARAMETERS): Likewise. - (NdisQueryPacketLength): Added macro. Thanks to Art Yerkes - <ayerkes@speakeasy.net>. - * include/ddk/usb100.h (USB_CONFIGURATION_DESCRIPTOR): Fixed - declaration. - * include/ddk/winddi.h (PATHDATA, GLYPHPOS): Likewise. - * include/ddk/winddk.h (PDRIVER_CONTROL, PDRIVER_LIST_CONTROL, - PDRIVER_ADD_DEVICE, PIO_COMPLETION_ROUTINE, PDRIVER_CANCEL, - PKDEFERRED_ROUTINE, PDRIVER_DISPATCH, PIO_DPC_ROUTINE, - PMM_DLL_INITIALIZE, PMM_DLL_UNLOAD, PDRIVER_ENTRY, - PDRIVER_INITIALIZE, PKSERVICE_ROUTINE, PIO_TIMER_ROUTINE, - PDRIVER_REINITIALIZE, PDRIVER_STARTIO, PKSYNCHRONIZE_ROUTINE, - PDRIVER_UNLOAD, DRIVER_OBJECT): Fixed callback declarations. - (struct FILE_BASIC_INFORMATION): Renamed to _FILE_BASIC_INFORMATION. - (SYNCH_LEVEL): Added definition. - (KPCR, KPCR_TIB): Fixed declaration. - (Interlocked[Push/Pop]EntrySList): Declare only if winbase.h isn't - included and _WIN32_WINNT >= 0x0501. - (RtlEqualLuid): Fixed macro definition. - (KfLowerIrql, KfRaiseIrql): Declare and use instead of KeLowerIrql and - KeRaiseIrql on i386 architectures. - -2004-09-06 Hosaka Yuji <hos@tamanegi.org> - - * include/mshtml.h (IHTMLDocument2): Correct get_selection - declaration. - (IHTMLSelectionObject): Correct get_type declaration. - (IHTMLFramesCollection2, IHTMLWindow2, IHTMLFrameBase, - IHTMLFrameBase2, IHTMLFrameBase3, IHTMLBodyElement, - IHTMLBodyElement2): Add interfaces. - (LPHTMLIMAGEELEMENTFACTORY, LPHTMLEVENTOBJ, LPHTMLSCREEN, - LPHTMLOPTIONELEMENTFACTORY, LPOMHISTORY, LPOMNAVIGATOR): Add - typedefs. - * lib/mshtml-uuid.c (IID_IHTMLFrameBase2, IID_IHTMLFrameBase3): - Add IIDs. - -2004-09-05 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment version to 3.1. - * Makefile.in: Ditto. - -2004-09-05 Hosaka Yuji <hos@tamanegi.org> - - * include/winuser.h (MonitorFromPoint, MonitorFromRect, - MonitorFromWindow): Add prototypes. - * lib/user32.def (MonitorFromPoint, MonitorFromRect, - MonitorFromWindowMonitorFromWindow): Add stubs. - * include/shellapi.h (DuplicateIcon): Add prototype. - -2004-09-05 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (WINUSERAPI): New define. - Use it to mark user32.dll imports, throughout. - -2004-09-05 Hosaka Yuji <hos@tamanegi.org> - - * lib/ddk/hid.def (HidD_FlushQueue, HidD_FreePreparsedData, - HidD_GetAttributes, HidD_GetConfiguration, HidD_GetFeature, - HidD_GetHidGuid, HidD_GetIndexedString, HidD_GetInputReport, - HidD_GetManufacturerString, HidD_GetMsGenreDescriptor, - HidD_GetNumInputBuffers, HidD_GetPhysicalDescriptor, - HidD_GetPreparsedData, HidD_GetProductString, - HidD_GetSerialNumberString, HidD_SetConfiguration, - HidD_SetFeature, HidD_SetNumInputBuffers, HidD_SetOutputReport, - HidP_GetButtonCaps, HidP_GetValueCaps): Add exports. - -2004-08-25 Lars Rune Nøstdal <daysleper@users.sourceforge.net> - - * include/wincon.h (CONSOLE_FULLSCREEN_MODE, CONSOLE_WINDOWED_MODE): - Add XP defines. - (PCOORD): Add typedef. - (GetConsoleDisplayMode, SetConsoleDisplayMode): Add prototypes. - -2004-08-25 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winldap.h: Don't check value of UNICODE. - Thanks to: "Jean-Do" <spab@users.sourceforge.net> - -2004-08-25 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__. - -2004-08-24 Sam Robb <samrobb@users.sourceforge.net> - - * include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500 - guard. - -2004-08-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h: Add WINBASEAPI token to prototypes, throughout. - -2004-08-15 Ken Fitlike <kenfitlike@users.sourceforge.net> - - * include/commctrl.h (WC_TREEVIEWA): Remove parenthenses. - -2004-08-10 Sebastian Nowak <snowak1@users.sourceforge.net> - - * include/ws2spi.h (LPWSPSELECT): Correct typedef. - -2004-08-10 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wincrypt.h: Correct _WIN32_WINNT typo. - -2004-08-10 Ed Schaller <schallee@darkmist.net> - - * include/wincrypt.h (MS_ENH_RSA_AES_PROV_A, MS_ENH_RSA_AES_PROV_W) - (ALG_SID_AES_128, ALG_SID_AES_192, ALG_SID_AES_256, ALG_SID_AES 17) - (CALG_AES_128, CALG_AES_192, CALG_AES_256, CALG_AES,PROV_RSA_AES): - Add defines. - (CALG_SHA1): Add define. - (HP_HMAC_INFO): Add define. - (HMAC_INFO): Add struct. - (BLOBHEADER): Add typedef. - -2004-07-26 Hartmut Honisch <hhonisch@users.sourceforge.net> - - * include/commctrl.h (TreeView_SetItemState): Define macro. - -2004-07-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (CMYK): Correct macro. Group CMYK/RGB - macros together. - -2004-07-24 Brodie Thiesfield <brofield@users.sourceforge.net> - - * include/shlobj.h (FILEDESCRIPTOR): Unicode it. - (FILEGROUPDESCRIPTOR): LIkewise. - -2004-07-06 Corinna Vinschen <corinna@vinschen.de> - - * winbase.h (IsWow64Process): Add missing WINAPI qualifier. - -2004-06-16 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (IMAGE_ORDINAL_FLAG): Map to ... - (IMAGE_ORDINAL_FLAG{32,64}: New defines. - (IMAGE_SNAP_BY_ORDINAL): Map to ... - (IMAGE_SNAP_BY_ORDINAL{32,64}: New defines. - (IMAGE_ORDINAL): Map to ... - (IMAGE_ORDINAL{32,64}: New defines. - (IMAGE_THUNK_DATA): Map to ... - (IMAGE_THUNK_DATA{32,64}: New structures. - (IMAGE_THUNK_DATA): Map to ... - (IMAGE_THUNK_DATA{32,64}: New structures. - (IMAGE_IMPORT_DESCRIPTOR): Map to ... - (IMAGE_IMPORT_DESCRIPTOR{32,64}: New structures. - (IMAGE_IMAGE_TLS_DIRECTORY) Map to ... - (IMAGE_IMAGE_TLS_DIRECTORY{32,64}: New structures. - -2004-06-16 Bang Jun-Young <junyoung@NetBSD.org> - - * w32api/include/winnt.h (WAITORTIMERCALLBACKFUNC): Protect with - _WIN32_WINNT >= 0x0500. - -2004-06-05 Luke Dunstan <infidel@users.sourceforge.net> - - * include/winbase.h (GetWriteWatch): Correct prototype. - (WRITE_WATCH_FLAG_RESET): Define. - Thanks to Sergey Philippov <phis@users.sourceforge.net>. - -2004-06-02 Rocher Laurent <lrocher@users.sourceforge.net> - - * include/commctrl.h (Animate_OpenEx): Define. - (DateTime_GetSystemTime, DateTime_SetSystemTime): Correct names. - (ListView_GetNumberOfWorkAreas): Correct macro. - (ListView_SetUnicodeFormat, ListView_GetUnicodeFormat, - ListView_SetItemCountEx, ListView_GetISearchString, - TreeView_GetLastVisible, Header_CreateDragImage, - Header_SetImageList, Header_GetImageList): Define. - (LVM_SETUNICODEFORMAT, LVM_GETUNICODEFORMAT, - MCM_GETUNICODEFORMAT, MCM_SETUNICODEFORMAT, - TBSTATE_ELLIPSES): Define. - (MonthCal_SetRange): Correct macro. - (ImageList_Duplicate): Declare. - -2004-05-29 Filip Navara <xnavara@volny.cz> - - * include/winnt.h (IMAGE_EXPORT_DIRECTORY): Fixed declaration. - -2004-05-25 Al Slater <al.slater@scluk.com> - - * include/httpext.h (HSE_SEND_HEADER_EX_INFO, - HSE_REQ_SEND_RESPONSE_HEADER_EX): Define. - -2004-05-15 Filip Navara <xnavara@volny.cz> - - * include/ddk/kbdmou.h: New file. - * lib/ddk/videoprt.def (VideoPortMapBankedMemory, - VideoPortMapDmaMemory, VideoPortMapMemory): Correct suffix. - * lib/ddk/ntoskrnl.def (_snprintf, _snwprintf, _vsnprintf, - _vsnwprintf, sprintf, swprintf): Export. - -2004-05-15 Filip Navara <xnavara@volny.cz> - - * include/ddk/ntddk.h: Don't set 4-byte alignment on included - headers. - -2004-05-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h: Correct non-unicode typedefs of - ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, LPENUMLOGFONTEXDV. - -2004-05-07 Pascal Obry <obry@act-europe.fr> - - * include/winsock.h (IN_CLASSA): Fix macro. - * include/winsock2.h (IN_CLASSA): Fix macro. - -2004-04-29 Bart Oldeman <bartoldeman@users.sourceforge.net> - - * include/objbase.h (STGOPTIONS): Correct pwcsTemplateFile type. - * include/aclui.h: Remove '\r', throughout. - * include/msacm.h: Likewise. - * lib/aclui.def: Likewise. - -2004-04-28 Luke Dunstan <infidel@users.sourceforge.net> - - * lib/comctl32.def (SetWindowSubclass): Add stub. - Thanks to Eugene <egladysh@users.sourceforge.net>. - -2004-04-24 Luke Dunstan <infidel@users.sourceforge.net> - - * include/winbase.h (EXECUTION_STATE): Add typedef. - (SetThreadExecutionState): Declare. - * include/wingdi.h (_WINGDI_): Define. - * include/objbase.h (_OBJBASE_H_): Define. - -2004-04-24 Luke Dunstan <infidel@users.sourceforge.net> - - * include/winuser.h (SM_IMMENABLED, SM_CXFOCUSBORDER, - SM_CYFOCUSBORDER, SM_TABLETPC, SM_MEDIACENTER): Add defines. - (SM_CMETRICS): Adjust value. - * include/winnt.h (PROCESSOR_ARCHITECTURE_MSIL): Correct define. - (PROCESSOR_ARCHITECTURE_AMD64, PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): - Add defines. - Thanks to Benoit Blanchon <bblanchon@users.sourceforge.net> - -2004-04-24 Justin Forest <vhex@users.sourceforge.net> - - * include/winsock2.h (LUP_DEEP, LUP_CONTAINERS, - LUP_NOCONTAINERS, LUP_NEAREST, LUP_RETURN_NAME, - LUP_RETURN_TYPE, LUP_RETURN_VERSION, LUP_RETURN_COMMENT, - LUP_RETURN_ADDR, LUP_RETURN_BLOB, LUP_RETURN_ALIASES, - LUP_RETURN_QUERY_STRING, LUP_RETURN_ALL, LUP_RES_SERVICE, - LUP_FLUSHCACHE, LUP_FLUSHPREVIOUS): Add defines. - -2004-04-24 Luke Dunstan <infidel@users.sourceforge.net> - - * include/windns.h (DNSREC_QUESTION, DNSREC_ANSWER, DNSREC_AUTHORITY, - DNSREC_ADDITIONAL): Add defines. - -2004-04-23 Robert Wruck <wruck@tweerlei.de> - - * include/commctrl.h (LPNMLVDISPINFO): Add defines. - -2004-04-23 Robert Wruck <wruck@tweerlei.de> - - * include/aclui.h: New file. - * lib/aclui.def: New file. - * lib/test.c: Add aclui.h to includes. - -2004-04-21 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (SPI_GETACTIVEWINDOWTRACKING, - SPI_GETACTIVEWNDTRKZORDER, SPI_SETACTIVEWINDOWTRACKING, - SPI_SETACTIVEWNDTRKZORDER): Remove duplicate defines. - -2004-04-20 Christopher Faylor <cgf@alum.bu.edu> - - * include/wingdi.h: Protect non-unicode case of below. - -2004-04-20 Christopher Faylor <cgf@alum.bu.edu> - - * include/wingdi.h: Protect use of ENUMLOGFONTEXDV, PENUMLOGFONTEXDV, - LPENUMLOGFONTEXDV with appropriate version check. - -2004-04-18 Hans Leidekker <hans@it.vu.nl> - - * lib/directx/dxguid.c (CLSID_DirectSoundPrivate, - DSPROPSETID_DirectSoundDevice): Add defines. - -2004-04-20 Adrian Sandor <aditsu@users.sourceforge.net> - - * include/msacm.h: New file. - -2004-01-09 Stuart Cunningham <stuart_hc@users.sourceforge.net> - - * include/objbase.h (STGFMT): Declare enum. - (STGOPTIONS): Declare structure. - (StgCreateStorageEx, StgOpenStorageEx): Declare. - (STGOPTIONS_VERSION): Define. - * lib/ole32.def (StgCreateStorageEx, StgOpenStorageEx): Add stubs. - -2004-04-13 Filip Navara <xnavara@volny.cz> - - * include/winuser.h (IS_INTRESOURCE, MB_CANCELTRYCONTINUE, - WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, WM_NCXBUTTONDBLCLK, - WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK, - DCX_INTERSECTUPDATE, MK_XBUTTON1, MK_XBUTTON2, - HELP_SETWINPOS): Define. - (WM_MOUSELAST): Different value for _WIN32_WINNT >= 0x0500. - (SPI_*): Add new definitions for WINVER >= 0x500. - (CallMsgFilter[AW], SetWindowsHookA): Correct prototype. - (InternalGetWindowText, SetWindowsHookW): Declare. - * include/winbase.h (InitializeSListHead): Avoid conflicting - definition with DDK headers. - -2004-04-13 Gé van Geldorp <gvg@reactos.com> - - * include/winuser.h (GetLastError): Move from here... - * include/winbase.h: ... to here. - -2004-04-13 Filip Navara <xnavara@volny.cz> - - * include/winspool.h (DocumentPropertiesW): Correct prototype. - -2004-04-13 Filip Navara <xnavara@volny.cz> - - * include/wingdi.h (ENHMETAHEADER): Add definitions for - WINVER >= 0x400. - (WCRANGE, GLYPHSET, LPPOLYTEXT[AW]): Declare. - (ENUMLOGFONTEXW): Fix definition. - (ENUMLOGFONTEXDV[AW]): Declare. - -2004-04-13 Filip Navara <xnavara@volny.cz> - - * include/wingdi.h: Declare the DirectDraw structures only if - the DirectDraw kernel mode headers aren't included. - (EMFINFO): Declare. - (EngStretchBlt, EngTextOut, FONTOBJ_cGetGlyphs, - STROBJ_bEnumPositionsOnly): Correct prototypes. - -2004-04-13 Filip Navara <xnavara@volny.cz> - - * include/objidl.h (PRPCOLEMESSAGE): Declare. - * include/rpc.h (RPCRTAPI): Define. - * include/rpcdce.h (RpcServerRegisterIf2): Declare. - * include/rpcdcep.h (RPC_BLOCKING_FN, I_RpcSend): Declare. - (RPC_BLOCKING_FUNCTION): Remove, replaced by RPC_BLOCKING_FN. - (I_RpcBindingSetAsync): Correct prototype. - * include/rpcndr.h (MIDL_STUB_MESSAGE): Rename 'Reserved' field - to w2kReserved. - (USER_MARSHAL_SIZING_ROUTINE, USER_MARSHAL_MARSHALLING_ROUTINE, - USER_MARSHAL_UNMARSHALLING_ROUTINE, USER_MARSHAL_FREEING_ROUTINE, - USER_MARSHAL_ROUTINE_QUADRUPLE, NDR_NOTIFY_ROUTINE, IDL_CS_CONVERT, - CS_TYPE_NET_SIZE_ROUTINE, CS_TYPE_LOCAL_SIZE_ROUTINE, - CS_TYPE_TO_NETCS_ROUTINE, CS_TYPE_FROM_NETCS_ROUTINE, - CS_TAG_GETTING_ROUTINE, NDR_CS_SIZE_CONVERT_ROUTINES, - NDR_CS_ROUTINES, NdrUserMarshalMarshall, NdrUserMarshalUnmarshall, - NdrUserMarshalBufferSize, NdrUserMarshalMemorySize, - NdrUserMarshalFree): Declare. - (MIDL_STUB_DESC): Add new fields that were added in W2K. - * include/rpcproxy.h (CStdStubBuffer): Ditto. - -2004-04-13 Filip Navara <xnavara@volny.cz>, David Welch <welch@cwcom.net> - - * include/ddk/ntapi.h (NtCurrentProcess, NtCurrentThread, - LPC_MESSAGE_BASE_SIZE): Define. - * include/ddk/ntifs.h: Move the pack pragma under header inclusion. - -2004-04-13 Filip Navara <xnavara@volny.cz> - - * include/commctrl.h (TB_MARKBUTTON, NMTBGETINFOTIP[AW]): - Declare. - -2004-04-18 Allan Bazinet <bazineta@users.sourceforge.net> - - * include/winuser.h (MONITORINFOEX[AW]): Change to be derived from - MONITORINFO when compiling as C++. - -2004-04-17 Luke Dunstan <infidel@users.sourceforge.net> - - * README.w32api: List separate copyright conditions for some headers. - * include/(winsock2.h, wsipx.h): Minor change to copyright header. - -2004-04-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (RGB): Correct macro. - -2004-04-14 Robert Wruck <rwruck@users.sourceforge.net> - - * include/ddk/winddk.h (RtlEqualLuid): Correct macro. - -2004-04-06 Luke Dunstan <infidel@users.sourceforge.net> - - * include/ocidl.h (QACONTAINERFLAGS): Correct typedef. - -2004-03-29 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/Makefile.in: Add directx to .PHONY target. - * lib/directx/dxerr.c: Remove dependence on mingw runtime. - Don't include stdio.h or tchar.h. - Replace _T() macro with TEXT() macro, throughout. - Replace _stprintf with wsprintf, throughout. - -2004-03-27 Hosaka Yuji <hos@tamanegi.org> - - * include/dbt.h (DBT_DEVTYP_DEVICEINTERFACE, DBT_DEVTYP_HANDLE): - Add define. - (DEV_BROADCAST_DEVICEINTERFACE, DEV_BROADCAST_HANDLE): Add struct. - * include/winuser.h (UnregisterDeviceNotification): Add prototype. - * lib/user32.def (UnregisterDeviceNotification): Add export stub. - -2004-03-27 Filip Navara <xnavara@volny.cz> - - * include/directx: New subdir. - * lib/directx: Ditto. - * include/directx/(d3d9.h, d3d9caps.h, d3d9types.h, dxerr8.h, - dxerr9.h): New files. - * lib/directx/(Makefile.in, d3d8.def, d3d9.def, d3dim.def, d3drm.def, - d3dx8d.def, d3dx9d.def, d3dxof.def, ddraw.def, dinput.def, - dinput_joy.c, dinput_joy2.c, dinput_kbd.c, dinput_mouse.c, - dinput_mouse2.c, dinput_private.h, dinput8.def, dmoguids.c, dplayx.def, - dpnaddr.def, dpnet.def, dpnlobby.def, dpvoice.def, dsetup.def, - dsound.def, dxerr.c, dxerr8.c, dxerr8w.c, dxerr9.c, dxerr9w.c, - dxguid.c, ksproxy.def, ksuser.c, ksuser.def, msdmo.def, quartz.def, - strmiids.c, test.c): Ditto. - * lib/(d3dim.def, d3drm.def, d3dxof.def, ddraw.def, dinput.c, - dinput.def, dplayx.def, dsetup.def, dsound.def, dxguid.c): Removed. - -2004-03-25 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/GL/glu.h (GLU_AUTO_LOAD_MATRIX, GLU_CULLING, - GLU_SAMPLING_TOLERANCE, GLU_DISPLAY_MODE, GLU_PARAMETRIC_TOLERANCE, - GLU_SAMPLING_METHOD, GLU_U_STEP, GLU_V_STEP): Define. - -2004-03-24 Filip Navara <xnavara@volny.cz> - - * include/commctrl.h (TB_GETSTRING[AW]): Add defines. - (RBBS_HIDETITLE, RBBS_TOPALIGN): Ditto. - -2004-03-24 Filip Navara <xnavara@volny.cz> - - * include/ddk/srb.h (_PORT_CONFIGURATION_INFORMATION): Rename - TaggedQueueing to TaggedQueuing. - (_HW_INITIALIZATION_DATA): Likewise. - -2004-03-16 Danny Smith <dannysmith@users.sourceforge.net> - - * include/docobj.h (IOleDocumentView::GetDocument): Correct - prototype. - Thanks to Buster Copley <consequent@users.sourceforge.net> - -2004-03-16 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/ddk/ntoskrnl.def (MmAllocatePagesForMdl): Correct suffix. - (MmMapIoSpace): Likewise. - Thanks to Dan Aloni <da-x@colinux.org> - -2004-03-16 Martin Fuchs <martin-fuchs@gmx.net> - - * include/shellapi.h (NIM_* NIS_*): Define constants for - notification icons with _WIN32_IE >= 0x0500. - (NOTIFYICONDATA): Add new structure members for notification - icons with _WIN32_IE >= 0x0500. - -2004-03-13 Danny Smith <dannysmith@users.sourceforge.net> - - *include/wininet.h (CACHEGROUP_SEARCH_ALL, CACHEGROUP_SEARCH_BYURL): - Add defines. - (INTERNET_CACHE_GROUP_ADD, INTERNET_CACHE_GROUP_REMOVE): Add defines. - (GROUPID) Add typedef. - (INTERNET_CACHE_GROUP_INFO[AW]): Define structures. - (CreateUrlCacheGroup): Add prototype. - (DeleteUrlCacheGroup): Add prototype. - (FindFirstUrlCacheGroup): Add prototype. - (FindNextUrlCacheGroup): Add prototype. - (GetUrlCacheGroupAttribute[AW]): Add prototypes. - (SetUrlCacheGroupAttribute[AW]): Add prototypes. - -2004-03-10 Al Slater <al.slater@scluk.com> - - * include/winsock2.h: Add missing LPFN_ typdefs for - function pointers. - Clean up whitespace. - -2004-03-05 Filip Navara <xnavara@volny.cz> - - * include/ddk/scsi.h: Replace assert with ASSERT. - * include/ddk/video.h: Ditto. - * include/ddk/winddk.h: Ditto. Remove the assert macro. - * include/ddk/tdi.h: Correct packing. - -2004-03-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wtypes.h (DECIMAL_SETZERO): Add definition for - NONAMELESSUNION case. - -2004-03-03 Martin Fuchs <martin-fuchs@gmx.net> - - * include/oleauto.h (V_UNION, V_VT, V_DECIMAL): Use - __VARIANT_NAME_ constants. - -2004-03-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/uxtheme.h: Include <commctrl.h> - -2004-03-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/basetyps.h (GUID_SECT): Define to nothing for GCC >= 2.95. - -2004-03-02 Martin Fuchs <martin-fuchs@gmx.net> - - * include/oleauto.h (VAR_VALIDDATE, VAR_FORMAT_NOSUBSTITUTE, - VAR_FOURDIGITYEARS): Define new constants. Group VAR_* defines - together. - (V_UI2, V_UI4, V_UI4REF, V_UI, V_UI8REF): Define macros. - (V_I8, V_I8REF): Correct macros. - (V_DECIMAL): Correct macro definitions. - (V_INT_PTR, V_UINT_PTR, V_INT_PTRREF, V_UINT_PTRREF): Define - constants. - (VTBIT_*): Define constants. - (UDATE): Add structure definition. - (VarDateFromUdate, VarDateFromUdateEx, VarUdateFromDate): Declare - functions. - (SafeArrayCreateVector): Correct parameter type from UINT to ULONG - (SafeArrayCreateVectorEx): Declare function. - (Var*): declare VARIANT manipulation functions. - * include/ocidl.h (IPicture_*): Define IPicture COBJ macros. - * include/oaidl.h (IRecordInfo_*): Define IRecordInfo COBJ - macros. - -2004-03-01 Martin Fuchs <martin-fuchs@gmx.net> - - * include/oaidl.h (FADF_*): Define missing constants. - (IDispatch_*): Define COBJ macros. - (VARIANT): Add missing union members llVal and ullVal. - (wireVARIANT): Likewise. - (ITypeinfo_*): Define COBJ macros. - * include/oleauto.h (Var*FromDisp): Correct parameter type from - LPDISPATCH* to LPDISPATCH. - (VARCMP_*, VAR_LOCALBOOL, LOCALE_USE_NLS, VARIANT_*, - VAR_CALENDAR_*): Add missing constants. - (SafeArray[Get/Set]*): Add prototypes. - (Var*From*): Add missing prototypes. - (NUMPRS_*): Add defines. - (NUMPARSE): Define structure. - (VarParseNumFromStr,VarNumFromParseNum): Add prototypes. - * include/winerror.h (DISP_E_DIVBYZERO): Define constant. - * include/winuser.h (COLOR_*): Define missing constants. - * include/wtypes.h (enum VARENUM): Add VT_INT_PTR, VT_UINT_PTR. - (VT_INT_PTR, VT_UINT_PTR): Remove macro definitions. - -2004-02-23 Filip Navara <xnavara@volny.cz> - - * include/ddk/video.h: Corrected packing. - -2004-02-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/GL/glu.h (GLU_ERROR): Define. - Thanks to Philip Lamb <phil at rave dot co dot nz> - -2004-02-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/GL/glu.h: Include <stddef.h>. - Thanks to Greg Couch <gregcouch@users.sourceforge.net> - -2004-02-15 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment version to 3.0. - * Makefile.in: Ditto. - * README.win32api: Modify license to Public Domain per agreement as - found in the mingw-dvlpr list archive. - -2004-02-13 Earnie Boyd <earnie@users.sourceforge.net> - - * include/ddk/winddk.h (DIRECTORY_QUERY): Add define. - (DIRECTORY_TRAVERSE): Ditto. - (DIRECTORY_CREATE_OBJECT): Ditto. - (DIRECTORY_CREATE_SUBDIRECTORY): Ditto. - (DIRECTORY_ALL_ACCESS): Ditto. - Thanks to Konstantin Stepaniuk <skostia@users.sourceforge.net> - -2004-02-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/basetypes.h (_REFIID_DEFINED): Correct typo. - - * include/winuser.h (NCCALCSIZE_PARAMS): Define structure. - Thanks to Mike Nordell <tamlin at algonet dot se>. - -2004-02-11 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/dnsapi.def: New file. - * lib/test.c: Include windns.h. - -2004-02-11 Pierre A. Humblet <Pierre.Humblet@ieee.org> - - * include/windns.h: New file. - -2004-02-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/sqlucode.h (SQLGetStmtAttr[AW]): Remove duplicate - defines. - (SQLSetStmtAttr[AW]): Move into ODBCVER >= 0x0300 block. - (SQLSetDescFieldW): Correct prototype. - (SQLSetDescFieldA): Add prototype. - (SQLGetDescFieldW): Add prototype. - -2004-02-11 Pat Thoyts <patthoyts@users.sourceforge.net> - - * include/winuser.h (DFC_POPUPMENU): Add define. - -2004-02-07 Dan Aloni <da-x@gmx.net> - - * lib/ddk/ntoskrnl.def (KeSetTimer,KeSetTimerEx): Correct - suffix. - -2004-02-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/oleacc.h (LIBID_Accessibility): Declare. - * lib/uuid.c (LIBID_Accessibility): Define. - -2004-02-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winioctl.h (NTFS_VOLUME_DATA_BUFFER): Add structure. - (FSCTL_GET_NTFS_VOLUME_DATA): Add macro. - -2004-02-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (ICC_STANDARD_CLASSES, ICC_LINK_CLASS): Add - defines. - -2004-01-31 Jiri Malak <Jiri.Malak@geac.cz> - - * include/winuser.h (RT_MANIFEST): Make conditional on - RC_INVOKED. - (CREATEPROCESS_MANIFEST_RESOURCE_ID, - ISOLATIONAWARE_MANIFEST_RESOURCE_ID, - ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID): Add - defines. - -2004-01-16 Martin Fuchs <martin-fuchs@gmx.net> - - * include/shlobj.h (SHGDN_INCLUDE_NONFILESYS): Add define. - -2004-01-15 Filip Navara <xnavara@volny.cz> - - * include/ddk/mcd.h: Don't care about value of DBG define. - * include/ddk/srb.h: Ditto. - * include/ddk/storport.h: Ditto. - * include/ddk/video.h: Ditto. - * include/nspapi.h (SetServiceW, GetAddressByNameA, - GetAddressByNameW): Correct protoype. - * include/ntsecapi.h (PCUNICODE_STRING): Define. - -2004-01-05 Filip Navara <xnavara@volny.cz> - - * include/prsht.h (LPCPROPSHEETPAGEW): Fix definition. - * include/shlwapi.h (SHRegQueryInfoUSKey[AW]): Fix prototype. - * include/cpl.h (CPL_STARTWPARMS[AW]): Correct. - * include/shellapi.h (ABS_AUTOHIDE, ABS_ALWAYSONTOP, - SEE_MASK_NO_CONSOLE, SEE_MASK_ASYNCOK, SEE_MASK_HMONITOR, - FOF_NOCOPYSECURITYATTRIBS): Add defines. - * include/shlobj.h (BFFM_SETOKTEXT, BFFM_SETEXPANDED, - CSIDL_FLAG_DONT_VERIFY, CSIDL_FLAG_CREATE, CSIDL_FLAG_MASK, - CFSTR_INETURL[AW], SHGDN_FOREDITING, SHGDN_FORADDRESSBAR, - SSF_*): Add defines. - (SHCNF_PATH[AW], SHCNF_PRINTER[AW], CFSTR_FILENAME[AW], - CFSTR_FILENAMEMAP[AW], CFSTR_FILEDESCRIPTOR[AW], CFSTR_SHELLURL, - CMDSTR_NEWFOLDER[AW], CMDSTR_VIEWLIST[AW], CMDSTR_VIEWDETAILS[AW]): - Correct. - (IEnumIDList): Add COBJMACROS. - * include/winuser.h (MIM_*): Add define. - -2004-01-04 Filip Navara <xnavara@volny.cz> - - * include/shlguid.h (IID_IPersistFolder2, IID_IPersistFolder3, - IID_IShellFolder2, IID_IFileSystemBindData): Add declarations. - * include/shlobj.h (EXTRASEARCH, SHCOLSTATEF, SHELLDETAILS, - PERSIST_FOLDER_TARGET_INFO): Define structures. - (IEnumExtraSearch, IShellFolder2, IFileSystemBindData, - IPersistFolder2, IPersistFolder3): Add COM interface - definitions. - (IExtractIcon[AW], IShellLink[AW], IPersistFolder, IShellView, - ICommDlgBrowser, IShellFolder2, IPersistFolder2, IPersistFolder3): - Add COBJMACROS. - (SHCreateDirectoryEx[AW], SHBindToParent): Add prototypes. - * lib/shell32.c (IID_IPersistFolder2, IID_IPersistFolder3, - IID_IShellFolder2, IID_IFileSystemBindData): Add definitions. - -2004-01-03 Danny Smith <dannysmith@users.sourceforge.net> - - * include/mshtml.h (IHTMLDocument2): Correct write, writeln - declarations. - Thanks to: Rene Nyffenegger <renenyffenegger@users.sf.net>. - -2004-01-03 Filip Navara <xnavara@volny.cz> - - * include/cguid.h (CLSID_StdGlobalInterfaceTable): Declare IID. - * include/oaidl.h (ITypeLib2, ITypeInfo2): Define interfaces, - declare IID's. - (IErrorInfo): Add COBJMACROS. - * include/objbase.h (STGM_NOSNAPSHOT): Add define. - (CoGetPSClsid): Add protototype, - (CoRegisterPSClsid): Likewise. - * include/objidl.h (IMarshal): Correct methods. - (IMallocSpy): Likewise, - (LPPSFACTORYBUFFER): Add typedef. - (IGlobalInterfaceTable): Define interface and COBJMACROS. Declare - IID. - (IStorage_CreateStorage, IRpcStubBuffer_Invoke): Fix macros. - * include/ocidl.h (PROPBAG2_TYPE): Define enum. - (PROPBAG2, QACONTAINERFLAGS, QACONTAINER, QACONTROL): Define - structures. - (IPropertyBag2, IPersistPropertyBag2,IAdviseSinkEx, IPointerInactive, - IOleUndoUnit, IOleParentUndoUnit, IEnumOleUndoUnits, IOleUndoManager, - IQuickActivate): Define interfaces. Declare IID's. - (IPersistPropertyBag2): Add COBJMACROS. - (LPOLEUNDOMANAGER): Add typedef. - (LPPROPERTYBAG2): Likewise. - * include/oleidl.h (LPPARSEDISPLAYNAME): Fix definiton. - (BINDSPEED): Add definition. - (IParseDisplayName, IOleItemContainer, IOleObject, IDropSource, - IDropTarget): Add COBJMACROS. - * include/wtypes.h (MEMCTX, MSHCTX): Fix enum. - * include/winerror.h (CO_S_NOTALLINTERFACES): Add define. - * lib/uuid.c (IID_IGlobalInterfaceTable, IID_IOleUndoManager, - IID_IPersistPropertyBag2, IID_IPropertyBag2, IID_IRpcProxyBuffer): - Add IID definitions. - -2004-01-02 Filip Navara <xnavara@volny.cz> - - * include/ddk/winddk.h: Don't care about value of - DBG define. - -2004-01-02 Danny Smith <dannysmith@users.sourceforge.net> - Filip Navara <xnavara@volny.cz> - - * include/ddk/winddk.h (_DDK_DUMMYUNION_MEMBER, - _DDK_DUMMYUNION_N_MEMBER): New macros. - (ExAllocateFromPagedLookasideList,ExFreeToPagedLookasideList, - ExAllocateFromNPagedLookasideList, ExFreeToNPagedLookasideList): - Use them. - -2004-01-01 Filip Navara <xnavara@volny.cz> - - * include/objbase.h: Don't care about value of DBG define. - * include/objidl.h: Add some COBJMACROS. - * include/ocidl.h: Ditto. - * include/oleidl.h: Ditto. - * include/servprov.h: Ditto. - * include/shlobj.h: Ditto. - * include/shlobj.h (IContextMenu2): Correct parent in - DECLARE_INTERFACE. - * include/oleidl.h (IOleCache, IOleCache2, IOleCacheControl): - Define interfaces. - * include/setupapi.h (SetupGetLineTextA): Correct prototype. - Add new constants for _SETUPAPI_VER >= 0x501. - -2004-01-01 Filip Navara <xnavara@volny.cz> - - * include/winnt.h (NtCurrentTeb): Add inline definition. - -2004-01-01 Martin Fuchs <martin-fuchs@gmx.net> - - * include/shlobj.h (SHCoCreateInstance): Add prototype. - * lib/shell32.def (SHCoCreateInstance): Add export stub. - -2004-01-01 Igor Pechtchanski <pechtcha@cs.nyu.edu> - - * lib/setupapi.def (CM_Request_Device_Eject[AW]): Add export. - (CM_Request_Device_Eject_Ex[AW]): Likwise. - * include/ddk/cfg.h (DN_*): Add defines. - -2004-01-01 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/ddk/cfgmgr32.def: Remove duplicate symbol names. - -2004-01-01 Mattia Barbon <mbarbon@users.sourceforge.net> - - * include/commctrl.h (TVN_GETINFOTIP): Add UNICODE mappings. - (NMTVGETINFOTIP): Add structure. - -2003-12-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (DISPLAY_DEVICE_*): Remove defines. - * include/wingdi.h (DISPLAY_DEVICE_REMOVABLE, - DISPLAY_DEVICE_MODESPRUNED): Add defines. - -2003-12-08 Hartmut Honisch <hhonisch@users.sourceforge.net> - - * include/commctrl.h (ListView_Get_State, ListView_Check_State): - Add macros. - * include/wingdi.h (DISPLAY_DEVICE_*): Add multi-monitor - constants. - * include/shlobj.h (SHCOLUMNINIT): Add structure. - (SHCOLUMNDAT): Likwise. - (SHCOLUMNID): Likewise. - (SHCOLUMNINFO): Likewise. - (SHCOLSTATE): Add enum. - (IColumnProvider): Add COM interface. - (IQueryInfo): Likewise. - (IShellIconOverlayIdentifier): Likewise. - * include/shlguid.h (IID_IColumnProvider) Declare. - (IID_IQueryInfo): Likweise. - (IID_IShellIconOverlayIdentifier): Likwise. - * lib/shell32.c (IID_IColumnProvider) Define. - (IID_IQueryInfo): Likweise. - (IID_IShellIconOverlayIdentifier): Likwise. - -2003-12-08 Roald Ribe <rrib@users.sourceforge.net> - - * include/winuser.h (RT_MANIFEST): Add define. - -2003-12-08 Pascal Buhler <pbuhler@users.sourceforge.net> - - * include/oleidl.h (IViewObject2): Inherit from IViewObject. - -2003-12-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (GetCurrentFiber): Remove duplicate prototype. - (GetFiberData): Likewise. - (GetCurrentFiber): Change volatile to __volatile__. - (GetFiberData): Likewise. - -2003-11-27 Christopher Faylor <cgf@redhat.com> - - * lib/Makefile.in: Use make function to locate .mri file to allow - building in directory other than source directory. - -2003-11-27 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/vfw32.def: Remove, replacing with ... - * lib/msvfw32.def: New file. - * lib/avicap32.def: New file. - * lib/avifil32.def: New file. - * lib/vfw32.mri: New file. - * Makefile.in: (MRI_FILES, MIMPLIBS): New vars for - import libs with multiple dll's. - (LIBS): Add MIMPLIBS. - (DISTFILES): Add MRI_FILES. - (libvfw32.a): Build using mri script. - -2003-11-23 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (PAGE_*): Group defines together. Change - constants to hex notation. - -2003-11-15 Manu B <manubee@users.sourceforge.net> - - * include/commctrl.h (TabCtrl_GetImageList): Add macro. - -2003-11-13 Martin Fuchs <martin-fuchs@gmx.net> - - * include/shlobj.h (ILAppendID, ILClone, ILCloneFirst, ILCombine, - ILFindChild, ILFindLastID, ILFree, ILGetNext, ILGetSize, ILIsEqual, - ILIsParent, ILLoadFromStream, ILRemoveLastID, ILSaveToStream): - Add prototypes. - * lib/shell32.def: Add stubs. - - * include/commctrl.h (ListView_FindItem): Add type cast to avoid - compiler warnings. - -2003-11-13 Hans Leidekker <hans@it.vu.nl> - - * include/winbase.h (WIN32_STREAM_ID): Correct typedef. - -2003-10-13 Andre Auzi <aauzi@users.sourceforge.net> - - * include/windows.h (CopyCursor): Define as macro. - -2003-10-13 Steven Edwards <Steven_Ed4153@yahoo.com> - - * include/winnt.h (CONTAINING_RECORD): Add macro. - -2003-10-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h: (FILE_SUPERSEDED, FILE_OPENED, FILE_CREATED, - FILE_OVERWRITTEN, FILE_EXISTS, FILE_DOES_NOT_EXIST): Remove - defines. - -2003-10-13 Filip Navara <xnavara@volny.cz> - - * include/commctrl.h (DSA_*): Add prototypes, typedefs and - defines for Dynamic Storage Arrays. - (DPA_*): Likewise, for Dynamic Pointer Arrays. - (FlatSB_*, InitializeFlatSB, InitializeFlatSB): Add prototypes - and defines for Flat ScrollBars. - (SetWindowSubclass, GetWindowSubclass, RemoveWindowSubclass, - DefSubclassProc): Add prototypes for subclassing. - (DrawShadowText): Add prototype. - (COMCTL32_VERSION): Define. - -2003-10-13 Martin Fuchs <Martin-Fuchs@gmx.net> - - * include/shlobj.h (CFSTR_FILENAME, CFSTR_FILEDESCRIPTOR, - CFSTR_FILENAMEMAP, CFSTR_SHELLURL): Correct UNICODE definitions. - -2003-10-13 Pierre Humblet <pierre.humblet@ieee.org> - - * include/winnt.h (SM_REMOTESESSION): Add define. - * include/winuser.h (SE_CREATE_GLOBAL_NAME): Ditto. - -2003-10-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wincrypt (KP_IV, KP_SALT, KP_PADDING, KP_MODE, - KP_MODE_BITS, KP_PERMISSIONS, KP_ALGID, KP_BLOCKLEN): Remove - duplicate definitions. - (KP_X, KP_Y): Correct typos. - -2003-10-11 Manu B <manubee@users.sourceforge.net> - - * include/afxres.h: New file. - - * include/richedit.h (ES_NOOLEDRAGDROP, ENM_DRAGDROPDONE, - ENM_IMECHANGE, ENM_LANGCHANGE, ENM_OBJECTPOSITIONS, - ENM_SCROLLEVENTS): Add constants. - - * include/richedit.h (ES_SELECTIONBAR, ENM_LINK): Sort constants. - -2003-10-09 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/errorep.h: New file. - - * lib/faultrep.def: New file. - -2003-10-09 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h (AddVectoredExceptionHandler): Define if - _WIN32_WINNT >= 0x0500. - - * include/winnt.h (PVECTORED_EXCEPTION_HANDLER): Define if - _WIN32_WINNT >= 0x0500. - -2003-10-08 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h (AddVectoredExceptionHandler): Only define if - _WIN32_WINNT >= 0x0501. - -2003-10-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h [_WIN32_WINNT >= 0x0500] (SetComputerNameEx[AW], - UnregisterWaitEx): Add functions. - - * include/winbase.h [_WIN32_WINNT >= 0x0500] - (AddVectoredExceptionHandler, RemoveVectoredExceptionHandler): Add - or guard function. The MSDN says it is available on Windows XP and - better, and then it says it is declared for _WIN32_WINNT >= 0x0500. - Huh? - - * include/winbase.h [_WIN32_WINNT >= 0x0501] (AddRefActCtx, - CreateActCtx[AW], SetFileShortName[AW], SetFileValidData, - ZombifyActCtx, QueryActCtxW): Add functions. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] - (QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX, - QUERY_ACTCTX_FLAG_ACTCTX_IS_HMODULE, - QUERY_ACTCTX_FLAG_ACTCTX_IS_ADDRESS): Add constants. - - * include/winbase.h [_WIN32_WINNT >= 0x0502] (SetDllDirectory[AW], - SetFirmwareEnvironmentVariable[AW]): Add functions. - - * include/winnt.h [_WIN32_WINNT >= 0x0500] (VER_BUILDNUMBER, - VER_MAJORVERSION, VER_MINORVERSION, VER_PLATFORMID, - VER_SERVICEPACKMAJOR, VER_SERVICEPACKMINOR, VER_SUITENAME, - VER_PRODUCT_TYPE, VER_EQUAL, VER_GREATER, VER_GREATER_EQUAL, - VER_LESS, VER_LESS_EQUAL, VER_AND, VER_OR): Add constants. - - * include/winnt.h [_WIN32_WINNT >= 0x0501] - (PVECTORED_EXCEPTION_HANDLER): Add callback. - - * include/winnt.h [_WIN32_WINNT >= 0x0501] - (ACTIVATION_CONTEXT_INFO_CLASS, - ACTIVATION_CONTEXT_ASSEMBLY_DETAILED_INFORMATION, - ACTIVATION_CONTEXT_DETAILED_INFORMATION, - ACTIVATION_CONTEXT_QUERY_INDEX, ASSEMBLY_FILE_DETAILED_INFORMATION): - Add structures. - - * lib/user32.def (AddRefActCtx, AddVectoredExceptionHandler, - CreateActCtx[AW], SetComputerNameEx[AW], SetDllDirectory[AW], - SetFileShortName[AW], SetFileValidData, - SetFirmwareEnvironmentVariable[AW], UnregisterWaitEx, - VerSetConditionMask, ZombifyActCtx, QueryActCtxW): Add functions. - -2003-10-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h (GetWriteWatch, IsSystemResumeAutomatic, - ResetWriteWatch): Add function. - - * include/winbase.h [_WIN32_WINNT >= 0x0500] - (GetSystemWindowsDirectory[AW], ProcessIdToSessionId, ReplaceFile[AW]): - Add functions. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] - (GetSystemWow64Directory[AW], HeapQueryInformation, - HeapSetInformation, InitializeSListHead, InterlockedFlushSList, - InterlockedPopEntrySList, InterlockedPushEntrySList, IsProcessInJob, - IsWow64Process, QueryMemoryResourceNotification, ReleaseActCtx, - RemoveVectoredExceptionHandler): Add functions. - - * include/winnt.h [_WIN32_WINNT >= 0x0501] (HEAP_INFORMATION_CLASS): - Add enumeration. - - * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetThreadIOPendingFlag): - Add function. - - * include/winbase.h [_WIN32_WINNT >= 0x0510] (RestoreLastError): - Add function. The MSDN Magazine of June 2003 reads: - RestoreLastError is an enigma. It's code is identical to - SetLastError. It's unclear to me why it was made into a - separate API. - - * lib/user32.def (GetSystemWindowsDirectory[AW], - GetSystemWow64Directory[AW], GetThreadIOPendingFlag, - HeapQueryInformation, HeapSetInformation, InitializeSListHead, - InterlockedFlushSList, InterlockedPopEntrySList, - InterlockedPushEntrySList, IsSystemResumeAutomatic, IsWow64Process, - ProcessIdToSessionId, QueryMemoryResourceNotification, ReleaseActCtx, - RemoveVectoredExceptionHandler, ReplaceFile[AW], ResetWriteWatch, - RestoreLastError): Add functions. - -2003-10-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h [_WIN32_WINNT >= 0x0500] (GetComputerNameEx[AW], - GetProcessIoCounters): Add functions. - - * include/winbase.h [_WIN32_WINNT >= 0x0500] (COMPUTER_NAME_FORMAT): - Move around, needed by GetComputerNameEx. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] (FindActCtxSectionGuid, - FindActCtxSectionString[AW], GetCurrentActCtx, GetNativeSystemInfo): - Add functions. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] - (ACTCTX_SECTION_KEYED_DATA): Add structure. - - * include/winbase.h [_WIN32_WINNT >= 0x0502] (GetDllDirectory[AW], - GetFirmwareEnvironmentVariable[AW], GetProcessHandleCount, - GetProcessId, GetSystemRegistryQuota): Add functions, available on - Windows XP SP1 and better. - - * include/winnt.h [_WIN32_WINNT >= 0x0501] - (ACTIVATION_CONTEXT_SECTION_ASSEMBLY_INFORMATION, - ACTIVATION_CONTEXT_SECTION_DLL_REDIRECTION, - ACTIVATION_CONTEXT_SECTION_WINDOW_CLASS_REDIRECTION, - ACTIVATION_CONTEXT_SECTION_COM_SERVER_REDIRECTION, - ACTIVATION_CONTEXT_SECTION_COM_INTERFACE_REDIRECTION, - ACTIVATION_CONTEXT_SECTION_COM_TYPE_LIBRARY_REDIRECTION, - ACTIVATION_CONTEXT_SECTION_COM_PROGID_REDIRECTION, - ACTIVATION_CONTEXT_SECTION_CLR_SURROGATES): Add constants. - - * lib/user32.def (FindActCtxSectionGuid, FindActCtxSectionString[AW], - GetComputerNameEx[AW], GetCurrentActCtx, GetDllDirectory[AW], - GetFirmwareEnvironmentVariable[AW], GetModuleHandleEx[AW], - GetNativeSystemInfo, GetProcessHandleCount, GetProcessIoCounters): - Add functions. - -2003-10-07 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h [_WIN32_WINNT >= 0x0501] - (CheckRemoteDebuggerPresent, DebugActiveProcessStop, DebugBreakProcess, - DebugSetProcessKillOnExit): Add functions. - - * include/winbase.h [_WIN32_WINNT >= 0x0500] (DeleteTimerQueue, - DeleteTimerQueueEx, DeleteTimerQueueTimer, - DnsHostnameToComputerName[AW]): Add functions. - - * lib/user32.def (CheckRemoteDebuggerPresent, DebugActiveProcessStop, - DebugBreakProcess, DebugSetProcessKillOnExit, DeleteTimerQueueEx, - DeleteTimerQueueTimer, DnsHostnameToComputerName[AW]): Add functions. - -2003-10-07 Kobun Fujimori <kobun@users.sourceforge.net> - - * include/winbase.h (GetVolumePathNamesForVolumeName): Available - on Windows XP and later. - -2003-10-07 Manu B <manubee@users.sourceforge.net> - - * include/commctrl.h (TreeView_Select): Returns BOOL. - -2003-10-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h (CancelDeviceWakeupRequest): Add function. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] - (CreateMemoryResourceNotification, DeactivateActCtx): Add functions. - - * include/winbase.h [_WIN32_WINNT >= 0x0500] (CreateTimerQueue, - CreateTimerQueueTimer): Add function. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] - (MEMORY_RESOURCE_NOTIFICATION_TYPE): Add enumeration. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] - (DEACTIVATE_ACTCTX_FLAG_FORCE_EARLY_DEACTIVATION): Add constant. - - * include/winnt.h (WT_*): Add constants. - - * lib/user32.def (CancelDeviceWakeupRequest, - CreateMemoryResourceNotification, CreateTimerQueueTimer, - DeactivateActCtx): Add functions. - -2003-10-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h [_WIN32_WINNT >= 0x0400] (ConvertFiberToThread): - Add function. Sometimes I don't understand MSDN. This function is - available on Windows XP and Server 2003, but the SDK is supposed to - make it available when _WIN32_WINNT >= 0x0400, or so says the MSDN. - Mmmh... - - * include/winbase.h [_WIN32_WINNT >= 0x0400] (CreateFiberEx): - Guard function. Same remark as above. - - * lib/user32.def (ConvertFiberToThread, CreateFiberEx): - Add functions. - -2003-10-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX_FLAG_*): - Add constants. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] (ACTCTX[AW]): Add - structures. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] (ActivateActCtx): Add - function. MSDN says the first argument is HACTCTX but I'm not sure - where such a specialized handle is defined, so use HANDLE instead. - - * include/winbase.h [_WIN32_WINNT >= 0x0501] (AttachConsole, - CheckNameLegalDOS8Dot3[AW]): Add functions. - - * lib/user32.def (ActivateActCtx, AttachConsole, - CheckNameLegalDOS8Dot3[AW]): Add functions. - - * lib/user32.def (AddLocalAlternateComputerName[AW]): Add functions. - Unfortunately I don't know which header to put the declarations in. - -2003-10-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winnls.h (CTRY_KYRGYZSTAN, CTRY_MALDIVES, CTRY_MONGOLIA): - Add constants. - - * include/winnls.h (NLS_FUNCTION, SYSGEOCLASS, SYSGEOTYPE): Add - constants for National Language Support. - - * include/winnls.h (NLSVERSIONINFO): Add structure for National - Language Support. - - * include/winnls.h (GEO_ENUMPROC): Add callback for National - Language Support. - - * include/winnls.h (EnumSystemGeoID, GetCalendarInfo[AW], - GetGeoInfo[AW], GetUserGeoID, SetCalendarInfo[AW], SetUserGeoID): - Add functions. - - * include/winnls.h (IsNLSDefinedString, GetNLSVersion): Add - functions. Strange... I am unable to find which library contains - these functions. Can't find anything with pexports. Any clue? - - * lib/user32.def (EnumSystemGeoID, GetGeoInfo[AW], GetUserGeoID, - SetUserGeoID): Add functions. - -2003-10-06 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winnt.h (LANG_KYRGYZ, LANG_MONGOLIAN, LANG_GALICIAN, - LANG_SYRIAC, LANG_INVARIANT, SUBLANG_KASHMIRI_SASIA): Add constants. - - * include/winnt.h (SUBLANG_AZERI_LATIN, SUBLANG_AZERI_CYRILLIC, - SUBLANG_ENGLISH_ZIMBABWE, SUBLANG_ENGLISH_PHILIPPINES): Fix wrong - value for constants. - -2003-10-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wincrypt.h (SCHANNEL_MAC_KEY, SCHANNEL_ENC_KEY, - INTERNATIONAL_USAGE, KP_SCHANNEL_ALG): Add constants. Specifying - the algorithms. - -2003-10-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wincrypt.h (CRYPT_FLAGS_*): Add constants. Protocol flags. - -2003-10-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/wincrypt.h (KP_*): Add constants. Needed by - CryptSetKeyParam() and other functions. - -2003-10-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [_WIN32_WINNT >= 0x0501] (EVENT_*, CONSOLE_*): - Add constants, related to Console Accessibility. - -2003-10-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [WINVER >= 0x0500] (EVENT_MAX): Ooops... - wrong value for constant. - -2003-10-03 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [WINVER >= 0x0500] (EVENT_*): Add constants. - - * include/uxtheme.h: Cleanup. - * include/tmschema.h: Cleanup. - -2003-10-02 Luke Dunstan <infidel@users.sourceforge.net> - - * include/winspool.h (GetDefaultPrinter[AW]): Add functions. - * lib/winspool.def (GetDefaultPrinter[AW]): Add stubs. - -2003-10-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (INVALID_FILE_ATTRIBUTES): Fix define. - -2003-09-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (BSF_*, BSM_*): Sync constants defined in - both winuser.h and dbt.h. - * include/dbt.h (BSF_*, BSM_*): Likewise. - - * include/winuser.h (struct tagRAWINPUT): Remove - _ANONYMOUS_UNION tag from named union. - (struct tagRAWMOUSE): Add _ANONYMOUS_STRUCT to nameless struct. - -2003-09-30 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/dhcpcdsk.h: New file. - Note that MSDN is confused about whether it should start constant - and structure names with DHCPCAPI or DHCPAPI. It's using both but - experience suggests it's DHCPCAPI with `C'. - - * lib/dhcpcsvc.def: New file. - -2003-09-30 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_INPUT, - RIM_INPUTSINK): Add constants, for use by WM_INPUT notification. - - * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIDEV_REMOVE, - RIDEV_EXCLUDE, RIDEV_PAGEONLY, RIDEV_NOLEGACY, RIDEV_INPUTSINK, - RIDEV_CAPTUREMOUSE, RIDEV_NOHOTKEYS, RIDEV_APPKEYS): Add constants, - for use in RAWINPUTDEVICE. - - * include/winuser.h [_WIN32_WINNT >= 0x0501] - (GetRawInputDeviceInfo[AW]): Ooops... there are - ANSI/Unicode versions of this function. - - * lib/user32.def (GetRawInputDeviceInfo[AW]): Ooops... there - are ANSI/Unicode versions of this function. - -2003-09-29 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [_WIN32_WINNT >= 0x0501] (RIM_TYPEMOUSE, - RIM_TYPEKEYBOARD, RIM_TYPEHID, MOUSE_MOVE_RELATIVE, - MOUSE_MOVE_ABSOLUTE, MOUSE_VIRTUAL_DESKTOP, - MOUSE_ATTRIBUTES_CHANGED, RI_MOUSE_LEFT_BUTTON_DOWN, - RI_MOUSE_LEFT_BUTTON_UP, RI_MOUSE_RIGHT_BUTTON_DOWN, - RI_MOUSE_RIGHT_BUTTON_UP, RI_MOUSE_MIDDLE_BUTTON_DOWN, - RI_MOUSE_MIDDLE_BUTTON_UP, RI_MOUSE_BUTTON_1_DOWNT_BUTTON_DOWN, - RI_MOUSE_BUTTON_1_UP, RI_MOUSE_BUTTON_2_DOWNHT_BUTTON_DOWN, - RI_MOUSE_BUTTON_2_UP, RI_MOUSE_BUTTON_3_DOWNDLE_BUTTON_DOWN, - RI_MOUSE_BUTTON_3_UP, RI_MOUSE_BUTTON_4_DOWN, - RI_MOUSE_BUTTON_4_UP, RI_MOUSE_BUTTON_5_DOWN, - RI_MOUSE_BUTTON_5_UP, RI_MOUSE_WHEEL, KEYBOARD_OVERRUN_MAKE_CODE, - RI_KEY_MAKE, RI_KEY_BREAK, RI_KEY_E0, RI_KEY_E1, - RI_KEY_TERMSRV_SET_LED, RI_KEY_TERMSRV_SHADOW, RID_INPUT, - RID_HEADER, RIDI_PREPARSEDDATA, RIDI_DEVICENAME, - RIDI_DEVICEINFO): Add constants. - - * include/winuser.h [_WIN32_WINNT >= 0x0501] (RAWINPUTHEADER, - RAWMOUSE, RAWKEYBOARD, RAWHID, RAWINPUT, RAWINPUTDEVICE, - RAWINPUTDEVICELIST): Add structures. - - * include/winuser.h [_WIN32_WINNT >= 0x0501] (DefRawInputProc, - GetRawInputBuffer, GetRawInputData, GetRawInputDeviceInfo, - GetRawInputDeviceList, GetRegisteredRawInputDevices): Add functions. - - * lib/user32.def (DefRawInputProc, GetRawInputBuffer, - GetRawInputData, GetRawInputDeviceInfo, GetRawInputDeviceList, - GetRegisteredRawInputDevices): Add functions. - -2003-09-26 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winable.h (BlockInput): Add function. - - * include/winable.h (WS_ACTIVECAPTION): Add constant. - For use with WINDOWINFO structure. - - * include/winuser.h [_WIN32_WINNT >= 0x0500] (LockWorkStation): - Add function. - - * include/winuser.h [_WIN32_WINNT >= 0x0501] (IsWinEventHookInstalled): - Add function. - - * include/winuser.h [WINVER >= 0x0500] (UnhookWinEvent): - Add function... - - * include/winable.h [WINVER < 0x0500] (UnhookWinEvent): - ...and duplicate. - - * include/winuser.h [_WIN32_WINNT >= 0x0403] (SendInput): - Guard function... - - * include/winable.h [_WIN32_WINNT < 0x0403] (SendInput): - ...and duplicate. - - * include/winuser.h [WINVER >= 0x0500] (NotifyWinEvent): - Guard function... - - * include/winable.h [WINVER < 0x0500] (NotifyWinEvent): - ...and duplicate. - - * include/winuser.h [WINVER >= 0x0500] (MOUSEINPUT, KEYBDINPUT, - HARDWAREINPUT, INPUT): Guard structures... - - * include/winable.h [WINVER < 0x0500] (MOUSEINPUT, KEYBDINPUT, - HARDWAREINPUT, INPUT): ...and duplicate. - - * include/winuser.h [_WIN32_WINNT >= 0x0403] (INPUT_MOUSE, - INPUT_KEYBOARD, INPUT_HARDWARE): Guard constants... - - * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE, - INPUT_KEYBOARD, INPUT_HARDWARE): ...and duplicate. - - * include/winuser.h: Move around some lines. Reformat according - to recommended or dominant style. Remove FAR keyword. - - * include/winable.h: Move around some lines. - - * lib/user32.def (BlockInput, IsWinEventHookInstalled, - LockWorkStation, UnhookWinEvent): Add functions. - -2003-09-26 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [_WIN32_WINNT >= 0x0501] (PrintWindow, - PW_CLIENTONLY): Add function and constant. - - * lib/user32.def (PrintWindow): Add function. - -2003-09-26 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (RealGetWindowClassA[AW]): Add function. - - * lib/user32.def (RealGetWindowClassA[AW]): Add function. - -2003-09-26 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [WINVER >= 0x0500] (RegisterDeviceNotification[AW], - DEVICE_NOTIFY_WINDOW_HANDLE, DEVICE_NOTIFY_SERVICE_HANDLE, - DEVICE_NOTIFY_ALL_INTERFACE_CLASSES): Add function and constants. - - * lib/user32.def (RegisterDeviceNotification[AW]): Add function. - -2003-09-26 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [WINVER >= 0x0500] (SetWinEventHook, WINEVENTPROC, - WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS, - WINEVENT_INCONTEXT): Add function, typedef, and constants. - - * include/winable.h [WINVER < 0x0500] (SetWinEventHook, WINEVENTPROC, - WINEVENT_OUTOFCONTEXT, WINEVENT_SKIPOWNTHREAD, WINEVENT_SKIPOWNPROCESS, - WINEVENT_INCONTEXT): Add function, typedef, and constants. - - * include/winuser.h [_WIN32_WINNT >= 0x0500] (UserHandleGrantAccess): - Add function. - - * lib/user32.def (SetWinEventHook, UserHandleGrantAccess): - Add functions. - -2003-09-26 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winnt.h (ACE_INHERITED_OBJECT_TYPE_PRESENT, - ACE_OBJECT_TYPE_PRESENT): Add constants. - For use with OBJECTS_AND_NAME structure. - -2003-09-26 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/aclapi.h [_WIN32_WINNT >= 0x0501] (GetInheritanceSource[AW]): - Add functions. Don't know what PFN_OBJECT_MGR_FUNCTS is so use - void* instead. - - * include/accctrl.h [_WIN32_WINNT >= 0x0501] (INHERITED_FROM[AW], - PINHERITED_FROM[AW]): Add structures. - - * lib/user32.def (GetInheritanceSource[AW]): Add functions. - -2003-09-26 Corinna Vinschen <corinna@vinschen.de> - - * include/winuser.h (FLASHWINFO, PFLASHWINFO): Define for 98/Me, too. - -2003-09-25 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/version.def (LIBRARY): Quote name. - -2003-09-25 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (GetClipboardSequenceNumber): Add functions - and constants. - - * include/winuser.h (GetGuiResources, GR_GDIOBJECTS, - GR_USEROBJECTS): Add functions and constants. - - * include/winuser.h (GetMouseMovePointsEx, GMMP_USE_DISPLAY_POINTS, - GMMP_USE_HIGH_RESOLUTION_POINTS): Add functions and constants. - - * include/winuser.h (InSendMessageEx, ISMEX_NOSEND, ISMEX_CALLBACK, - ISMEX_NOTIFY, ISMEX_REPLIED, ISMEX_SEND): Add functions and - constants. - - * lib/user32.def (GetClipboardSequenceNumber, GetGuiResources, - GetMouseMovePointsEx, InSendMessageEx): Add functions. - -2003-09-25 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (BroadcastSystemMessage, BroadcastSystemMessageA, - BroadcastSystemMessageW, BroadcastSystemMessageEx, - BroadcastSystemMessageExA, BroadcastSystemMessageExW, - BSMINFO, BSF_ALLOWSFW, BSF_SENDNOTIFYMESSAGE, BSF_LUID, - BSF_RETURNHDESK): Add functions and constants. - - * include/winuser.h (EnumDisplaySettingsEx, EnumDisplaySettingsExA, - EnumDisplaySettingsExW, EDS_RAWMODE): Add functions and constant. - - * include/winuser.h (IsGUIThread, IsHungAppWindow, FlashWindowEx, - GetProcessDefaultLayout, SetProcessDefaultLayout, - RealChildWindowFromPoint, SetProcessDefaultLayout, - SwitchToThisWindow): Add functions. - - * lib/user32.def (BroadcastSystemMessageA, BroadcastSystemMessageW, - BroadcastSystemMessageExA, BroadcastSystemMessageExW, - EnumDisplaySettingsExA, EnumDisplaySettingsExW, FlashWindowEx, - GetProcessDefaultLayout, IsGUIThread, IsHungAppWindow, - RealChildWindowFromPoint, SetProcessDefaultLayout, - SwitchToThisWindow): Add function. - -2003-09-25 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (DeregisterShellHookWindow): Add function. - - * include/winuser.h [_WIN32_WINNT >= 0x0500] (EndTask): Add function. - - * lib/user32.def (EndTask): Add function. - - * include/winuser.h (WINVER, _WIN32_WINNT): It's better (?) to - use _WIN32_WINNT instead of WINVER to test for Windows 2000. - - * include/winable.h: Reorder target macros. - - * lib/*.def: Cleanup. - -2003-09-25 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [WINVER >= 0x0500] (AnimateWindow): Add - function. - - * lib/user32.def (AnimateWindow): Add function. By the way - there are ~ 140 symbols missing from this file when comparing - to user32.dll on Windows XP. - -2003-09-25 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [WINVER >= 0x0500] (AW_SLIDE, AW_ACTIVATE, - AW_BLEND, AW_HIDE, AW_CENTER, AW_HOR_POSITIVE, AW_HOR_NEGATIVE, - AW_VER_POSITIVE, AW_VER_NEGATIVE): Add constants. For use by - AnimateWindow(). - -2003-09-25 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [WINVER >= 0x0500] (GetGUIThreadInfo, - LPGUITHREADINFO): Add function and associated typedef... - - * include/winable.h [WINVER < 0x0500] (GetGUIThreadInfo, - LPGUITHREADINFO): ...and duplicate them in <winable.h> as - seems to be required on older versions of Windows. - -2003-09-24 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/GL/glu.h (gluErrorUnicodeStringWIN): Add macro - function. MSDN suggests using gluErrorUnicodeStringWIN - instead of gluErrorString, as it allows both ANSI and Unicode - error strings. - - * include/GL/glu.h (gluErrorUnicodeStringEXT): Make the - returned pointer const for consistency reasons. - -2003-09-24 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/GL/glu.h (gluErrorUnicodeStringEXT): Add function. - Function exists in glu32.def but is undocumented on MSDN. - A Google search came up with this declaration. - -2003-09-24 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/GL/glu.h: Rewritten from scratch. Started from GLU 1.3 - headers from OpenGL Sample Implementation. Windows ships with - GLU 1.2 so some constants and functions were removed. Then some - typedef's and function declarations were reworked to look like - the previous GL/glu.h. - -2003-09-24 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/uxtheme.h (PROPERTYORIGIN): the documentation of - PROPERTYORIGIN suggests it's `PROPERTYORIGIN' but experimentation - suggests it's actually `enum PROPERTYORIGIN'. Keep both. - - * include/uxtheme.h (THEME_SIZE, THEMESIZE): MSDN suggests - it's either `THEME_SIZE' or `THEMESIZE' but experimentation - suggests it's actually `enum THEMESIZE'. Keep `THEME_SIZE' - and `enum THEMESIZE'. - -2003-09-24 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/uxtheme.h: New file. - * include/tmschema.h: New file. - * include/uxtheme.def: New file. - * lib/test.c: Include uxtheme.h, tmschema.h. - -2003-09-23 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h (KEYEVENTF_UNICODE, KEYEVENTF_SCANCODE): - Add defines. - -2003-09-23 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winable.h [_WIN32_WINNT < 0x0403] (INPUT_MOUSE, - INPUT_KEYBOARD, INPUT_HARDWARE): Duplicate defines in - <winable.h> as seems to be required on older versions of - Windows. - -2003-09-23 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [WINVER >= 0x0500] (CHILDID_SELF, - GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE, - GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE, GUI_16BITTASK): - Add defines, the last one only on Windows XP... - - * include/winable.h [WINVER < 0x0500] (CHILDID_SELF, - GUI_CARETBLINKING, GUI_INMOVESIZE, GUI_INMENUMODE, - GUI_SYSTEMMENUMODE, GUI_POPUPMENUMODE): ...and duplicate - them in <winable.h> as seems to be required on older - versions of Windows. - -2003-09-23 Dimitri Papadopoulos <papadopo@users.sourceforge.net> - - * include/winuser.h [WINVER >= 0x0500] (GUITHREADINFO, - OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU, - OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP, - OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): Bring - back into <winuser.h>... - - * include/winable.h [WINVER < 0x0500] (GUITHREADINFO, - OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, OBJID_MENU, - OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, OBJID_SIZEGRIP, - OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, OBJID_SOUND): ...and - comment out in <winable.h>. MSDN may say <winable.h> but this - breaks many programs. It seems it used to be <winable.h> on - older versions of Windows. - -2003-09-17 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (UpdateLayeredWindow): Protect against NOGDI. - Thanks to Will Levine <willll@users.sourceforge.net> - -2003-09-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ws2spi.h (LPWSPBIND): Change CONST LPSOCKADDR to - const struct sockaddr*. - (LPWSPCONNECT): Likewise. - (LPWSPJOINLEAF): Likewise. - (LPWSPSENDTO): Likewise. - Tanks to Sebastian Nowak <snowak1@users.spourceforge.net> - -2003-09-15 Filip Navara <xnavara@volny.cz> - - * include/commctrl.h (TCIS_BUTTONPRESSED, TCIS_HIGHLIGHTED): - Add definitions. - -2003-09-15 Sascha Brawer <brawer@dandelis.ch> - - * include/winuser.h (DISPLAY_DEVICE_ATTACHED_TO_DESKTOP, - DISPLAY_DEVICE_PRIMARY_DEVICE, DISPLAY_DEVICE_MIRRORING_DRIVER, - DISPLAY_DEVICE_VGA_COMPATIBLE, DISPLAY_DEVICE_REMOVABLE, - DISPLAY_DEVICE_MODESPRUNED): Define constants. - (ChangeDisplaySettingsEx[A,W]): Add prototype. - - * lib/user32.def (ChangeDisplaySettingsEx[A,W]): Add exports. - (EnumDisplayDevices[A,W]): Likewise. - -2003-09-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include.commctrl.h (_WIN32_WINNT): Change _WXP to 0x0501, - throughout. - -2003-09-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/olectl.h (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG, - LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS, - LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC, - OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC, - OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF,LPPOINTF, CONTROLINFO, - LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO, - CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD, - PROPPAGEINFO, LPPROPPAGEINFO): Remove from here ... - * include/ocidl.h: (TEXTMETRICOLE, LPERRORLOG, LPPROPERTYBAG, - LPENUMCONNECTIONPOINTS, LPCONNECTIONPOINT, LPENUMCONNECTIONS, - LPPROPERTYPAGESITE, LPFONT, LPFONTDISP, OLE_COLOR, HIMETRIC, - OLE_YPOS_HIMETRIC, OLE_XSIZE_HIMETRIC, OLE_YSIZE_HIMETRIC, - OLE_YSIZE_CONTAINER, OLE_HANDLE, POINTF, LPPOINTF, CONTROLINFO, - LPCONTROLINFO, CONNECTDATA, LPCONNECTDATA, LICINFO, LPLICINFO, - CAUUID, LPCAUUID, CALPOLESTR, LPCALPOLESTR, CADWORD, LPCADWORD, - PROPPAGEINFO, LPPROPPAGEINFO): ... to here, for consistency - with documentation. - * include/olectl.h: Do #include <ocidl.h>. - * include/ocidl.h: Don't #include <olectl.h>. - -2003-09-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (_WIN32_WINNT, _WIN32_WINDOWS, WINVER): - Change guards to use numeric constants, throughout. - -2003-09-15 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment version to 2.5. - * Makefile.in: Ditto. - -2003-09-08 Justin Forest <vhex@users.sourceforge.net> - - * include/winuser.h (PM_QS_INPUT, PM_QS_POSTMESSAGE, - PM_QS_PAINT, PM_QS_SENDMESSAGE): Add defines. - -2003-09-08 Filip Navara <xnavara@volny.cz> - - * include/wingdi.h (GRADIENT_FILL_RECT_H, GRADIENT_FILL_RECT_V, - GRADIENT_FILL_TRIANGLE, GRADIENT_FILL_OP_FLAG): Add defines. - -2003-09-05 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h (_NT5, etc): Reverse the changes of 2003-07-01. - * include/winbase.h (_NT5, etc): Ditto. - -2003-09-02 Bart Oldeman <bartoldeman@users.sourceforge.net> - - * lib/snmpapi.def (LIBRARY) Add library name. - Remove '\r', throughout. - * lib/wsnmp32.def: Remove '\r', throughout. - * lib/igmpagnt.def: Likewise. - -2003-08-29 Steve Cleary <scleary@jerviswebb.com> - - * include/winuser.h (QS_ALLPOSTMESSAGE, QS_RAWINPUT): Add defines. - (QS_INPUT, QS_ALLINPUT, QS_ALLEVENTS): Adjust by OR'ing with - QS_RAWINPUT for _WIN32_WINNT >= 0x0501. - (MWMO_*): Add flags. - - * include/wincrypt.h (MS_ENHANCED_PROV[AW], MS_STRONG_PROV[AW], - MS_DEF_RSA_SIG_PROV[AW], MS_DEF_RSA_SCHANNEL_PROV[AW], - MS_DEF_DSS_PROV[AW], MS_DEF_DSS_DH_PROV[AW], MS_ENH_DSS_DH_PROV[AW], - MS_DEF_DH_SCHANNEL_PROV[AW], MS_SCARD_PROV[AW]): Add definitions. - -2003-08-26 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/test.c: Add vfw.h to includes. - * include/mmsystem.h: Add #ifndef guard to definition of - mmioFOURCC macro. - * include/vfw.h: Protect __OBJC__ from COM declarations. - -2003-08-26 Filip Navara <xnavara@volny.cz> - - * include/vfw.h: New file. - -2003-08-26 Filip Navara <xnavara@volny.cz> - - * include/ddk/winddk.h (RTL_REGISTRY_*): Add defines. - (IoSetCompletionRoutine): Cast _CompletionRoutine arg to - PIO_COMPLETION_ROUTINE. - -2003-08-26 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/test.c: Add snmp.h, winsnmp.h amd mgmtapi.h to - includes. - -2003-08-26 Filip Navara <xnavara@volny.cz> - - * include/snmp.h: New file. - * include/winsnmp.h: New file. - * include/mgmtapi.h: New file. - * lib/snmpapi.def: New file. - * lib/wsnmp32.def: New file. - * lib/igmpagnt.def: New file. - * lib/mgmtapi.def (SnmpMgrCtl) Add stub. - (SnmpMgrGetTrapEx): Ditto. - (SnmpMgrMIB2Disk): Remove. - (dbginit): Remove. - -2003-08-25 Steven Edwards <Steven_Ed4153@yahoo.com> - - * include/ddk/ntifs.h: Change all C++ style comments to C. - * include/GL/gl.h: Ditto. - -2003-08-25 Martin Fuchs <Martin-Fuchs@gmx.net> - - * include/shlobj.h (SFGAO_GHOSTED): Correct. - (SFGAO_HIDDEN): Add define. - -2003-08-25 Filip Navara <xnavara@volny.cz> - - * include/commctrl.h (ILCF_*): Add defines. - (ILD_*): Ditto. - (HDS_*): Ditto. - (IPN_FIRST, IPN_LAST): Cast to UINT. - (SBN_FIRST, SBN_LAST): Add defines. - (PGN_*): Ditto. - (HDF_JUSTIFYMASK): Fix typo. - (HDM_*): Add defines. - (HICF_*): Ditto. - (I_INDENTCALLBACK,I_IMAGENONE): Ditto. - (TBSTATE_MARKED): Add define. - (TBSTYLE_EX_*): Add defines. - (TBCDRF_*): Ditto. - (IDB_HIST_SMALL_COLOR,IDB_HIST_LARGE_COLOR): Ditto. - (TB_*): Ditto. - (TBN_*): Ditto. - (TBNRF_*): Ditto. - (TTF_*): Ditto. - (TBCD_*): Ditto. - (TBDDRET_*): Ditto. - (TBIMHT_*): Ditto. - (TTM_*): Ditto. - (UDM_*): Ditto. - (TBIF_BYINDEX): Define as hex constant. - (CDIS_*): Add defines. - (CDDS_SUBITEM): Add define. - (LVIF_*): Add defines. - (LVM_*): Ditto. - (LVGIT_UNFOLDED): Add define. - (TVM_): Add defines. - (TVE_EXPANDPARTIAL): Add define. - (TVGN_LASTVISIBLE): Ditto. - (TVN_*): Add defines. - (TVNRET_*): Add defines. - (TCIF_STATE): Add define. - (NM_TOOLTIPSCREATED): Ditto. - (CCM_*): Add defines. - (INFOTIPSIZE): Add numeric value. - (ODT_LISTVIEW): Ditto. - (MCM_GETMAXTODAYWIDTH): Ditto. - (MCHT_*): Add defines. - (UDM_SETRANGE32,UDM_GETRANGE32): Define in terms of WM_USER. - (PGF_*): Add defines. - (PGM_*): Ditto. - (TBINSERTMARK): Add structure. - (LPIMAGEINFO) Add typedef. - (LPHDHITTESTINFO): Ditto. - (NMLVGETINFOTIP[AW]: Add structures. - (NMTBCUSTOMDRAW): Add structure. - (TTTOOLINFOA_V*_SIZE): Add macros. - (TTTOOLINFOW_V1_SIZE): Ditto. - (IMAGELISTDRAWPARAMS): Add new members for WXP. - (LVITEM[AW]: Ditto. - (TCITEM[AW]):Ditto. - (CCSIZEOF_STRUCT): Correct macro definition. - (ListView_*): Add new macros. - (HIMAGELIST): Correct typedef. - (HTREEITEM): Ditto. - -2003-08-25 Danny Smith <dannysmith@users.sourceforge.net> - - * commctrl.h (TC_HITTESTINFO): Remove. Add defines for - TCHITTESTINFO for backward compatibility. - (TC_ITEM[AW]): Rename to TCITEM[AW]. Add defines for backward - compatibility. - -2003-08-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/objidl.h (COBJMACROS): Define macros only - if using C interace. - * include/unknwn.h: Ditto. - * include/comcat.h: Ditto. - -2003-08-24 Filip Navara <xnavara@volny.cz> - - * include/prsht.h (PSH_WIZARDHASFINISH, PSH_WIZARD_LITE, - PSH_NOCONTEXTHELP): Define. - (PSH_WIZARD97): Fix definition for _WIN32_IE >= 0x500. - * include/winuser.h (DFCS_TRANSPARENT, DFCS_HOT): Define. - (LPDLGTEMPLATE[AW]): Add typedefs. - -2003-08-22 Filip Navara <xnavara@volny.cz> - - * include/aclapi.h (BuildImpersonateExplicitAccessWithName[AW]): - Add prototypes. - BuildImpersonateTrustee[AW]): Add prototypes. - GetMultipleTrustee[AW]): Add prototypes. - GetMultipleTrusteeOperation[AW]): Add prototypes. - -2003-08-22 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (IMAGE_SUBSYSTEM_XBOX): Add define. - -2003-08-22 Mihai Preda <mihai_preda@users.sourceforge.net> - - * include/shlobj.h (IPersistFolder::GetClassID): - Correct declaration. - (CMF_*) Add missing defines. - -2003-08-22 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (DC_BUTTONS): Add define. - -2003-08-22 Andrew Greenwood <lists@silverblade.co.uk> - - * include/winuser.h (DC_GRADIENT): Add define. - -2003-08-22 Martin Fuchs <Martin-Fuchs@gmx.net> - - * include/commctrl.h (BTNS_*): Define BTNS_* as successors to the - older TBSTYLE_* constants. - -2003-08-18 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (TB_*) Group defines together. - -2003-08-18 Martin Fuchs <Martin-Fuchs@gmx.net> - - * include/winuser.h (ICON_SMALL2): Define. - * include/commctrl.h (TB_SETBUTTONWIDTH, TB_SETDRAWTEXTFLAGS): - Define. - * include/shlobj.h (SHDRAGIMAGE): Define structure. - (IDragSourceHelper) Define interface. - (IDropTargetHelper): Likewise. - (IExtractIcon): Unicode it. - (ICommDlgBrowser): Use IShellView type as param in OnDefaultCommand, - OnStateChange and IncludeObject methods. - -2003-08-17 Martin Fuchs <Martin-Fuchs@gmx.net> - - * include/commctrl.h (TreeView_GetScrollTime, - TreeView_SetScrollTime): Define macros. - * include/winuser.h (GetShellWindow): Add prototype. - * include/objidl.h (STGMEDIUM): Correct lpszFileName type. - -2003-08-15 Martin Fuchs <Martin-Fuchs@gmx.net> - - * include/shguid.h (CLSID_DragDropHelper, IID_IDropTargetHelper, - IID_IDragSourceHelper): Declare. - * lib/shell32.c (CLSID_DragDropHelper, IID_IDropTargetHelper, - IID_IDragSourceHelper): Define. - -2003-08-15 Andrew Greenwood <lists@silverblade.co.uk> - - * include/wingdi.h (DEVMODE[AW]) Correct structure definition. - * include/ddk/ntapi.h (LPC_TYPE): Add LPC_CONNECTION_REFUSED. - * include/ddk/winddk.h (IRP_*): Add constants as anonymous enum. - -2003-08-10 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/uuid.c (CGID_Explorer, CGID_ShellDocView, - CGID_ShellServiceObject): Remove definitions. - * lib/shell32.c (CGID_ShellServiceObject): Add definition. - -2003-08-10 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (SHELLSTATE): Add structure. - (SHGetSetSettings): Add prototype. - (SHGetSettings): Add prototype. - * lib/shell32.def (SHGetSetSettings): Add stub. - -2003-08-10 Phil Krylov <likewolf@users.sourceforge.net> - - * include/commctrl.h (HDM_ORDERTOINDEX): Add define. - (Header_OrderToIndex): Add macro. - (Header_GetOrderArray): Add macro. - - * include/commdlg.h (FR_MATCHALEFHAMZA, - FR_MATCHDIAC, FR_MATCHKASHIDA): Add defines. - -2003-08-10 Martin Fuchs <Martin-Fuchs@gmx.net> - - * include/commctrl.h (TVM_GETSCROLLTIME, - TVM_SETSCROLLTIME): Add defines. - -2003-08-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (SHELLFLAGSTATE): Add structure. - (SHGetInstanceExplorer): Correct return type. - (SHGetFolderPath[AW]): Likewise. - Thanks to Magnus Olsen <greatlord@sourceforge.users.net> - for report. - -2003-08-01 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/test.c: Include winldap.h, ntldap.h, winber.h. - -2003-08-01 Filip Navara <xnavara@volny.cz> - - * include/winldap.h: New file. - * include/ntldap.h: New file. - * include/winber.h: New file. - * lib/winldap32.def: New file. - -2003-08-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/atm.h: Remove stray '.'; - -2003-08-01 Gisle Vanem <gvanem@broadpark.no> - - * include/ddk/winddk.h: Remove trailing ';' from macros, - throughout. Add () around defines with cast returns, throughout. - -2003-07-31 Martin Fuchs <Martin-Fuchs@gmx.net> - - * include/shlobj.h (SFGAO_COMPRESSED): Add define. - (SFGAOF, SHGDNF): Add typedef's. - (SHCONTF): Extend enum. - -2003-07-31 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shellapi.h: Include all structs within pshpack2.h/ - poppack.h block. - -2003-07-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK, - LWA_COLORKEY, LWA_ALPHA): Guard with _WIN32_WINNT, - _WIN32_WINDOWS, not WINVER. - (AllowSetForegroundWindow,LockSetForegroundWindow, - SetLayeredWindowAttributes): Likewise. - (GetLayeredWindowAttributes,UpdateLayeredWindow): Add prototypes. - * lib/user32.def (GetLayeredWindowAttributes,UpdateLayeredWindow): - Add stubs. - -2003-07-26 Eric R. Krause <ekrause_98@users.sourceforge.net> - - * include/objidl.h (IMalloc): Fix typo. - -2003-07-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/dkk/ntifs.h: Fix typo in guard for - #pragma GCC system_header. - -2003-07-22 Danny Smith <dannysmith@users.sourceforge.net> - - * include/objidl.h (PropVariant): Add CHAR cVal field - to union. - (FMTID_SummaryInformation, FMTID_DocSummaryInformation, - FMTID_UserDefinedProperties): Declare. - -2003-07-22 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (GetModuleHandleEx[AW]): Add prototypes. - -2003-07-22 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (DUPLICATE_CLOSE_SOURCE, - DUPLICATE_SAME_ACCESS): Remove defines. - (HANDLE_FLAG_INHERIT, HANDLE_FLAG_PROTECT_FROM_CLOSE): Sync with - ddk/ntapi.h defines. - (SEM_*) : Likewise. - * include/winnt.h (COMPRESSION_*, ACCESS_*, SYSTEM_*): Sync with - ddk/ntifs.h defines. - (FILE_*): Likewise. - (MEM_IMAGE, SEC_*): Likewise. - (DUPLICATE_CLOSE_SOURCE, DUPLICATE_SAME_ACCESS, - DUPLICATE_SAME_ATTRIBUTES): Sync with ddk/winddk.h defines. - (TOKEN_*): Sync with ddk/ntifs.h defines. - * include/ddk/ntapi.h: Add comments noting definitions in - winbase.h. - * include/ddk/ntifs.h: Add comments noting definitions in - winnt.h. - * include/ddk/winddk.h: Add comments noting definitions in - winnt.h. - -2003-07-18 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (FILE_*): Sync with ddk/winddk.h. - * include/winioctl.h (FILE_*): Sync with ddk/winddk.h. - -2003-07-17 Pierre Humblet <pierre.humblet@ieee.org> - - * include/mmsystem.h (TIME_KILL_SYNCHRONOUS): Add define. - -2003-07-17 Danny Smith <dannysmith@users.sourceforge.net> - - Clean up warnings in ddk. - - * include/ddk/atm.h (_ATM_AAL_OOB_INFO): Add _ANONYMOUS_UNION, - conditional on __cplusplus. - * include/ddk/scsi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT - defines, throughout. - (_CDB): Add _ANONYMOUS_UNION, conditional on __cplusplus. - * include/ddk/cfg.h (_PNP_VETO_TYPE): Remove extra comma. - * include/ddk/cfgmgr32.h: Change C++ comment style to ISO C. - * include/ddk/ddkmapi.h (_DDLOCKOUT): Add _ANONYMOUS_UNION defines. - * include/ddk/hidpi.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT - defines, throughout. - * include/ddk/ndis.h: Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT - defines, throughout. Remove trailing semicolon from *_S 'structure' - macro expansion, throughout. Remove trailing semicolon from - DECLARE_UNKNOWN_STRUCT macro expansion. - * include/ddk/ndiswan.h (_NDIS_WAN_COMPRESS_INFO): Add - _ANONYMOUS_UNION. - * include/ddk/ntapi.h (_PROCESS_DEVICEMAP_INFORMATION, - _PROCESS_SESSION_INFORMATION): Add _ANONYMOUS_UNION. - * include/ddk/ntddcdrm.h (CDROM_TOC_CD_TEXT_DATA_BLOCK): - Add _ANONYMOUS_UNION. - * include/ddk/ntdddisk.h: Add _ANONYMOUS_UNION, throughout. - * include/ddk/ntddmou.h: Add _ANONYMOUS_UNION, throughout. - * include/ddk/ntifs.h: Add _ANONYMOUS_UNION, throughout. - (ZwQueryObject): Change 2nd param to OBJECT_INFORMATION_CLASS, to - match proto in ntapi.h. - (ZwSetInformationObject): Likewise. - * include/ddk/srb.h (SCSI_REQUEST_BLOCK): Add _ANONYMOUS_UNION. - (SCSI_ADAPTER_CONTROL_TYPE): Add __extension__. - * include/ddk/tdikrnl.h (TDI20_CLIENT_INTERFACE_INFO): Add - _ANONYMOUS_UNION and _ANONYMOUS_STRUCT. - * include/ddk/usb.h (USB): Add _ANONYMOUS_UNION. - * include/ddk/usbcamdi.h (USBCAMD_CamControlFlags): Remove - last comma. - * include/ddk/video.h (STATUS_BLOCK): Add _ANONYMOUS_UNION. - * include/ddk/winddk.h (DECLARE_INTERNAL_OBJECT): Remove - trailing semicolon when expanding macro. - (GENERAL_LOOKASIDE_S): Likewise. - Add _ANONYMOUS_UNION and _ANONYMOUS_STRUCT, throughout. - Change inline to __inline, throughout. - * include/ddk/winnt4.h: Change inline to __inline, throughout. - -2003-07-13 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/ddk/ntifs.h (KeInsertQueueApc): Make return type - BOOLEAN. Name parameter 4 PriorityBoost and make it of type - KPRIORITY. - * include/ddk/winddk.h (_KPCR): Put IDT field on next line. - * include/ddk/winddk.h (_IO_STATUS_BLOCK, _IRP, _OWNER_ENTRY, - _ERESOURCE, _IMAGE_INFO, _CREATE_DISK, _DISK_SIGNATURE, _KPCR_TIB): - Apply _ANONYMOUS_UNION to anonymous unions and _ANONYMOUS_STRUCT - to anonymous structs. - -2003-07-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (PVOID): Move to before HANDLE typedef. - - * include/winuser.h (mouse_event): Correct type of fifth param, - Thanks to: Andrew Jones <guln at users dot sourceforge dot net> - -2003-07-11 Earnie Boyd <earnie@users.sf.net> - - * include/winnt.h (HANDLE): Define based on STRICT filter. - (THREAD_BASE_PRIORITY_MIN): Use parens around negative value. - (THREAD_BASE_PRIOIRTY_IDLE): Ditto. - -2003-07-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (NMTVDISPINFO[AW]): Replace obsolete struct - names _TV_DISPINFO[AW] and typedefs. Add defines for backward - compatability. Thanks to Magnus Olsen <greatlord@users.sf.net> - for report. - -2003-07-03 Earnie Boyd <earnie@users.sf.net> - - * config.guess, config.sub: Update with new versions from ftp.gnu.org. - -2003-07-03 Luke Dunstan <infidel@users.sf.net> - - * include/commdlg.h (CommDlg_OpenSave_*): Add parentheses around - macro arguments. Thanks to Tom Bishop <tombishop@users.sf.net>. - * include/winuser.h (MONITOR_DEFAULTTONULL, MONITOR_DEFAULTTOPRIMARY, - MONITOR_DEFAULTTONEAREST, MONITORINFOF_PRIMARY): Add defines. - (TPM_RECURSE): Add guard for Win98/Win2K. - Thanks to Magnus Olsen <greatlord@users.sf.net>. - -2003-07-01 Earnie Boyd <earnie@users.sf.net> - - * include/basetyps.h (small, hyper): Change to __small and __hyper to - avoid user namespace conflicts. - -2003-07-01 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h (_NT4, _W98, _WME, _NT5, _W2000, _WXP, _W2003, - _IE3, _IE4, _IE5, _IE6): Add definitions. - * include/winbase.h (GetLongPathName[AW]): Add guard for OS >= NT5 or - >= Win98. - Change existing guards to use the above macro names as appropriate. - * include/basetyps.h (__int32, __int16, __int8, small, hyper): Define. - Note: Also added to mingw/include/_mingw.h. - -2003-06-28 Steven Edwards <Steven_Ed4153@yahoo.com> - - * include/shlwapi.h (UrlGetLocationA, UrlGetLocationW, - PathFindSuffixArrayA, PathFindSuffixArrayW, - PathFindExtensionA, PathFindExtensionW, StrStrW - StrStrA): Change unicode-macro'd LP[C]TSTR return values to - explicit type. - -2003-06-26 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/richedit.h (PARAFORMAT2): Add definition. - * include/richedit.h (PFA_*, PFE_*, PFM_*): Add some - missing constants. - -2003-06-17 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shellapi.h (SHQUERYRBINFO): Add structure, - (SHQueryRecycleBin[AW]. SHEmptyRecycleBin[AW]):Add prototypes. - (SHERB_NOCONFIRMATION, SHERB_NOPROGRESSUI, SHERB_NOSOUND): - Add defines. Thanks to Brett Hart <brett at ncubedtech dot com> - -2003-06-17 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (GlobalCompact, GlobalFix, GlobalFlags, - GlobalUnfix, GlobalUnWire, GlobalWire, LocalCompact, - LocalFlags, LocalShrink, LockSegment, UnlockSegment): Add comment - that these are obsolete no-ops. - -2003-06-17 Bang Jun-Young <junyoung@netbsd.org> - - * include/winbase.h (GetProcessWorkingSetSize, - GlobalCompact, LocalAlloc, LocalCompact, LocalReAlloc, - LocalShrink, SignalObjectAndWait, WriteProcessMemory): - Correct prototypes. - -2003-06-18 Steven Edwards <Steven_Ed4153@yahoo.com> - - * include/winuser.h (TPM_RECURSE): Add define. - -2003-06-06 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/test.c: #include <powrprof.h>. - -2003-06-06 James E. Lucas <xelloss@sourceforge.net> - - * include/powerprof.h: New file. - * lib/powerprof.def: New file. - -2003-06-06 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt (SLIST_HEADER): Add C90 anonymous struct - protection. - -2003-06-05 Luke Dunstan <infidel@users.sourceforge.net> - - * include/winuser.h (WNDCLASS[AW], WNDCLASSEX[AW]): Change type of - hInstance members to HINSTANCE. - Thanks to: Brenden T. <brenden@rcsis.com> - -2003-06-05 Bart Oldeman <bartoldeman@users.sourceforge.net> - - * include/lmaccess.h (UF_MNS_LOGON_ACCOUNT): Add define. - * include/wingdi.h (LPRGBTRIPLE, LPRGBQUAD): Add typedefs. - -2003-06-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/ntpoapi.h (POWER_INFORMATION_LEVEL): Remove. - * include/winnt.h (POWER_INFORMATION_LEVEL): Add. - * include/ddk/winddk.h (SINGLE_LIST_ENTRY,SLIST_HEADER): - Remove. - * include/ddk/ndis.h (NdisAllocateSpinLock): Add missing '\'. - -2003-05-30 Mattia Barbon <mbarbon@dsi.unive.it> - - * lib/oleacc.def: New file. - * include/winable.h: New file. - * include/oleacc.h: Add extern "C" guard. - (NAVDIR_*, ROLE_*, STATE_*): Add missing constants. - (AccessibleChildren, AccessibleObjectFromEvent, - AccessibleObjectFromPoint, AccessibleObjectFromWindow, - CreateStdAccessibleProxy[AW], GetOleaccVersionInfo, GetRoleText[AW], - GetStateText[AW], LresultFromObject, ObjectFromLresult, - WindowFromAccessibleObject): Add prototypes and UNICODE mappings. - * include/winuser.h (NotifyWinEvent): Add prototype. - (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, - OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, - OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, - OBJID_SOUND): Move from here to... - * include/winable.h (OBJID_WINDOW, OBJID_SYSMENU, OBJID_TITLEBAR, - OBJID_MENU, OBJID_CLIENT, OBJID_VSCROLL, OBJID_HSCROLL, - OBJID_SIZEGRIP, OBJID_CARET, OBJID_CURSOR, OBJID_ALERT, - OBJID_SOUND): Here, as per documentation. - * lib/test.c: Include winable.h. - * lib/user32.def (NotifyWinEvent): Add missing export. - -2003-05-30 Bang Jun-Young <junyoung@netbsd.org> - - * include/winbase.h (HeapCompact): Correct prototype. - * include/winnt.h (SINGLE_LIST_ENTRY, SLIST_ENTRY, - SLIST_HEADER): Add. - -2003-05-27 Andrew C. Stadt <acstadt@sympatico.ca> - - * include/winuser.h (LWA_COLORKEY, LWA_ALPHA): Add defines. - -2003-05-25 Bill C. Riemers <cygwin@docbill.net> - - * include/winuser.h (EnumDisplayDevicesW): Fix typo. - -2003-05-23 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (EnumDisplayDevices[AW]): Add prototypes. - * include/wingdi.h (DISPLAY_DEVICE): UNICODE it. - -2003-05-23 Andrew Dunbar <hippietrail@users.sourceforge.net> - - * include/wingdi.h (GCP_RESULTS[AW]) Correct type of - lpGlyphs field to LPWSTR. - -2003-05-21 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wincrypt.h (PLAINTEXTKEYBLOB, OPAQUEKEYBLOB, - PUBLICKEYBLOBEX, SYMMETRICWRAPKEYBLOB) Add defines. - (PP_*): Add defines. - (CryptContextAddRef): Add prototype. - Thanks to: Shura Zam <debil_urod@users.sourceforge.net> - -2003-05-18 Manu B <manubee@users.sourceforge.net> - - * include/commctrl.h (TVSORTCB): Rename old TV_SORTCB structure. - -2003-05-18 Bang Jun-Young <junyoung@netbsd.org> - - * include/winbase.h (CREATE_DEFAULT_ERROR_MODE, - DEBUG_PROCESS, DEBUG_ONLY_THIS_PROCESS, CREATE_SUSPENDED, - DETACHED_PROCESS, CREATE_NEW_CONSOLE, NORMAL_PRIORITY_CLASS, - IDLE_PRIORITY_CLASS, HIGH_PRIORITY_CLASS, REALTIME_PRIORITY_CLASS, - CREATE_NEW_PROCESS_GROUP, CREATE_UNICODE_ENVIRONMENT, - CREATE_SEPARATE_WOW_VDM, CREATE_SHARED_WOW_VDM, CREATE_FORCEDOS, - CREATE_NO_WINDOW): Convert to hexadecimal form for better - readability. - (BELOW_NORMAL_PRIORITY_CLASS, ABOVE_NORMAL_PRIORITY_CLASS, - CREATE_BREAKAWAY_FROM_JOB, CREATE_WITH_USERPROFILE): Add. - -2003-05-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/ndis.h (NDIS30_MINIPORT_CHARACTERISTICS_S): - Unname anonymous unions if NONAMELESSUNION not defined. - -2003-05-14 Bang Jun-Young <junyoung@netbsd.org> - - * include/winbase.h (GMEM_VALID_FLAGS): Add. - -2003-05-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/prsht.h (PROPSHEETHEADER[AW]: Mark - anonymous unions as GCC extension. - -2003-05-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/oleidl.h (LPENUMOLEDOCUMENTVIEWS): Remove typedef. - (IEnumOleDocumentViews): Remove commented out DECLARE_ENUMERATOR. - * include/docobj.h (LPENUMOLEDOCUMENTVIEWS): Add typedef (previously - commented out). - (IEnumOleDocumentViews): Add definition using DECLARE_ENUMERATOR. - -2003-05-12 Earnie Boyd <earnie@users.sf.net> - - * include/commctrl.h: (MCSC_BACKGROUND, MCSC_TEXT, MCSC_TITLEBK, - MCSC_TITLETEXT, MCSC_MONTHBK, MCSCTRAILTEXT): Define. - Thanks to: Robert Wishlaw <rwishlaw @ shaw . ca> - -2003-05-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/olectl.h (IOleControl,IOleControlSite,ISimpleFrameSite, - IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit, - IPersistMemory,IPropertyNotifySink,IProvideClassInfo, - IProvideClassInfo2,IConnectionPointContainer, - IEnumConnectionPoints,IConnectionPoint,IEnumConnections, - IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing, - IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp, - IPicture,IPictureDisp): Move from here to... - * include/ocidl.h (IOleControl,IOleControlSite,ISimpleFrameSite, - IErrorLog,IPropertyBag,IPersistPropertyBag,IPersistStreamInit, - IPersistMemory,IPropertyNotifySink,IProvideClassInfo, - IProvideClassInfo2,IConnectionPointContainer, - IEnumConnectionPoints,IConnectionPoint,IEnumConnections, - IClassFactory2,ISpecifyPropertyPages,IPerPropertyBrowsing, - IPropertyPageSite,IPropertyPage,IPropertyPage2,IFont,IFontDisp, - IPicture,IPictureDisp): Here, as per documentation. - -2003-05-12 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/oleauto.h (VarR8FromDec, VarDecFromR8): Add prototypes. - * include/winbase.h (TerminateJobObject, - AssignProcessToJobObject): Likewise. - * include/servprov.h: New header. - * lib/test.c: Include servprov.h. - -2003-05-10 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlguid.h (CGID_ShellServiceObject): Declare. - * lib/uuid.c (CGID_ShellServiceObject): Define guid. - Thanks to Chris Sutcliffe <ir0nh34d#users.sourceforge.net> - * include/winuser.h (SetLayeredWindowAttributes): Add prototype. - * lib/user32.def (SetLayeredWindowAttributes): Add stub. - * lib/uuid.c (CGID_Explorer, CGID_ShellDocView): Define guids. - -2003-05-05 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (STATUSCLASSNAME, TOOLBARCLASSNAME, - TOOLTIPS_CLASS, TRACKBAR_CLASS, UPDOWN_CLASS, PROGRESS_CLASS, - HOTKEY_CLASS): Remove dupicate defines for UNICODE case. - -2003-05-02 Steven Edwards <Steven_Ed4153@yahoo.com> - - * include/richedit.h (EM_FINDTEXTEXW, EM_FINDTEXTW, - EM_GETAUTOURLDETECT, EM_GETBIDIOPTIONS, EM_GETEDITSTYLE, - EM_GETIMECOLOR, EM_GETIMEOPTIONS, EM_GETPUNCTUATION, - EM_GETWORDWRAPMODE, EM_RECONVERSION, EM_SETBIDIOPTIONS, - EM_SETEDITSTYLE, EM_SETIMECOLOR, EM_SETIMEOPTIONS, - EM_SETPALETTE, EM_SETPUNCTUATION, EM_SETTEXTEX, - EM_SETWORDWRAPMODE, RICHEDIT_CLASS10A): Add defines. - -2003-05-02 Francois Ferrand <typz@sourceforge.users.net> - - * include/commctrl.h (TBM_*): Add missing trackbar defines. - -2003-05-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/cplext.h (CPLPAGE_MOUSE_WHEEL, - CPLPAGE_DISPLAY_BACKGROUND): Add defines. - -2003-04-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (DC_PEN, DC_BRUSH): Add defines. - (SetDCPenColor, SetDCBrushColor): Add prototypes. - * lib/gdi32.def (SetDCPenColor, SetDCBrushColor): Add stubs. - -2003-04-26 Bang Jun-Young <junyoung@netbsd.org> - - * include/winioctl.h (DEVICE_TYPE_FROM_CTL_CODE): Add macro. - -2003-04-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/oaidl.h (ITypeMarshal): Add interface. - -2003-04-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winioctl.h: Clean up formatting. - (RETRIEVAL_POINTERS_BUFFER): Add fields to Extents[1] struct. - (CREATE_DISK): Add _ANONYMOUS_UNION macro. - (DISK_CACHE_INFORMATION): Likewise. - (DISK_DETECTION_INFO): Likewise. - (DISK_PARTITION_INFO): Likewise. - (PARTITION_INFORMATION_EX): Likewise. - (DRIVE_LAYOUT_INFORMATION_EX): Likewise. - -2003-04-26 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/winbase.h (DeleteVolumeMountPoint[AW], - FindFirstVolumeMountPoint[AW], FindNextVolumeMountPoint[AW], - FindVolumeMountPointClose, GetVolumeNameForVolumeMountPoint[AW], - GetVolumePathName[AW], GetVolumePathNamesForVolumeName[AW], - SetVolumeMountPoint[AW]): Add prototypes. - * include/winioctl.h (IOCTL_DISK_GET_PARTITION_INFO_EX, - IOCTL_DISK_SET_PARTITION_INFO_EX, - IOCTL_DISK_GET_DRIVE_LAYOUT_EX, - IOCTL_DISK_SET_DRIVE_LAYOUT_EX, IOCTL_DISK_CREATE_DISK, - IOCTL_DISK_GET_LENGTH_INFO, IOCTL_DISK_PERFORMANCE_OFF, - IOCTL_DISK_GET_DRIVE_GEOMETRY_EX, IOCTL_DISK_GROW_PARTITION, - IOCTL_DISK_GET_CACHE_INFORMATION, - IOCTL_DISK_SET_CACHE_INFORMATION, - IOCTL_DISK_DELETE_DRIVE_LAYOUT, IOCTL_DISK_UPDATE_PROPERTIES, - FSCTL_GET_VOLUME_BITMAP, FSCTL_GET_RETRIEVAL_POINTERS, - FSCTL_MOVE_FILE): Define. - (CREATE_DISK_GPT, CREATE_DISK_MBR, CREATE_DISK, - DISK_CACHE_INFORMATION, - DETECTION_TYPE, DISK_INT13_INFO, DISK_EX_INT13_INFO, - DISK_DETECTION_INFO, DISK_GEOMETRY_EX, DISK_GROW_PARTITION, - DISK_PARTITION_INFO, DISKQUOTA_USER_INFORMATION, - GET_LENGTH_INFORMATION, DISK_EXTENT, VOLUME_DISK_EXTENTS, - DRIVE_LAYOUT_INFORMATION_GPT, DRIVE_LAYOUT_INFORMATION_MBR, - PARTITION_INFORMATION_MBR, PARTITION_INFORMATION_GPT, - PARTITION_INFORMATION_EX, DRIVE_LAYOUT_INFORMATION_EX, - MOVE_FILE_DATA, - RETRIEVAL_POINTERS_BUFFER, STARTING_LCN_INPUT_BUFFER, - STARTING_VCN_INPUT_BUFFER, VOLUME_BITMAP_BUFFER): Add structs. - (PARTITION_STYLE, DISK_CACHE_RETENTION_PRIORITY): Add enums. - (MEDIA_TYPE): Add F3_120M_512, F3_640_512, F5_640_512, - F5_720_512, F3_1Pt2_512, F3_1Pt23_1024, F5_1Pt23_1024, - F3_128Mb_512, F3_230Mb_512, F8_256_128, F3_200Mb_512, - F3_240M_512, and F3_32M_512. - * lib/kernel32.def (GetVolumePathNamesForVolumeName[AW]): Add - stubs. - -2003-04-16 Earnie Boyd <earnie@users.sf.net> - - * include/wingdi.h (DM_SPECVERSION): Define. - Thanks to Sinitsyn Valentime <valentine.sinitsyn@usu.ru> - * include/rpcdce.h (UuidCreateSequential): Properly guard with - appropriate _WIN32_WINNT values. - -2003-04-15 Chris January <chris@atomice.net> - - * include/rpcdce.h: Add declaration for UuidCreateSequential. - * lib/rpcrt4.def: Add entry for UuidCreateSequential. - -2003-04-14 Phil Krylov <likewolf@users.sourceforge.net> - - * include/winuser.h (VK_*): Add missing defines. - -2003-04-14 Vincent Béron <papineau@users.sourceforge.net> - - * include/commctrl.h (NMUPDOWN, LPNMUPDOWN): Use currently - documented typedefs for struct _NM_UPDOWN. - Add defines for backward comapatibility. - * include/commdlg.h (OFN_ENABLESIZING): Add define. - * include/wininet.h (IRF_*): Add missing defines. - -2003-04-14 Bang Jun-Young <junyoung@netbsd.org> - - * lib/ntdll.def (Csr*, Dbg*, Ki*, Ldr*, Rtl*): Add W2K exports. - -2003-04-11 Earnie Boyd <earnie@users.sf.net> - - * include/sspi.h: Add comment for FreeCredentialsHandle. - -2003-04-07 Marcel Telka <telka@users.sourceforge.net> - - * include/ddk/winddk.h (KIRQL): Typedef as UCHAR, not ULONG. - -2003-03-30 Hans E. Molin <kvasi@users.sourceforge.net> - - * include/olectl.h (OleLoadPicturePath): Correct prototype. - -2003-03-30 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/uuid.c (IID_IHTML*): Move definitions to... - * lib/mshtml-uuid.c: New file. - * lib/Makefile.in: Add mshtml-uuid.o to libuuid.a - -2003-03-30 Michael Sazonov <traip@comset.net> - - * lib/uuid.c (IID_IHTML*): Add new GUID definitions. - * include/mshtml.h (IHTMLElementCollection, IHTMLLinkElement, - IHTMLImgElement): Add interface definitions. - -2003-03-29 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (ANIMATE_CLASS,HOTKEY_CLASS,PROGRESS_CLASS, - STATUSCLASSNAME,TOOLBARCLASSNAME,TOOLTIPS_CLASS,TRACKBAR_CLASS, - UPDOWN_CLASS,WC_COMBOBOXEX,WC_HEADER,WC_IPADDRESS,WC_LISTVIEW, - WC_TABCONTROL,WC_TREEVIEW): Move UNICODE mappings out of - RC_INVOKED guard. - (WC_PAGESCROLLER,WC_NATIVEFONTCTL,WC_BUTTON,WC_STATIC,WC_EDIT, - WC_LISTBOX,WC_COMBOBOX,WC_SCROLLBAR): Add defines. - -2003-03-28 Bang Jun-Young <junyoung@netbsd.org> - - * include/winnt.h (WAITORTIMERCALLBACKFUNC): Add typedef. - -2003-03-27 Danny Smith <dannysmith@users.sourceforge.net> - - * include/secext.h (GetComputerObjectName[AW],GetUserNameEx[AW], - TranslateName[AW]): Add prototypes. - * lib/sec32.def (GetComputerObjectName[AW],GetUserNameEx[AW], - TranslateName[AW]): Add stubs. - * lib/test.c: Include secext.h. - -2003-03-27 Vladimir Michl <michlv@users.sourceforge.net> - - * include/ddk/ndis.h (NdisAllocateSpinLock,NdisFreeSpinLock, - NdisAcquireSpinLock,NdisReleaseSpinLock,NdisDprAcquireSpinLock, - NdisDprReleaseSpinLock): Change macro argument from SpinLock to - _SpinLock. - -2003-03-26 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment version to 2.4. - * Makefile.in: Ditto. - -2003-03-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/batclass.h (BATTERY_REPORTING_SCALE) - Move structure from here... - * include/winnt.h (BATTERY_REPORTING_SCALE): To here. - - * include/ddk/ntapi.h (JOBOBJECT_*): - Remove structures and enums definitions. - (JOB_OBJECT*): Move defines from here... - * include/winnt.h (JOB_OBJECT* ): To here. - - * include/ddk/ntpoapi.h (LATENCY_TIME, POWER_ACTION_POLICY, - SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY, - PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY, - ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION, - PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE, - SYSTEM_POWER_CAPABILITIES): Move enums, structures - and associated defines from here ... - * include/winnt.h: (LATENCY_TIME, POWER_ACTION_POLICY, - SYSTEM_POWER_LEVEL, SYSTEM_POWER_POLICY, - PROCESSOR_POWER_POLICY_INFO, PROCESSOR_POWER_POLICY, - ADMINISTRATOR_POWER_POLICY, SYSTEM_POWER_INFORMATION, - PROCESSOR_POWER_INFORMATION, SYSTEM_BATTERY_STATE, - SYSTEM_POWER_CAPABILITIES):To here. - - * include/ddk/winddk.h (DEVICE_POWER_STATE, - SYSTEM_POWER_STATE, POWER_ACTION): Move enums - from here... - * include/winnt.h (DEVICE_POWER_STATE, - SYSTEM_POWER_STATE, POWER_ACTION): To here. - -2003-03-19 Danny Smith <dannysmith@users.sourceforge.net> - - *lib/ndis.def (NdisAllocateMemory): Correct stdcall suffix. - Thanks to: Vladimir Michl <michlv@users.sourceforge.net> - (NdisUpdateSharedMemory): Likewise. - (NdisMFreeSharedMemory: Likewise. - (NdisMMapIoSpace: Likewise. - -2003-03-18 Danny Smith <dannysmith@users.sourceforge.net> - - * include/lmaccess.h (UF_LOCKOUT): Correct name from UF_LOCK. - Thanks to: Fabricio D. Rossi <gurusoda@users.sourceforge.net> - (UF_SETTABLE_BITS): Correct UF_LOCKOUT here too. - -2003-03-17 Bang Jun-Young <junyoung@netbsd.org> - - * include/winbase.h (EnumResourceLanguages[AW]): Correct prototypes. - (EnumResourceNames[AW]): Ditto. - (EnumResourceTypes[AW]): Ditto. - * include/wincon.h (CONSOLE_FONT_INFO): Add struct. - -2003-03-16 Toby Malone <malone@users.sourceforge.net> - - * include/winuser.h (SendInput): Add prototype. - * lib/user32.def (SendInput): Add stub. - -2003-03-16 Vadim Yegorov <zg@bmg.lv> - - * winioctl.h (FSCTL_SET_REPARSE_POINT: Correct macro. - (FSCTL_DELETE_REPARSE_POINT): Likewise. - -2003-03-15 Bang Jun-Young <junyoung@netbsd.org> - - * winnt.h (JOBOBJECTINFOCLASS): Define enum. - (JOBOBJECT_*): Define corresponding structures. - -2003-03-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/winddk.h (PCUNICODE_STRING): Remove incorrect - typedef. - -2003-03-13 Bang Jun-Young <junyoung@netbsd.org> - - * lib/kernel32.def (Module32{First,Next}{,W}): Add missing exports. - (Process32{First,Next}{,W}): Ditto. - (Thread32{First,Next}): Ditto. - * include/ntdef.h (PCUNICODE_STRING): Add typedef. - -2003-03-12 Earnie Boyd <earnie@users.sf.net> - - * include/mswsock.h: Correct invalid filter for _WINSOCK2_H. - Thanks to Jim Barton <jmbarton@users.sf.net>. - -2003-03-12 Ranjit Mathew <rmathew@hotmail.com> - - * include/winnt.h (_IMAGE_SEPARATE_DEBUG_HEADER): Expose - member SectionAlignment. - -2003-03-11 Earnie Boyd <earnie@users.sf.net> - - * include/winsvc.h (SERVICE_NO_CHANGE): Use hex constant to avoid - warnings. - Thanks to Fabricio D. Rossi <gurusoda@users.sf.net>. - * Makefile.in (bindist): Correct process. - * lib/Makefile.in (install): Ditto. - Thanks to Jeff Bonnggren <jbon@users.sf.net>. - -2003-03-10 Danny Smith <dannysmith@users.sourceforge.net> - - * include/rasdlg.h: New file. - * lib/rasdlg.def: New file. - * lib/test.c: Include rasdlg.h. - -2003-03-06 Christopher January <chris@atomice.net> - - * include/winbase.h (FindFirstVolume): Add declaration. - (FindNextVolume): Add declaration. - (FindVolumeClose): Add declaration. - (GetSystemTimes): Add declaration. - * include/winnt.h: Add define for PF_XMMI64_INSTRUCTIONS_AVAILABLE. - -2003-03-06 Danny Smith <dannysmith@users.sourceforge.net> - - *lib/kernel32.def (GetSystemTimes): Add stub. - -2003-03-04 Heiko Gerdau <hg@technosis.de> - - * oleidl.h (IOleObject): Correct GetUserType prototype. - (IViewObject2): Correct GetExtent prototype. - * olectl.h (DISPIP_): Add new defines - * ocidl.h (IOleInPlaceSiteWindowless): Add new interface. - -2003-03-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/olectl.h (OleLoadPictureEx) Add prototype. - (OleLoadPictureFile): Ditto. - (OleLoadPictureFileEx): Ditto. - (OleLoadPicturePath): Ditto. - (OleSavePictureFile): Ditto. - -2003-03-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/objbase.h (CoAddRefServerProcess): Add prototype. - (CoAddReleaseServerProcess): Ditto. - (CoResumeClassObjects): Ditto. - (CoSuspendClassObjects): Ditto. - * include/oleauto.h (V_I1): Define. - Thanks to: "Timofei" <mmttmm@users.sourceforge.net> - -2003-03-01 Heiko Gerdau <hg@technosis.de> - - * include/oleidl.h (USERCLASSTYPE): Add enum. - * include/ocidl.h (IObjectWithSite): Add interface. - -2003-02-28 Roland Schwingel <roland.schwingel@onevision.de> - - Fixup UNICODE thinko in 2003-02-22 patch. - * include/wingdi.h (AddFontMemResourceEx): Add. - (RemoveFontMemResourceEx): Ditto. - (AddFontMemResourceEx[AW]): Remove. - (RemoveFontMemResourceEx[AW]): Ditto - * lib/gdi32.def: (AddFontResourceEx): Add. - (RemoveFontMemResourceEx): Ditto. - (AddFontMemResourceEx[AW]): Remove. - (RemoveFontResourceEx[AW]): Ditto. - -2003-02-23 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (EVENTLOG_SUCCESS): Add define. - Thanks to: Thomas Weber <thomasweber@sourceforge.net> - -2003-02-22 Roland Schwingel <roland.schwingel@onevision.de> - - * include/wingdi.h (AddFontMemResourceEx[AW]): Add. - (RemoveFontMemResourceEx[AW]): Ditto - * lib/gdi32.def (AddFontMemResourceEx[AW]): Add. - (RemoveFontMemResourceEx[AW]): Ditto. - -2003-02-22 Bang Jun-Young <junyoung@netbsd.org> - - * lib/ntdll.def (NT*, RTL*, ZW*): Add missing exports. - (NtCurrentTeb): Remove. - -2003-02-22 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wsahelp.h: Remove ';' after closing - #ifdef __cplusplus brace. - * include/ws2spi.h: Likewise. - -2003-02-22 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (MEMORYSTATUSEX): Add structure. - (GlobalMemoryStatusEx): Add prototype. - * lib/kernel32.def (GlobalMemoryStatusEx): Add stub. - -2003-02-17 Vaclav Haisman <V.Haisman@sh.cvut.cz> - - * include/winioctl.h (FSCTL_SET_SPARSE): Define. - -2003-02-12 Roland Schwingel <roland.schwingel@onevision.de> - - * include/wingdi.h (AddFontResourceEx[AW]): Add. - (RemoveFontResourceEx[AW]): Ditto - (FR_PRIVATE): Define. - (FR_NOT_ENUM): Define. - * lib/gdi32.def (AddFontResourceEx[AW]): Add. - (RemoveFontResourceEx[AW]): Ditto. - -2003-02-10 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment version to 2.3. - * Makefile.in: Ditto. - -2003-02-09 Earnie Boyd <earnie@users.sf.net> - - * lib/ddk/ntoskrnl.def (Ke386IoSetAccessProcess): Activate export. - (Ke386QueryToAccessMap): Ditto. - (Ke386SetIoAccessMap): Ditto. - Thanks to Marcel Telka <telka@users.sf.net> - * include/secext.h: New file. Declare EXTENDED_NAME_FORMAT. - * include/security.h: Include secext.h. - * include/winbase.h: Declare COMPUTER_NAME_FORMAT. - Thanks to Dimitri Papadopoulos <dimitri_at@users.sf.net> - * include/GL/gl.h: Remove include of glext.h. - Thanks to Greg Couch <gregcouch@users.sf.net> - -2003-02-05 Earnie Boyd <earnie@users.sf.net> - - * include/basetypes.h (_GUID_DEFINED): Add deprecation warning, start - using GUID_DEFINED instead. - * include/sqltypes.h: Ditto. - * include/winnt.h: Ditto. - * include/ddk/scsiwmi.h: Ditto. - -2003-02-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlwapi.h (PathRelativePathTo[AW]): Correct - prototypes. - Thanks to: John Dallaway <jld@ecoscentric.com>. - -2003-02-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (TCM_*): Add missing defines. - -2003-02-01 Jesus Alvarez <jesus_alvarez@users.sourceforge.net> - Danny Smith <dannysmith@users.sourceforge.net> - - * include/prsht.h (PSP_*, PSH_*): Add missing defines. - (PROPSHEETPAGE[AW]): Add pszHeaderTitle, pszHeaderSubTitle - for (_WIN32_IE >= 0x0400). - (PROPSHEETHEADER[AW]): Add hplWatermark and anonymous union - fields for (_WIN32_IE >= 0x0400). - -2003-01-31 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (CreateFiber): Change first parameter - to SIZE_T. - (CreateJobObject[AW], CreateHardLink[AW]):Guard with - if (_WIN32_WINNT >= 0x0500). - -2003-01-31 Bang Jun-Young <junyoung@netbsd.org> - - * include/winbase.h (PWIN32_FIND_DATAA, PWIN32_FIND_DATAW): - Add missing typedefs. - (CreateFiberEx, CreateJobObjectA,CreateJobObjectW): Add missing - prototypes. - (CreateHardLinkA, CreateHardLinkW): Return BOOL, not HANDLE. - -2003-01-27 Krzysztof Nikiel <kni@poczta.onet.pl> - - * include/mmsystem.h (MIXERCONTROL_CONTROLF_MULTIPLE): Correct - define. - * lib/largeint.c (LargeIntegerAdd): Add, don't multiply. - -2003-01-27 Danny Smith <dannysmith@users.sourceforge.net> - - * include/rpcnterr.h (RPC_X_INVALID_PIPE_OPERATION): Add - define. - * include/winbase.h (WAIT_TIMEOUT): Guard against prior - definition. - (WAIT_FAILED): Cast to DWORD. - * include/winerror.h (WAIT_TIMEOUT): Guard against prior - definition. - -2003-01-27 Bang Jun-Young <junyoung@netbsd.org> - - * include/winerror.h: Protect against multiple - definition of WSA* error codes. - * include/winsock.h: Likewise. - * include/winsock2.h: Likewise. - -2003-01-27 Bang Dong-Heui - Bang Jun-Young <junyoung@netbsd.org> - - * include/winerror.h (ERROR_*, SEC_E_*,RPC_S_*, FRS_ERR_*, - DNS_*, WSA*, WAIT_TIMEOUT): Add missing error codes. - (RPC_X_INVALID_PIPE_OPERATION): Remove define. - - -2003-01-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ras.h (RASCONN[AW]): Add dwSessionId for - (WINVER >= 0x501). - -2003-01-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ras.h (RASCONN[AW]): Guard szDeviceType, - szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid - fields for (WINVER >= 0x501). - -2003-01-23 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/ws2_32.def (getaddrinfo, freeaddrinfo and getnameinfo): - Add stubs. - * include/ws2tcpip.h (IPV6_*) Add IPPROTO_IPV6 level socket - options. - -2003-01-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (IMAGE_FILE_AGGRESIVE_WS_TRIM - IMAGE_FILE_LARGE_ADDRESS_AWARE): Add defines. - -2003-01-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/accctrl.h (enum _SE_OBJECT_TYPE): Add - SE_REGISTRY_WOW64_32KEY. - Reported by: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> - -2003-01-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (HDN_GETDISPINFO[AW]: Add defines. - (tagNMHDDISPINFO[AW}: Add structures and typedefs. - Reported by: Mat Nieuwenhoven <matnieuw@users.sourceforge.net> - -2003-01-10 Christopher Faylor <cgf@redhat.com> - - * include/winsock2.h: Remove gethostname from INSIDE_CYGWIN protection. - -2003-01-08 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/dxguid.c: Don't #include <objbase.h>. - * include/unknwn.h: Partially revert change of 2002-12-26. - Don't include <ole2.h>. - -2003-01-08 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/dinput.c: Don't #include <objbase.h>. - -2003-01-08 Bart Oldeman <bartoldeman@users.sourceforge.net> - - * include/windows.h (ole2.h):Do #include for - __WATCOMC__. - -2003-01-05 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (SPI_SETWHEELSCROLLLINES) Add define. - * include/zmouse.h (WHEEL_DELTA): Guard against prior - definition. - (WHEEL_PAGESCROLL): Likewise. - (SPI_SETWHEELSCROLLLINES): Define, if not already done. - -2003-01-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (SPI_GETWHEELSCROLLLINES) Add define. - (WHEEL_PAGESCROLL): Add define. - -2003-01-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (tagNMTOOLBAR[AW]): Replace obsolete struct - names tagTBNOTIFY[AW] and typedefs. Add defines for backward - compatability. Add RECT field. Add UNICODE mappings for new - names. - (tagNMREBARCHEVRON): Add struct and typedefs for - _WIN32_IE >= 0x0500. - -2003-01-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (TOOLINFO[AW]): Update structures. - (LVHITTESTINFO): Likewise. - - * include/wingdi.h (GRADIENT_TRIANGLE): Add structure. - (GRADIENT_RECT): Likewise. - -2003-01-03 Bang Jun-Young <junyoung@netbsd.org> - - * include/winerror.h (ERROR_OPLOCK_NOT_GRANTED, - ERROR_INVALID_OPLOCK_PROTOCOL, ERROR_SOURCE_ELEMENT_EMPTY, - ERROR_DESTINATION_ELEMENT_FULL, ERROR_ILLEGAL_ELEMENT_ADDRESS, - ERROR_MAGAZINE_NOT_PRESENT, ERROR_DEVICE_REINITIALIZATION_NEEDED, - ERROR_DEVICE_REQUIRES_CLEANING, ERROR_DEVICE_DOOR_OPEN, - ERROR_DEVICE_NOT_CONNECTED, ERROR_NOT_FOUND, ERROR_NO_MATCH, - ERROR_SET_NOT_FOUND, ERROR_NO_TRACKING_SERVICE, - ERROR_JOURNAL_DELETE_IN_PROGRESS, ERROR_JOURNAL_NOT_ACTIVE, - ERROR_JOURNAL_ENTRY_DELETED, ERROR_ONLY_IF_CONNECTED, - ERROR_NOT_SUPPORTED_ON_SBS, ERROR_SERVER_SHUTDOWN_IN_PROGRESS, - ERROR_MUTUAL_AUTH_FAILED, ERROR_TIME_SKEW, ERROR_DEVICE_REMOVED, - RPC_S_INVALID_ASYNC_HANDLE, RPC_S_INVALID_ASYNC_CALL, - RPC_X_PIPE_CLOSED, RPC_X_PIPE_DISCIPLINE_ERROR, RPC_X_PIPE_EMPTY, - ERROR_CANT_ACCESS_FILE, ERROR_CANT_RESOLVE_FILENAME, - ERROR_WMI_GUID_NOT_FOUND, ERROR_WMI_INSTANCE_NOT_FOUND, - ERROR_WMI_ITEMID_NOT_FOUND, ERROR_WMI_TRY_AGAIN, ERROR_WMI_READ_ONLY, - ERROR_WMI_SET_FAILURE, ERROR_TRANSPORT_FULL, ERROR_FILE_OFFLINE, - ERROR_REMOTE_STORAGE_NOT_ACTIVE, ERROR_REMOTE_STORAGE_MEDIA_ERROR, - ERROR_NOT_A_REPARSE_POINT, ERROR_REPARSE_ATTRIBUTE_CONFLICT, - ERROR_INVALID_REPARSE_DATA, ERROR_REPARSE_TAG_INVALID, - ERROR_REPARSE_TAG_MISMATCH, ERROR_FILE_ENCRYPTED, - ERROR_FILE_NOT_ENCRYPTED, ERROR_NOT_EXPORT_FORMAT, - ERROR_CTX_WINSTATION_NAME_INVALID, ERROR_CTX_INVALID_PD, - ERROR_CTX_PD_NOT_FOUND, ERROR_CTX_WD_NOT_FOUND, - ERROR_CTX_CLOSE_PENDING, ERROR_CTX_NO_OUTBUF, - ERROR_CTX_MODEM_INF_NOT_FOUND, ERROR_CTX_INVALID_MODEMNAME, - ERROR_CTX_MODEM_RESPONSE_ERROR, ERROR_CTX_MODEM_RESPONSE_TIMEOUT, - ERROR_CTX_MODEM_RESPONSE_NO_CARRIER, - ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE, ERROR_CTX_MODEM_RESPONSE_BUSY, - ERROR_CTX_MODEM_RESPONSE_VOICE, ERROR_CTX_TD_ERROR, - ERROR_CTX_WINSTATION_NOT_FOUND, ERROR_CTX_WINSTATION_ALREADY_EXISTS, - ERROR_CTX_WINSTATION_BUSY, ERROR_CTX_BAD_VIDEO_MODE, - ERROR_CTX_GRAPHICS_INVALID, ERROR_CTX_NOT_CONSOLE, - ERROR_CTX_CLIENT_QUERY_TIMEOUT, ERROR_CTX_CONSOLE_DISCONNECT, - ERROR_CTX_CONSOLE_CONNECT, ERROR_CTX_SHADOW_DENIED, - ERROR_CTX_WINSTATION_ACCESS_DENIED, ERROR_CTX_INVALID_WD, - ERROR_CTX_SHADOW_INVALID, ERROR_CTX_SHADOW_DISABLED, - ERROR_CTX_CLIENT_LICENSE_IN_USE, ERROR_CTX_CLIENT_LICENSE_NOT_SET, - ERROR_CTX_LICENSE_NOT_AVAILABLE, ERROR_CTX_LICENSE_CLIENT_INVALID, - ERROR_CTX_LICENSE_EXPIRED, ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY, - ERROR_DS_NO_ATTRIBUTE_OR_VALUE, ERROR_DS_INVALID_ATTRIBUTE_SYNTAX, - ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED, ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS, - ERROR_DS_BUSY, ERROR_DS_UNAVAILABLE, ERROR_DS_NO_RIDS_ALLOCATED, - ERROR_DS_NO_MORE_RIDS, ERROR_DS_INCORRECT_ROLE_OWNER, - ERROR_DS_RIDMGR_INIT_ERROR, ERROR_DS_OBJ_CLASS_VIOLATION, - ERROR_DS_CANT_ON_NON_LEAF, ERROR_DS_CANT_ON_RDN, - ERROR_DS_CANT_MOD_OBJ_CLASS, ERROR_DS_CROSS_DOM_MOVE_ERROR, - ERROR_DS_GC_NOT_AVAILABLE, ERROR_SHARED_POLICY, - ERROR_POLICY_OBJECT_NOT_FOUND, ERROR_POLICY_ONLY_IN_DS, - ERROR_DS_ADMIN_LIMIT_EXCEEDED, ERROR_DS_DS_REQUIRED, - ERROR_DS_SAM_INIT_FAILURE, ERROR_DS_SENSITIVE_GROUP_VIOLATION, - ERROR_DS_CANT_MOD_PRIMARYGROUPID, ERROR_DS_INVALID_GROUP_TYPE, - ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN, - ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN, - ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER, - ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER, - ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER, - ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER, - ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER, - ERROR_DS_HAVE_PRIMARY_MEMBERS, ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD, - ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY, ERROR_DS_CANT_START, - ERROR_DS_INIT_FAILURE, ERROR_SAM_INIT_FAILURE, ERROR_DS_GC_REQUIRED, - ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY, - ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS, - ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED): - Add missing error codes. - -2003-01-02 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/kernel32.c (GetCurrentFiber): Remove blank input field in - asm code. - (GetFiberData): Likewise. - -2003-01-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (GetCurrentFiber): Remove blank input field in - asm code. - (GetFiberData): Likewise. - -2003-01-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winerror.h (ERROR_DIFFERENT_SERVICE_ACCOUNT, - ERROR_EXE_MACHINE_TYPE_MISMATCH, ERROR_HOOK_TYPE_NOT_ALLOWED, - ERROR_INVALID_KEYBOARD_HANDLE, ERROR_INVALID_PRINT_MONITOR, - ERROR_PRINT_MONITOR_IN_USE, ERROR_PRINTER_HAS_JOBS_QUEUED, - ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION, - ERROR_SUCCESS_REBOOT_REQUIRED, ERROR_SUCCESS_RESTART_REQUIRED, - ERROR_TIMEOUT, OR_INVALID_OID, OR_INVALID_OXID, - OR_INVALID_SET, RPC_X_INVALID_PIPE_OPERATION): Add missing - error codes. - Re-sort codes. - -2003-01-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winspool.h (PRINTER_INFO_6): Add. - Reported by: Mat Nieuwenhoven <matnieuw@users.sourceforge.net> - -2002-12-30 Hartmut Honisch <hhonisch@users.sourceforge.net> - - * include/winbase.h (NMPWAIT_WAIT_FOREVER): Cast to DWORD. - - * lib/ntdll.def (NtConnectPort, NtOpenEvent, - NtRequestWaitReplyPort, NtWaitForSingleObject,ZwConnectPort, - ZwOpenEvent, ZwRequestWaitReplyPort, ZwWaitForSingleObject): - Add stubs. - -2002-12-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (wglGetLayerPaletteEntries): Correct - prototype. Thanks to: Joe Krahn <jkrahn at nc dot rr dot com>. - -2002-12-26 Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> - - * include/wingdi.h (DOCINFOA): Replace LPCTSTR with LPCSTR. - -2002-12-26 Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> - - * include/wingdi.h (BALTIC_CHARSET, JOHAB_CHARSET, - VIETNAMESE_CHARSET): Remove duplicate defines. - * lib/comctl32.def (ImageList_SetImageCount): Add stub. - -2002-12-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/dbt.h (DEV_BROADCAST_PORT): Add UNICODE version. - Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> - -2002-12-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/unknwn.h: Include windows.h and ole2.h before header - guard to avoid circular inclusion of COM headers. - -2002-12-26 Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> - - * include/dde.h (PackDDElParam, UnpackDDElParam,FreeDDElParam, - ReuseDDElParam): Use __WIN64 compatible typedefs. - -2002-12-26 Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> - - * include/accctrl.h (ACTRL_ACCESS_ENTRY[AW]): Make - lpInheritProperty member const. - (ACTRL_PROPERTY_ENTRY[AW]): Make lpProperty member - const. - -2002-12-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commcat.h: Don't include windows.h or ole2.h ifdef - COM_NO_WINDOWS_H. - * include/unknwn.h: Ditto. - -2002-12-26 Danny Smith <dannysmith@users.sourceforge.net> - - * include/imm.h (ImmGetCompositionFont[AW], - ImmSetCompositionFont[AW]): Add NOGDI guard. - -2002-12-19 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/hidusage.h: Remove unneccessary #pragma pack's. - * include/ddk/miniport.h (EMULATOR_PORT_ACCESS_TYPE): Define - before using. - (VIDEO_ACCESS_RANGE): Guard against prior definition. - * include/ddk/minitape.h (INQUIRYDATA): Guard against prior - definition. - * include/ddk/ndis.h (DECLARE_UNKNOWN_PROTOTYPE): Correct macro. - * include/ddk/ndisguid.h: Remove unneccessary #pragma pack's. - * include/ddk/scsi.h (INQUIRYDATA): Guard against prior - definition. - * include/ddk/scsiwmi.h (GUID): Define if not already done. - (LPCGUID): Likewise. - * include/ddk/tdi.h: Close "Listen flags" comment. - * include/ddk/tdistat.h: Remove unneccessary #pragma pack's. - * include/ddk/video.h: Add #pragma pack(push,4) to balance. - (VIDEO_ACCESS_RANGE): Guard against prior definition. - * include/ddk/videoagp.h:Add #pragma pack(push,4) to balance. - * include/ddk/win2k.h: Likewise. - * include/ddk/winddi.h: Likewise. - * include/ddk/winddk.h: Likewise. - * include/ddk/winnt4.h: Likewise. - * include/ddk/ws2san.h: Likewise. - * include/ddk/xfilter.h: Remove unbalanced #pragma pack(pop). - * include/ddk/video.h: Don't process rest of file ifdef - __WINDDI_H. - * include/ddk/winddi.h: Don't process rest of file ifdef - __VIDEO_H. - * include/ddk/usb.h: Don't process rest of file ifdef - __USBDI_H. - * include/ddk/usbdi.h: Don't process rest of file ifdef - __USB_H. - * include/ddk/usbcamdi.h: Don't process rest of file if - !defined(__USB_H) && !defined(__USBDI_H) - -2002-12-18 James E. Lucas <xelloss@users.sourceforge.net> - - * include/winnetwk.h (WNetResourceInformation[AW]): Correct - prototypes. - * include/winuser.h (GetAncestor) Add prototype. - (GA_PARENT, GA_ROOT, GA_ROOTOWNER): Add defines. - (EWX_FORCEIFHUNG): Add define for _WIN32_WINNT >= 0x0500. - (SPI_GETACTIVEWINDOWTRACKING, SPI_GETACTIVEWNDTRKZORDER, - SPI_GETACTIVEWNDTRKTIMEOUT, SPI_SETACTIVEWINDOWTRACKING - SPI_SETACTIVEWNDTRKZORDER, SPI_SETACTIVEWNDTRKTIMEOUT): Add - defines. - * lib/user32.def (GetAncestor@8): Add stub. - -2002-12-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windows.h: Guard inclusion of wingdi.h, - commdlg.h, winspool.h, ole2.h with NOGDI. - * include/winuser.h (ICONMETRICS, NONCLIENTMETRICS, - ChangeDisplaySettings, CreateDesktop, EnumDisplaySettings): - Guard with NOGDI. - -2002-12-12 Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> - - * include/oleacc.h (SELFLAG_*): Change to enum. - -2002-12-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (IShellLinkW::GetPath): Correct prototype. - Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> - -2002-12-09 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shellapi.h (ExtractIconEx[AW]): Correct return type - to UINT. - Thanks to: Dimitri Papadopoulos <dimitri_at@sourceforge.users.net> - -2002-12-07 Danny Smith <dannysmith@users.sourveforge.net> - - * include/winuser.h (AllowSetForegroundWindow, - LockSetForegroundWindow): Add prototypes. - (ASFW_ANY, LSFW_LOCK, LSFW_UNLOCK) Add defines. - Thanks to: Pat Thoyts <patthoyts@users.sourceforge.net> - * lib/winuser.def (AllowSetForegroundWindow, - LockSetForegroundWindow): Add stubs. - -2002-12-06 Ken Fitlike <kenfitlike@users.sourceforge.net> - - * include/commctrl.h (TN_GETDISPINFO[AW]): Add defines and - UNICODE mappings. - (tagNMTTDISPINFO[AW]): Replace obsolete struct names - tagTOOLTIPTEXT[AW] and typedefs. Add defines for backward - compatability. Add lParam field. Add UNICODE mappings for new - names. - -2002-12-02 Andrew Stadt <acstadt@sympatico.ca> - - * include/shellapi.h (_SHFILEOPSTRUCTA,_SHFILEOPSTRUCTW): - Wrap with pshpack2.h/poppack.h to correct alignment. - -2002-12-02 Ken Fitlike <kenfitlike@users.sourceforge.net> - - * include/commctrl.h (LVBKIF_*): Add defines. - (LVM_SETIMAGE[AW]): Add defines and UNICODE mappings. - (LVM_GETIMAGE[AW]): Add defines and UNICODE mappings. - (LVBKIMAGE[AW]): Add defines and UNICODE mappings. - (LPLVBKIMAGE[AW]): Add defines and UNICODE mappings. - (LVM_GETBKIMAGE[AW]): Add defines and UNICODE mappings. - (LVM_SETBKIMAGE[AW]): Add defines and UNICODE mappings. - (ListView_GetBkImage): Add define. - (ListView_SetBkImage): Add define. - (LVBKIMAGE): Add structures and typedefs. - -2002-11-25 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment to version 2.2 - * Makefile.in: Ditto. - -2002-11-25 Earnie Boyd <earnie@users.sf.net> - - * lib/Makefile.in (dist, install): Correct the install destinations. - * lib/ddk/Makefile.in (dist, install): Ditto. - -2002-11-16 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/uuid.c (CATID_InternetAware,CLSID_HttpSProtocol, - CLSID_PSUrlMonProxy,CLSID_StdURLMoniker,IID_IObjectWithSite, - IID_IPersistMoniker,IID_IProgressNotify): Correct off-by-one bug - in definitions. - (CLSID_CFontPropPage00, GUID_FONTUNDERSCORE11, - IID_IOleControlSite89): Remove. - -2002-11-15 Christopher Faylor <cgf@redhat.com> - - * lib/uuid.c (IID_IRunnableObject): Remove duplicate definition. - (IID_IStdMarshalInfo): Ditto. - -2002-11-15 Christopher Faylor <cgf@redhat.com> - - * lib/uuid.c (IID_IOleInPlaceSite): Remove duplicate definition. - (IID_IPersistStorage): Ditto. - -2002-11-15 Weiqi Gao <weiqigao@users.sourceforge.net> - - * lib/uuid.c (CLSID_PSClassObject, CLSID_PSEnumerators, - IID_IClassActivator, IID_IClientSecurity, IID_ICreateTypeInfo, - IID_ICreateTypeLib2, IID_IOleInPlaceSite, IID_IPersistStorage, - IID_IRunnableObject, IID_IServerSecurity, IID_IStdMarshalInfo): - Correct definitions. - -2002-11-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h, - d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h, - miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h, - ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h, - netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, - ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h, - ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h, - ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h, - ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h, - poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h, - storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h, - upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h, - usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h, - winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h, - xfilter.h): Change comment to refer w32api package, not MinGW. - -2002-11-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/ntddk.h: Include winnt.h as system header. - -2002-11-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h, - d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h, - miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h, - ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h, - netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, - ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h, - ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h, - ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h, - ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h, - poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h, - storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h, - upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h, - usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h, - winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h, - xfilter.h): Fix typo in disclaimer comment. - -2002-11-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/exdisp.h: Include oaidl.h as system header. - -2002-11-12 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h (__W32API_VERSION): Fix. - -2002-11-09 Weiqi Gao <weiqigao@users.sourceforge.net> - - * lib/uuid.c (IID_ICatInformation): Correct definition. - -2002-11-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/oleauto.h (DeregisterTypeLib): Remove. - (UnRegisterTypeLib): Add prototype. - -2002-11-07 Christopher January <chris@atomice.net> - - * include/winioctl.h: Add definition for IOCTL_DISK_UPDATE_DRIVE_SIZE. - -2002-11-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (VerSetConditionMask): Add prototype. - * lib/kernel32.def (VerifyVersionInfo[AW]): Add stubs. - -2002-10-16 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (MONITORINFOEX[AW]): Add structure - definitions and ANSI/UNICODE mappings. - Cleanup whitespace. - -2002-10-14 Earnie Boyd <earnie@users.sf.net> - - * Makefile.in: Add components for lib/ddk. Adjust for autoconf-2.53. - * configure.in: Ditto. - * lib/Makefile.in: Ditto. - * lib/ddk/Makefile.in: Correct installation procedure. Adjust for - autoconf-2.53. - * configure: Regenerate. - -2002-10-14 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windows.h: Don't include basetyps.h. - * include/objfwd.h: Do include basetyps.h. - -2002-10-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/objbase.h: Include rpc.h and rpcndr.h - before header guard. - -2002-10-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/olectl.h (PROPPAGEINFO): Change type of - field cb to ULONG. - -2002-10-11 Steven Edwards <Steven_Ed4153@yahoo.com> - - * lib/ntdll.def (RtlAcquireResourceExclusive, - RtlAcquireResourceShared, RtlDeleteResource, - RtlInitializeResource, RtlReleaseResource, - RtlTimeToSecondsSince1970) : Added missing exports. - -2002-10-08 Heiko Gerdau <hg@technosis.de> - - * include/oleacc.h: New file. - * include/winuser.h (ENDSESSION_LOGOFF) Add define. - (OBJID_*) Add defines. - * lib/uuid.c: Add DEFINE_GUID for IID_IAccessible. - * lib/test.c: Include oleacc.h. - -2002-10-06 Casper Hornstrup <chorns@it.dk> - - * include/ddk: New subdir. - * lib/ddk: Ditto. - * include/ddk/(atm.h, batclass.h, cfg.h, cfgmgr32.h, d4drvif.h, - d4iface.h, ddkmapi.h, hidclass.h, hidpi.h, hidusage.h, mcd.h, - miniport.h, minitape.h, mountdev.h, mountmgr.h, ndis.h, - ndisquid.h, ndistapi.h, ndisvan.h, netevent.h, netpnp.h, - netdev.h, ntapi.h, ntdd8042.h, ntddbeep.h, ntddcdrm.h, - ntddcdvd.h, ntddchgr.h, ntdddisk.h, ntddk.h, ntddkbd.h, - ntddmou.h, ntddndis.h, ntddpar.h, ntddpcm.h, ntddscsi.h, - ntddser.h, ntddstor.h, ntddtape.h, ntddtdi.h, ntddvdeo.h, - ntddvol.h, ntifs.h, ntpoapi.h, ntstatus.h, parallel.h, pfhook.h, - poclass.h, scsi.h, scsiscan.h, scsiwmi.h, smbus.h, srb.h, - storport.h, tdi.h, tdiinfo.h, tdikrnl.h, tdistat.h, tvout.h, - upssvc.h, usb.h, usb100.h, usbcamdi.h, usbdi.h, usbioctl.h, - usbiodef.h, usbscan.h, usbuser.h, video.h, videoagp.h, win2k.h, - winddi.h, winddk.h, winnt4.h, winxp.h, ws2san.h, - xfilter.h): New files. - * lib/ddk/(Makefile.in, apcups.def, cfgmgr32.def, dxapi.def, - hal.def, hid.def, hidparse.def, mcd.def, ndis.def, ntoskrnl.def, - scsiport.def, tdi.def, usbcamd.def, usbcamd2.def, videoprt.def, - win32k.def): Ditto. - -2002-10-04 Steven Edwards <Steven_Ed4153@yahoo.com> - - * lib/ntdll.def (NtAccessCheck, NtAdjustPrivilegesToken, - NtCreateKey, NtDeleteKey, NtDeleteValueKey, NtEnumerateKey, - NtEnumerateValueKey, NtOpenKey, NtOpenProcessToken, - NtOpenThreadToken, NtQueryInformationToken, NtQueryKey, - NtQueryValueKey, NtSetSecurityObject, NtSetValueKey, - RtlAddAccessAllowedAce, RtlCreateAcl, - RtlCreateSecurityDescriptor, RtlCreateUnicodeStringFromAsciiz, - RtlGetAce, RtlGetControlSecurityDescriptor, - RtlGetDaclSecurityDescriptor,RtlGetGroupSecurityDescriptor, - RtlGetOwnerSecurityDescriptor,RtlGetSaclSecurityDescriptor, - RtlImpersonateSelf, RtlIsTextUnicode, RtlLargeIntegerAdd, - RtlLengthSecurityDescriptor, RtlMakeSelfRelativeSD, - RtlMultiByteToUnicodeN RtlMultiByteToUnicodeSize, - RtlOpenCurrentUser, RtlSetDaclSecurityDescriptor, - RtlSetGroupSecurityDescriptor, RtlSetOwnerSecurityDescriptor, - RtlSetSaclSecurityDescriptor, RtlValidSecurityDescriptor, - ZwAccessCheck, ZwAdjustPrivilegesToken, ZwCreateKey, - ZwDeleteValueKey, ZwEnumerateKey, ZwEnumerateValueKey, - ZwOpenKey, ZwOpenProcessToken, ZwOpenThreadToken, - ZwQueryInformationToken, ZwQueryKey, ZwQueryValueKey - ZwSetSecurityObject, ZwSetValueKey): Added missing exports. - -2002-10-04 "KJK::Hyperion" <noog@libero.it> - - *include/windef.h (WPARAM): Update typedef. - (LPARAM): Ditto. - (LRESULT): Ditto. - -2002-10-04 "KJK::Hyperion" <noog@libero.it> - - * include/shlobj.h (CSIDL_*): Add defines. - -2002-09-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ws2tcpip.h: Throw error if winsock.h, not winsock2.h - has been included first. - -2002-09-24 René Møller Fonseca <fonseca@users.sourceforge.net> - - * include/winbase.h (FindFirstFileEx): Fixed ANSI mode. - * include/wingdi.h (PFD_SWAP_LAYER_BUFFERS):Added define. - * include/winuser.h (AppendMenu[AW]): Fixed prototypes. - -2002-09-18 Eric R. Krause <ekrause_98@users.sourceforge.net> - - * include/winuser.h (DS_SHELLFONT): Define. - -2002-09-17 Daniel Schlyder <daniel@dascdev.net> - - * include/winnt.h (VER_SUITE_BLADE): Define. - -2002-09-17 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (SHGetSpecialFolderPath[AW]): - Add _WIN32_IE guard. Correct prototype for wide version. - (SHGetFolderPath): Add comment on shfolder.dll. - (SHGetFolderLocation): Add prototyope for WinME and W2K. - (SHGetFolderPathAndSubDir[AW]): Add prototypes for XP. - -2002-09-16 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/shell32.def (SHGetFolderPath[AW]): Add comment. - * lib/shfolder.def: New file. - -2002-09-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winsock.h (timeval): Guard struct and associated - macros with _TIMEVAL_DEFINED. - * include/winsock2.h (timeval): Likewise. - -2002-09-11 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/shell32.def (SHBindtoParent,SHCreateDirectoryEx[AW], - SHCreateProcessAsUserW,SHCreateQueryCancelAutoPlayMoniker, - SHCreateShellItem,SHEmptyRecycleBin[AW], - SHEnumerateUnreadMailAccountsW,SHExtractIconsW, - SHGetDataFromIDList[AW],SHGetDiskFreeSpace[AW], - SHGetDiskFreeSpaceEx[AW],SHGetFolderLocation, - SHGetFolderPathAndSubDir[AW],SHGetIconOverlayIndex[AW], - SHGetNewLinkInfo[AW],SHGetSettings,SHGetUnreadMailCountW, - SHInvokePrinterCommand[AW],SHIsFileAvailableOffline, - SHLoadNonloadedIconOverlayIdentifiers, - SHOpenFolderAndSelectItems,SHParseDisplayName, - SHPathPrepareForWrite[AW],SHQueryRecycleBin[AW], - SHSetLocalizedName,SHSetUnreadMailCountW, - SHUpdateRecycleBinIcon: Add missing stubs. - -2002-09-07 Earnie Boyd <earnie@users.sf.net> - - * include/windef.h (WINVER): Add documentation. - (_WIN32_WINNT): Ditto. - Special thanks to Paul Schmidt <paul@tricattechnologies.com> - -2002-09-06 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/Makefile.in (TEST_OPTIONS): Define WINVER to 0x0666. - -2002-09-04 Kevin Chase <kevincha99@hotmail.com> - - * include/winbase.h (AllocateUserPhysicalPages, - MapUserPhysicalPages, MapUserPhysicalPagesScatter, - FreeUserPhysicalPages): Add prototypes. - * lib/kernel32.def: Add function stubs for above. - -2002-09-03 René Møller Fonseca <fonseca@users.sourceforge.net> - - * include/winuser.h (IDTRYAGAIN,IDCONTINUE): Add defines. - Add WINVER guards for dialog box command id defines. - -2002-09-03 Earnie Boyd <earnie@users.sf.net> - - * include/wincon.h (GetConsoleWindow): Add _WIN32_WINNT >= 0x0500 guard. - -2002-08-30 Christopher January <ccj00@doc.ic.ac.uk> - - * include/wincon.h: Define GetConsoleWindow(void). - -2002-08-28 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment version to 2.1. - * Makefile.in: Ditto. - -2002-08-26 Bart Oldeman <bart.oldeman@btinternet.com> - - * include/winsock2.h (SOCKET_ADDRESS): Define if - __CSADDR_T_DEFINED is not defined (copied from nspapi.h) - (CSADDR_INFO): Ditto. - (nspapi.h) : Don't include. Removed FIXME comment. - * include/nspapi.h (SOCKET_ADDRESS) Only define if - __CSADDR_T_DEFINED is not defined. - (CSADDR_INFO): Ditto. - (BLOB): Add structure and typedef if not already defined. - (NS_*): Add defines. - (SERVICE_*): Ditto. - (SERVICE_ADDRESS): Add structure and typedefs. - (SERVICE_ADDRESSES): Ditto. - (SERVICE_INFO[AW]): Ditto, and add UNICODE mappings. - (LPSERVICE_ASYNC_INFO): Add typedef. - (SetService[AW], GetAddressByName[AW]): Add prototypes and UNICODE - mappings. - * include/wsipx.h: New file. - * include/svcguid.h: New file. - * lib/test.c: Include wspix.h and svcguid.h. - -2002-08-26 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/wsahelp.h: New file. - * lib/test.c: Include wsahelp.h. - -2002-08-21 Earnie Boyd <earnie@users.sf.net> - - * include/commctrl.h (NMCUSTOMDRAW): Fix lItemlParam. - Thanks to: "Phil Dempster" <p_dempster@yahoo.co.uk>. - -2002-08-20 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ws2spi.h: Modify comment about being part of - mingw32 package. - (winsock2.h): Change "" to <>. - -2002-08-20 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/ws2spi.h: New file. - * lib/test.c: Include ws2spi.h. - -2002-08-20 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winsock2.h (WSAIsBlocking,WSAUnhookBlockingHook, - WSASetBlockingHook,WSACancelBlockingCall): Expose deprecated - functions. - -2002-08-17 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (CURSOR_SHOWING) Add define. - Thanks to: Jan Hlavatý <hlavac@users.sourceforge.net> - -2002-08-17 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winerror.h: Cast OLE error codes to HRESULT. - Thanks to: Gunnar Degnbol <gdegnbol@users.sourceforge.net> - -2002-08-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wincrypt.h (ALG_*): Add defines. - (CALG_*): Ditto. - (CRYPT_*): Ditto. - (PP_*): Ditto. - (PROV_*): Ditto. - (PRIVATEKEYBLOB): Add define. - -2002-08-14 Earnie Boyd <earnie@users.sf.net> - - * include/shlobj.h (SHGetFolderPath): Add define. - * lib/shell32.def (SHGetSpecialFolderPath): Add export. - (SHGetFolderPath): Ditto. - -2002-08-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commdlg.h: Don't include COM headers or use - COM-dependent symbols if __OBJC__. - -2002-08-13 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wincrypt.h (CryptDuplicateHash, CryptDuplicateKey): - Add prototypes. - -2002-08-12 Andriy Palamarchuk <apa3a@yahoo.com> - - * include/shellapi.h (FOF_NOERRORUI): Add define. - -2002-08-12 Danny Smith <dannysmith@users.sourceforge.net> - - * include/objidl.h (IEnumMoniker): Put 'interface' back. - -2002-08-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/objidl.h (IEnumMoniker): Correct declaration. - -2002-08-09 Mark Schreiber <mark7@users.sourceforge.net> - - * include/wincrypt.h (CRYPT_NOHASHOID): Add define. - -2002-08-09 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h: Whitespace change. - -2002-08-09 Lars Munch <lars@segv.dk> - - * include/commctrl.h (tagTVHITTESTINFO): Replace obsolete - struct name _TVHITTESTINFO and typedefs and add defines for - backward compatability. - (ListView_SetExtendedListViewStyleEx): Add macro. - -2002-08-05 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (AlphaBlend,GradientFill,TransparentBlt): - Add prototypes. - * lib/msimg32.def: New file, with stubs for above. - -2002-08-03 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (AddAccessAllowedAceEx,AddAccessDeniedAceEx, - GetFileSizeEx, SetFilePointerEx): Add prototypes. - (EncryptFile[AW], FileEncryptionStatus[AW]): Add prototypes - and UNICODE mappings. - -2002-08-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (ReadFileScatter, WriteFileGather): - Change second parameter to pointer. - -2002-07-31 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wininet.h (InternetReadFileEx[AW]). Add prototypes and - UNICODE mappings. - * lib/wininet.def: Regenerate. - -2002-07-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windef.h (PVOID): Move typedef to... - * include/winnt: ...here. - (PVOID64): New typedef. - - * include/winnt,h (FILE_SEGMENT_ELEMENT): Define union. - * include/winbase.h (ReadFileScatter, WriteFileGather): - Add prototypes. - - * include/winnt,h (PROCESSOR_ARCHITECTURE_*): Add defines. - (PROCESSOR_INTEL_IA64): Add define. - -2002-07-25 Danny Smith <dannysmith@users.sourceforge.net> - - * include/oleidl.h (MK_ALT): Define. - -2002-07-26 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/exdisp.h: New file. - * include/exdispid.h: New file. - * include/mshtml.h: New file. - * lib/test.c: #include exdisp.h and mshtml.h - * lib/uuid.c (CLSID_WebBrowser, DIID_DWebBrowserEvents, - DIID_DWebBrowserEvents2, IID_IHTMLDocument, IID_IHTMLDocument2, - IID_IHTMLElement, IID_IHTMLSelectionObject, IID_IHTMLTxtRange, - IID_IWebBrowser, IID_IWebBrowser2, IID_IWebBrowserApp): - New GUIDs. - -2002-07-26 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/docobj.h: New file. - * include/idispids.h: New file. - * include/objidl.h (IID_IMoniker): Declare. - * include/ocidl.h (READYSTATE): New enum. - (IOleInPlaceSiteEx): New interface. - * include/olectlid.h (IID_IEnumSTATSTG): New interface - identifier. - * include/oleidl.h (IOleItemContainer, IOleInPlaceObject, - IOleInPlaceSite): New interfaces. - * lib/test.c: #include docobj.h,idispids.h, - -2002-07-25 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (BFFM_VALIDATEFAILED[AW]): Add defines. - (BFFM_SETSTATUSTEXT, BFFM_SETSELECTION): UNICODE them. - -2002-07-25 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/commctrl.h: Avoid redefinition of CDN_FIRST/LAST. - * include/commdlg.h: Likewise. - -2002-07-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/oleauto.h (V_UNION): Correct definition for case of - NONAMELESSUNION: - (V_VT): Likewise. - -2002-07-23 Danny Smith <dannysmith@users.sourceforge.net> - - * include/oleauto.h (V_BOOL): Define in terms of boolVal, - not bool, for C as well as C++. - -2002-07-22 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlwapi.h: New file. - Thanks to: Mattia Barbon <mbarbon@dsi.unive.it> and - Victor Porton <porton@narod.ru> for contributions. - * lib/shlwapi.def: New file. - * lib/test.c: #include shlwapi.h. - -2002-07-21 Bart Oldeman <bart.oldeman@btinternet.com> - - * include/shlobj.h (FCIDM_MENU_FAVORITES): Remove bogus - character. - * include/winsock2.h (struct sockaddr): Use __int64 instead of - long long. - * lib/kernel32.c (GetCurrentFiber, GetFiberData): Watcom - does not need external *Fiber library functions. - -2002-07-20 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/winbase.h (GetEnvironmentStringsA): Remove duplicate - definition. - (Interlocked*): Wrap in #ifndef __INTERLOCKED_DECLARED to - avoid compile error when already defined. - -2002-07-20 Steven Edwards <Steven_Ed4153@yahoo.com> - - * include/winuser.h (WM_MENURBUTTONUP): Add define. - -2002-07-17 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commdlg.h: Define CDN_* notification message constants - as UINT. - -2002-07-17 Mattia Barbon <mbarbon@users.sourceforge.net> - - * include/commctrl.h: Define notification message constants for - NMHDR.code as UINT. - -2002-07-17 Bart Oldeman <bart.oldeman@btinternet.com> - - * include/ddeml.h (MH_*) Add defines. - (MONHSZSTRUCT): Add structure and typedefs. - (MONLINKSTRUCT): Ditto. - (MONCONVSTRUCT): Ditto. - (MONCBSTRUCT): Ditto. - (MONERRSTRUCT): Ditto. - (MONMSGSTRUCT): Ditto. - * include/windef.h: Don't define __cdecl or _cdecl for - __WATCOM__. - Don't define _export or __export for __WATCOM__. - * include/windows.h (imm.h): #include. - * include/winnt.h (LPEXCEPTION_RECORD): Add typedef. - -2002-07-17 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wtypes.h: Remove duplicate #includes of rpc.h and - rpcndr.h. - -2002-07-05 Luke Dunstan <infidel@users.sourceforge.net> - - * include/winbase.h (OpenThread): Add prototype. - * lib/kernel32.def (OpenThread): Add symbol. - -2002-07-04 Luke Dunstan <infidel@users.sourceforge.net> - - * include/wtypes.h (HMETAFILEPICT): Add typedef. - -2002-07-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/rpc.h: Conditionally include <windows.h> before - header guard. - * include/wtypes.h: Include <rpc.h> and <rpcndr.h> before - header guard. - -2002-07-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (WC_*): Remove some duplicate defines. - -2002-07-02 Ken Fitlike <kenfitlike@hotmail.com> - - * include/commctrl.h (WC_IPADDRESS[AW]): Add defines and - UNICODE mappings. - (IPM*): Add defines. - (IPN_*): Add defines. - (NMIPADDRESS): Add structure and typedefs. - (MAKEIPADDRESS): Add macro. - (MAKEIPRANGE): Add macro. - (FIRST_IPADDRESS): Add macro. - (SECOND_IPADDRESS): Add macro. - (THIRD_IPADDRESS): Add macro. - (FOURTH_IPADDRESS): Add macro. - -2002-06-25 Conrad Scott <conrad.scott@dsl.pipex.com> - - * include/winbase.h (FILE_FLAG_FIRST_PIPE_INSTANCE): Add constant. - -2002-06-26 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/winbase.h (WINBASEAPI): Don't define if prior - definition. - - * include/winioctl.h (PARTITION_FAT32, PARTITION_FAT32_XINT13, - PARTITION_XINT13, PARTITION_XINT13_EXTENDED, PARTITION_LDM, - PARTITION_UNIX): Add defines. - (PDRIVE_LAYOUT_INFORMATION): Add typedef. - (IsRecognizedPartition): Also check for PARTITION_FAT32, - PARTITION_FAT32_XINT13 and PARTITION_XINT13. - (IsContainerPartition): Add macro. - -2002-06-25 Ken Fitlike <kenfitlike@hotmail.com> - - * include/commctrl.h: (CBEIF_*): Add defines. - (CBEN_*): Add defines and UNICODE mappings - (WC_COMBOBOXEX[AW]): Add defines and UNICODE mappings. - (CBEMAXSTRLEN): Add define. - (COMBOBOXEXITEM[AW]): Add structures and typedefs. - (NMCOMBOBOXEX[AW]): Add structures and typedefs. - (NMCBEDRAGBEGIN[AW]): Add structure and typedefs. - (NMCBEENDEDIT[AW]): Add structure and typedefs. - -2002-06-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/objidl.h (struct tagPROPVARIANT): Kill obsolete - union member _VARIANT_BOOL bool. - -2002-06-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winioctl.h (FILE_SPECIAL_ACCESS): Add define. - -2002-06-24 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/winnt.h (PCCHAR, FCHAR, FSHORT, FLONG, - PLUID_AND_ATTRIBUTES,PSECURITY_IMPERSONATION_LEVEL, - PSID_AND_ATTRIBUTES, PTOKEN_TYPE, PTOKEN_STATISTICS): - Add typedefs. - (CCHAR): Correct typedef. - (PROCESS_SET_SESSIONID, SECURITY_*,SECTION_MAP_EXECUTE): - Add defines. - -2002-06-24 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * README.w32api: Correct spelling error. - -2002-06-19 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/winuser.h (FLASHW_*,INPUT_MOUSE,INPUT_KEYBOARD, - INPUT_HARDWARE): Add defines. - (HDEVNOTIFY): Add typedef. - (FLASHWINFO,tagMOUSEMOVEPOINT,tagMOUSEINPUT,tagKEYBDINPUT, - tagHARDWAREINPUT,tagINPUT,tagGUITHREADINFO): Define structs and - typedefs. - (CreateDesktop[AW],CreateMDIWindow[AW],GetClassInfo[AW], - GetClassInfoEx[AW],GetKeyboardLayoutList, - MessageBoxIndirect[AW],MsgWaitForMultipleObjects, - MsgWaitForMultipleObjectsEx, RegisterClass[AW], - RegisterClassEx[AW]): Correct prototypes. - -2002-06-19 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/ddeml.h (DdeCreateStringHandle{AW]:Correct - prototypes. - * include/winsvc.h (StartServiceW): Correct prototype. - * include/winbase.h (BackupRead,BackupSeek,BackupWrite, - FileTimeToLocalFileTime, GetAce,GetPrivateProfileStruct[AW], - GetTickCount,InterlockedExchangeAdd, - WritePrivateProfileStruct[AW]: Correct prototypes. - (GetEnvironmentStrings): Correct mapping to - GetEnvironmentStringsA. - * include/winver.h (VerQueryValueA,VerQueryValueW): - Correct prototypes. - * include/wincon.h (CreateConsoleScreenBuffer): Correct - prototype. - * include/winreg.h (RegQueryMultipleValues[AW], - RegQueryValueEx[AW]):Correct prototypes. - * include/wingdi.h (PXFORM, PLOGBRUSH, PLOGPEN, PPOLYTEXTA, - PPOLYTEXTW): Add typedefs. - (_DESIGNVECTOR,COLOR16, _TRIVERTEX, _DISPLAY_DEVICE): Add - structures and typedefs. - (MM_MAX_NUMAXES): Add define. - (EnumFontsW,GetEnhMetaFilePixelFormat, - wglGetLayerPaletteEntries): Correct prototypes. - * include/winerror.h (RPC_X_INVALID_PIPE_OBJECT, - RPC_X_WRONG_PIPE_ORDER,RPC_X_WRONG_PIPE_VERSION, - RPC_S_SEND_INCOMPLETE): Add defines. - -2002-06-17 Casper S. Hornstrup <chorns@users.sourceforge.net> - - * include/windef.h (_fastcall, __fastcall, FASTCALL): - Add defines. - -2002-06-16 Egor Duda <deo@logos-m.ru> - - * include/ntdll.h: New file. - * lib/ntdll.def: Add NtShutdownSystem. - -2002-06-16 Steven Edwards <Steven_Ed4153@yahoo.com> - - * lib/dinput.def (DirectInputCreateEx): Add stub. - * lib/ntdll.def: New file. - -2002-06-14 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Change to version 2.0 to reflect the change - in the license. - * README: Renamed. - * README.w32api: Renamed from README. Modified license to remove - the restriction of notifying the author based on the fact that the - author is unreachable at the notified address. - * Makefile.in (VERSION): Change to 2.0. - -2002-06-14 Earnie Boyd <earnie@users.sf.net> - - * include/wingdi.h (GetEnhMetaFileBits): Correct typo. - * Makefile.in (bindist): Correct the MinGW distribution. - -2002-06-13 Earnie Boyd <earnie@users.sf.net> - - * include/winuser.h (MOUSEHOOKSTRUCT): Define structure. - * include/wingdi.h (GetEnhMetaFileBits): Define prototype. - -2002-06-13 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/test.c: #include comcat.h. - -2002-06-13 John K. Hohm <jhohm@acm.org> - - * include/comcat.h: New file. - -2002-06-09 Gunnar Degnbol <gdegnbol@users.sourceforge.net> - - * include/richedit.h (EM_*, TM_*, GT_*): Add new defines. - (GETTEXTEX): Add structure definition. - -2002-06-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windows.h (ole2.h): #include if !__OBJC__ and - __GNUC__ >=3 and !WIN32_LEAN_AND_MEAN. - -2002-06-07 Gunnar Degnbol <gdegnbol@users.sourceforge.net> - - * include/mapi.h: Change LPTSTR to LPSTR throughout. - -2002-06-05 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (PACE_HEADER, PACCESS_ALLOWED_ACE, - PACCESS_DENIED_ACE): Add typedefs. - -2002-06-03 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/thunk32.def (LIBRARY): Change to KERNEL32.dll. - -2002-06-03 Steven Edwards <Steven_Ed4153@yahoo.com> - - * lib/kernel32.def (ConvertToGlobalHandle): Add stub. - -2002-06-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windef.h: Fix typo in last change. - -2002-06-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windef.h: Add no-op __try, __except, __finally - defines from ... - * include/excpt.h: Remove file. - * include/windows.h: Don't include excpt.h. - -2002-05-30 Christopher January <chris@atomice.net> - - * include/ntdef.h (ANSI_STRING, PANSI_STRING, OEM_STRING, POEM_STRING): - Add missing typedefs. - -2002-05-28 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment version to 1.5 - * Makefile.in: Ditto. - - -2002-05-27 René Møller Fonseca <fonseca@users.sourceforge.net> - - * include/winreg.h: (RegConnectRegistry[AW]): Replace - LP[W]STR with LPC[W]STR. - (REG_QWORD, REG_QWORD_LITTLE_ENDIAN): Add defines. - Clean up whitespace. - -2002-05-27 Rick Rankin <rick_rankin@yahoo.com> - - * include/winnls.h: Add #define for LOCALE_RETURN_NUMBER. - -2002-05-21 Earnie Boyd <earnie@users.sf.net> - - * Makefile.in: Increment VERSION to 1.4. - (conf_prefix): New variable. - (bindist): Modify target to use $(conf_prefix). - -2002-05-20 Philip Aston <philipa@mail.com> - - * include/pbt.h (PBT_APMRESUMESUSPEND): Correct value is 7. - -2002-05-20 René Møller Fonseca <fonseca@users.sourceforge.net> - - * include/lmaccess.h: (NetAccess*, NetGroup*, - NetLocalGroup*, NetUser*, NetGet*, INetLogonControl[2], - NetQueryDisplayInfotmationIndex): Replace LPWSTR with LPCWSTR. - -2002-05-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (ImageList_DragShowNolock): Remove - conflicting redeclaration. - -2002-05-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windows.h: Move ANONYMOUS_UNION, _ANONYMOUS_STRUCT, - STRICT and related defines to ... - * include/windef.h: Here. - -2002-05-03 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winsock2.h (int32): Remove typedef. - (SERVICETYPE): Add typedef. - (struct _flowspec):Revise struct definition, Comment - on types used for members. - -2002-05-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (EVENT_*, SEMAPHORE_*,MUTEX_*): Remove - more defines added in earlier change. - * lib/Makefile.in (TEST_OPTIONS): Add -Wsystem-headers flag. - -2002-05-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (THREAD_PRIORITY_*): Remove defines - added in last change. - -2002-05-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (THREAD_*, EVENT_*, MUTANT_*, - SEMAPHORE_*, MUTEX_*, TIMER_*): Add new defines. - -2002-05-01 Manu B <contact.manu@wanadoo.fr> - - * include/commctrl.h (SNDMSG): Define and use throughout - in other macros instead of SendMessage. - * include/commdlg.h (SNDMSG): Ditto. - -2002-04-22 José Fonseca <jrfonseca@users.sf.net> - - * include/GL/gl.h: New file. - * include/GL/glext.h: Ditto. - * include/GL/glu.h: Ditto. - -2002-04-09 Earnie Boyd <earnie@users.sf.net> - - * include/w32api.h: Increment version. - * Makefile.in: Ditto. - -2002-04-09 Earnie Boyd <earnie@users.sf.net> - - * Makefile.in (bindist): Use * instead of . for file list for tar - command. - -2002-04-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wtypes.h (enum tagCLSCTX): Change formatting. - -2002-04-02 Pat Thoyts <patthoyts@users.sourceforge.net> - - * include/objidl.h (IRunningObjectTable.Register): Correct - prototype. - * include/wtypes.h (ROTFLAGS_REGISTRATIONKEEPSALIVE, - ROTFLAGS_ALLOWANYCLIENT): Add defines. - -2002-03-31 Victor Porton <porton@narod.ru> - - * include/shellapi.h (SHGFI_ATTR_SPECIFIED): Add define. - -2002-03-29 David Robinow <drobinow@yahoo.com> - - * include/wingdi.h (SetPixelFormat): Correct prototype. - -2002-03-29 Phil Krylov <likewolf@users.sourceforge.net> - - * include/richedit.h (EM_SHOWSCROLLBAR): Add define. - -2002-03-26 Phil Krylov <likewolf@users.sourceforge.net> - - * include/richedit.h (EM_GETSCROLLPOS, EM_SETSCROLLPSPOS): - Add defines. - -2002-03-14 Gunnar Degnbol <gdegnbol@users.sourceforge.net> - - * include/richedit.h (RICHEDIT_CLASS): UNICODE it. - * include/shlobj.h (IContextMenu2): Put methods in right order. - * include/basetyps.h (REFGUID, REFIID, REFCLSID): Check for - CINTERFACE before defining. - -2002-03-09 Danny Smith <dannysmith@users.sourceforge.net> - - * include/accctrl.h: Add #pragma GCC system_header - if __GNUC__ >= 3. - * include/aclapi.h: Same. - * include/basetsd.h: Same. - * include/basetyps.h: Same. - * include/cderr.h: Same. - * include/cguid.h: Same. - * include/commctrl.h: Same. - * include/commdlg.h: Same. - * include/cpl.h: Same. - * include/cplext.h: Same. - * include/custcntl.h: Same. - * include/dbt.h: Same. - * include/dde.h: Same. - * include/ddeml.h: Same. - * include/dlgs.h: Same. - * include/excpt.h: Same. - * include/httpext.h: Same. - * include/imagehlp.h: Same. - * include/imm.h: Same. - * include/initguid.h: Same. - * include/intshcut.h: Same. - * include/ipexport.h: Same. - * include/iphlpapi.h: Same. - * include/ipifcons.h: Same. - * include/iprtrmib.h: Same. - * include/iptypes.h: Same. - * include/isguids.h: Same. - * include/largeint.h: Same. - * include/lm.h: Same. - * include/lmaccess.h: Same. - * include/lmalert.h: Same. - * include/lmapibuf.h: Same. - * include/lmat.h: Same. - * include/lmaudit.h: Same. - * include/lmbrowsr.h: Same. - * include/lmchdev.h: Same. - * include/lmconfig.h: Same. - * include/lmcons.h: Same. - * include/lmerr.h: Same. - * include/lmerrlog.h: Same. - * include/lmmsg.h: Same. - * include/lmremutl.h: Same. - * include/lmrepl.h: Same. - * include/lmserver.h: Same. - * include/lmshare.h: Same. - * include/lmsname.h: Same. - * include/lmstats.h: Same. - * include/lmsvc.h: Same. - * include/lmuse.h: Same. - * include/lmuseflg.h: Same. - * include/lmwksta.h: Same. - * include/lzexpand.h: Same. - * include/mapi.h: Same. - * include/mciavi.h: Same. - * include/mcx.h: Same. - * include/mmsystem.h: Same. - * include/mswsock.h: Same. - * include/nb30.h: Same. - * include/nddeapi.h: Same. - * include/nspapi.h: Same. - * include/ntdef.h: Same. - * include/ntsecapi.h: Same. - * include/ntsecpkg.h: Same. - * include/oaidl.h: Same. - * include/objbase.h: Same. - * include/objfwd.h: Same. - * include/objidl.h: Same. - * include/odbcinst.h: Same. - * include/ole.h: Same. - * include/ole2.h: Same. - * include/ole2ver.h: Same. - * include/oleauto.h: Same. - * include/olectl.h: Same. - * include/olectlid.h: Same. - * include/oledlg.h: Same. - * include/oleidl.h: Same. - * include/pbt.h: Same. - * include/prsht.h: Same. - * include/psapi.h: Same. - * include/rapi.h: Same. - * include/ras.h: Same. - * include/raserror.h: Same. - * include/rassapi.h: Same. - * include/regstr.h: Same. - * include/richedit.h: Same. - * include/richole.h: Same. - * include/rpc.h: Same. - * include/rpcdce.h: Same. - * include/rpcdce2.h: Same. - * include/rpcdcep.h: Same. - * include/rpcndr.h: Same. - * include/rpcnsi.h: Same. - * include/rpcnsip.h: Same. - * include/rpcnterr.h: Same. - * include/rpcproxy.h: Same. - * include/schannel.h: Same. - * include/schnlsp.h: Same. - * include/scrnsave.h: Same. - * include/security.h: Same. - * include/setupapi.h: Same. - * include/shellapi.h: Same. - * include/shlguid.h: Same. - * include/shlobj.h: Same. - * include/sql.h: Same. - * include/sqlext.h: Same. - * include/sqltypes.h: Same. - * include/sqlucode.h: Same. - * include/sspi.h: Same. - * include/subauth.h: Same. - * include/tlhelp32.h: Same. - * include/unknwn.h: Same. - * include/userenv.h: Same. - * include/w32api.h: Same. - * include/winbase.h: Same. - * include/wincon.h: Same. - * include/wincrypt.h: Same. - * include/windef.h: Same. - * include/windows.h: Same. - * include/windowsx.h: Same. - * include/winerror.h: Same - * include/wingdi.h: Same. - * include/wininet.h: Same. - * include/winioctl.h: Same. - * include/winnetwk.h: Same. - * include/winnls.h: Same. - * include/winnt.h: Same. - * include/winperf.h: Same. - * include/winreg.h: Same. - * include/winresrc.h: Same. - * include/winsock.h: Same. - * include/winsock2.h: Same. - * include/winspool.h: Same. - * include/winsvc.h: Same. - * include/winuser.h: Same. - * include/winver.h: Same. - * include/ws2tcpip.h: Same. - * include/wsnetbs.h: Same. - * include/wtypes.h: Same. - * include/zmouse.h: Same. - * include/mapi.h: Change header guard name to _MAPI_H for - consistency. - -2002-03-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/accctrl.h (_ACCCTRL_H): Correct typo. - Remove unnecessary inclusion of <wtypes.h>. - * ChangeLog: Fix omission of name in recent entries. - -2002-03-08 Antony Blakey <antony.blakey@ihug.com.au> - - * include/initguid.h (DEFINE_GUID): Add GUID_EXT to define. - -2002-03-06 Danny Smith <dannysmith@users.sourceforge.net> - - * include/mswsock.h: Group winsock2 dependants - together and protect with #ifdef _WINSOCK2_H. - * lib/test.c: Only test ws2tcpip.h if winsock2.h - has been included. - -2002-03-05 Danny Smith <dannysmith@users.sourceforge.net> - - * include/mswsock.h (TP_*): Add new defines. - (TRANSMIT_PACKETS_ELEMENT): Define new structure. - (WSAMSG): Likewise. - (WSACMSGHDR): Likewise. - (DisconnectEx): Add new prototype. - (WSARecvMsg): Likewise. - (WSA_CMSG_*) Add empty macros, guarded by #if 0. - -2002-03-02 Danny Smith <dannysmith@users.sourceforge.net> - - * ChangeLog: Fix typo in last entry. - * include/winsock2.h (IPPROTO_*): Add IPv6 defines. - * include/ws2tcpip.h: (IP_*): Add new defines. - (INET_ADDRSTRLEN, INET6_ADDRSTRLEN): Add defines. - (NI_*): Add getnameinfo constants and bitmasks. - (AI_*): Add getaddrinfo flags. - (EAI_*): Add getaddrinfo error codes. - (ip_mreq_source): Add new structure. - (ip_msfilter): Add new structure. - (IP_MSFILTER_SIZE): Add new macro. - (in_pktinfo): Add new structure. - Add preliminary IPv6 support. - (in6_addr): Add new structure and some defines. - (sockaddr_in6): Add new structure. - (in6addr_any, in6addr_loopback): Declare extern structures. - (IN6ADDR_ANY_INIT,IN6ADDR_LOOPBACK_INIT): Add - initialization macros for above. - (IN6_ARE_ADDR_EQUAL): Define macro. - (IN6_IS_ADDR_*): Define address testing macros. - (socklen_t) Add new typedef. - (ipv6_mreq): Add new structure. - (in6_pktinfo): Same. - (addrinfo): Same. - (freeaddrinfo):Add new prototype. - (getaddrinfo): Same. - (gai_strerror[AW]): Same. - (getnameinfo): Same. - (sockaddr_in6_old): Add structure. - (sockaddr_gen): Add union definition. - (INTERFACE_INFO): Use sockaddr_gen as members. - (INTERFACE_INFO_OLD): Add comment on workaround for problems - with INTERFACE_INFO on NT4 prior to sp4. - -2002-02-28 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windows.h: Remove test for __W32API_MAJOR_VERSION - when selecting winsock interface. - * include/winsock2.h (SOCKET_ADDRESS_LIST): Add structure - and typedefs. Thanks to: 'Lorenzo' <conte0@infinito.it>. - Expand FIXME comment. - (WSACOMPLETIONTYPE): Add enum. - (WSACOMPLETION): Add structure and typedefs. - (WSANSPIoctl): Add function prototpe and callback typedef. - (SIO_NSP_NOTIFY_CHANGE): Add define. - (sockaddr_storage): Add structure and typedefs. - -2002-02-16 Andriy Palamarchuk <apa3a@yahoo.com> - - * include/winuser.h (OIC_*): Add resource constants. - -2002-02-14 Mattia Barbon <mbarbon@users.sourceforge.net> - - * include/ntsecpkg.h: New file. - * include/schannel.h: New file. - * include/schnlsp.h: New file. - * include/security.h: New file. - * include/sspi.h: New file. - * include/ntsecapi.h (KERB_WRAP_NO_ENCRYPT, - MICROSOFT_KERBEROS_NAME_[AW]): Add missing constants - * include/wincrypt.h (CALG_*, X509_ASN_ENCODING. - PKCS_7_ASN_ENCODING, CERT_*, USAGE_MATCH_TYPE_AND, - USAGE_MATCH_TYPE_OR, szOID_*): Add missing constants - (struct _CRYPTOAPI_BLOB): Add structure and typedefs. - (SSL_EXTRA_CERT_CHAIN_POLICY_PARA,HTTPSPolicyCallbackData, - CERT_CHAIN_POLICY_PARA,CERT_CHAIN_POLICY_STATUS, - CRYPT_ALGORITHM_IDENTIFIER, CRYPT_BIT_BLOB, - CERT_PUBLIC_KEY_INFO, CERT_EXTENSION, CERT_INFO, CERT_CONTEXT, - CTL_USAGE, CERT_ENHKEY_USAGE, CERT_USAGE_MATCH, - CERT_CHAIN_PARA, CERT_CHAIN_FIND_BY_ISSUER_PARA, - CERT_TRUST_STATUS, CRL_ENTRY, CRL_INFO, CRL_CONTEXT, - CERT_REVOCATION_CRL_INFO, CERT_REVOCATION_INFO, - CERT_CHAIN_ELEMENT, CRYPT_ATTRIBUTE, CTL_ENTRY, CTL_INFO, - CTL_CONTEXT, CERT_TRUST_LIST_INFO, CERT_SIMPLE_CHAIN, - CERT_CHAIN_CONTEXT): Add missing structures. - (CertCloseStore, CertGetCertificateChain, - CertVerifyCertificateChainPolicy, CertFreeCertificateChain, - CertNameToStr[AW], CertOpenSystemStore[AW], CertOpenStore, - CertFindCertificateInStore, CertFreeCertificateContext, - CertGetIssuerCertificateFromStore, - CertFindChainInStore): Add missing functions. - (CertNameToStr, CertOpenSystemStore, CERT_FIND_SUBJECT_STR, - CERT_FIND_ISSUER_STR): Add Unicode mappings. - * lib/crypt32.def: New file. - * lib/secur32.def: Add mising stubs. - * lib/test.c: Include new headers. - -2002-02-14 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windef.h (PROC,FARPROC,NEARPROC): Remove void - parameter. - -2002-01-30 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/test.c: Include mapi.h. - * include/commctrl.h (TBSTYLE_*): Add missing defines. - Thanks to: "Ron" <ron@debian.org> - -2002-01-30 John Fattaruso <fattaruso@ieee.org> - - * include/mapi.h: New file. - * lib/mapi.def: Add missing function stubs. - -2002-01-28 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (GetWindowLongPtr[AW], - SetWindowLongPtr[AW]): Add prototypes for _WIN64. - -2002-01-28 Mattia Barbon <mbarbon@users.sourceforge.net> - - * include/winuser.h (GWLP_*,DWLP_*): Add missing constants. - (GetWindowLongPtr[AW], SetWindowLongPtr[AW]): Map them to - {Get Set}WindowLong[AW], as in Win32 they are equivalent. - (GetWindowLongPtr, SetWindowLongPtr): Add Unicode mappings. - -2002-01-28 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/test.c: Include wsnetbs.h. - -2002-01-28 Kai Henningsen <kai-henningsen@users.sourceforge.net> - - * include/wsnetbs.h: New file. - -2002-01-25 Earnie Boyd <earnie@users.sf.net> - - * include/winnt.h: Remove merge conflict. - -2002-01-25 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (_TCHAR): Add typedefs. - -2002-01-25 Tim Hughes <tjh@delcam.com> - - * include/wininet.h (SECURITY_FLAG_IGNORE_*): Add missing - defines. - -2002-01-25 Andriy Palamarchuk <apa3a@yahoo.com> - - * include/winsuser.h (ATF_AVAILABLE, SERKF_ACTIVE): - Add defines. - (LPACCESSTIMEOUT): Add typedef. - -2002-01-24 Phillip Susi <psusi@cfl.rr.com> - - * include/commctrl.h: Add missing HDM_*,HDN_*,LVSICF_* defines. - -2002-01-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (HDITEM[AW]): Rename _HD_ITEM[AW] to - _HDITEM[AW], with parallel changes to typedefs. Use defines for - backward compatability with old names. Update UNICODE mappings. - (HDLAYOUT): Remove struct _HD_LAYOUT_XP. Use new typedefs - for struct _HD_LAYOUT and add defines for backward - compatability with old names. - (NMLISTVIEW): Rename _NM_LISTVIEW to tagNMLISTVIEW, with - parallel chages to typedefs. Add defines for backward - compatability with old names. - (TCHITTESTINFO, IMAGELISTDRAWPARAMS): Fix _WIN32_IE guard. - -2002-01-21 Robert Collins <rbtcollins@hotmail.com> - - * include/winnt.h: Add missing MEM_ defines, and convert existing to - hex for readability. - -2002-01-17 Marcus Geelnard <marcus.geelnard@home.se> - - * include/winsuser.h (tagKBDLLHOOKSTRUCT): Define struct - and typedefs. - (SPI_SETSCREENSAVERRUNNING): Add define. - (LLKHF_ALTDOWN): Add define. - * include/wingdi.h (PFD_GENERIC_ACCELERATED, - PFD_DEPTH_DONTCARE): Add defines. - -2002-01-17 Danny Smith <dannysmith@users.sourceforge.net> - - * include/objbase.h (CoGetObject): Add prototype. - -2002-01-14 Timothy J. Wood <tjw@omnigroup.com> - - * include/winuser.h (ENUM_CURRENT_SETTINGS, - ENUM_REGISTRY_SETTINGS): Add defines. - -2002-01-14 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (FILE_ATTRIBUTE_ENCRYPTED): Correct constant. - (FILE_ATTRIBUTE_DEVICE): Add define. - -2002-01-14 Corinna Vinschen <vinschen@redhat.com> - - * include/winnt.h: Add INVALID_FILE_ATTRIBUTES. - -2002-01-11 Danny Smith <dannysmith@users.sourceforge.net> - - * ChangeLog: correct date in last entry. - -2002-01-11 Timothy J. Wood <tjw@omnigroup.com> - - * include/winuser.h (MONITORENUMPROC): Add typedef. - (EnumDisplayMonitors): Add prototype. - * lib/user32.def (EnumDisplayMonitors): Add stub. - -2002-01-11 Ralf Habacker <Ralf.Habacker@freenet.de> - - * include/ntsecapi.h: Fixed missing void parameter type in some - prototypes. - * include/objbase.h: Ditto. - * include/rapi.h: Ditto. - * include/rpc.h: Ditto. - * include/rpcdce.h: Ditto. - * include/rpcdcep.h: Ditto. - * include/rpcndr.h: Ditto. - * include/rpcnsip.h: Ditto. - * include/rpcproxy.h: Ditto. - * include/windef.h: Ditto. - -2002-01-07 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/vfw32.def (LIBRARY): Change to MSVFW32.DLL. - -2002-01-04 TAMURA Kent <tkent@users.sourceforge.net> - - * include/wingdi.h (BI_JPEG, BI_PNG, GGO_BEZIER,GGO_UNHINTED, - LAYOUT_RTL, LAYOUT_BITMAPORIENTATIONPRESERVED): Add defines. - * include/winuser.h (HWND_MESSAGE, WS_EX_COMPOSITED, - WS_EX_LAYERED, WS_EX_LAYOUTRTL, WS_EX_NOACTIVATE, - WS_EX_NOINHERITLAYOUT): Add defines. - * include/winnt.h (PF_RDTSC_INSTRUCTION_AVAILABLE, - PF_PAE_ENABLED, MEM_PHYSICAL, MEM_RESET, MEM_TOP_DOWN, - MEM_WRITE_WATCH): Add defines. - - -2002-01-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (InitializeCriticalSectionAndSpinCount): - Add prototype. - (SetCriticalSectionSpinCount): Likewise. - -2001-12-30 Guido Serassio <serassio@libero.it> - - * include/winsvc.h: Add EnumServiceStatusEx(), - QueryServiceStatusEx() - & RegisterServiceCtrlHandlerEx() - -2001-12-21 Robert Collins <rbtcollins@hotmail.com> - - * include/wingdi.h: Add GetRandomRgn and SYSRGN. - -2001-12-20 Christopher Faylor <cgf@redhat.com> - - * lib/Makefile.in: Revert inst_installdir definitions to working - versions. - -2001-12-17 Guido Serassio <serassio@libero.it> - - * include/winsvc.h: Add ChangeServiceConfig2() & - QueryServiceConfig2() definition - -2001-12-17 Robert Collins <rbtcollins@hotmail.com> - - * include/commctrl.h: New typedefs for HDLAYOUT and LPHDLAYOUT based - on MSDN documentation for XP. - -2001-12-15 Andrew Begel <abegel@eecs.berkeley.edu> - - *include/winbase.h (CreateHardLink): Correct typo in UNICODE - mappings. - -2001-12-11 Phillip Susi <psusi@cfl.rr.com> - - * include/commctrl.h (ACS_*): Add new defines. - (PGS_*): Ditto. - (CBES_*): Ditto. - (TBSTYLE_*): Ditto. - (TB_*): Ditto. - (TTS_*): Ditto. - (UDS_HOTTRACK): Add define. - (SBT_TOOLTIPS): Ditto. - (TBS_*): Add new defines. - (HDS_*): Ditto. - (LVS_EX_*) Ditto. - (LVKF_*): Ditto. - (TCM_GETEXTENDEDSTYLE): Add define. - (TVS_NOHSCROLL): Ditto. - (TVIF_INTEGRAL): Ditto. - (DTS_SHORTDATECENTURYFORMAT): Ditto. - (TCS_*): Add new defines. - (CBEM_*): Add defines. - (tagNMITEMACTIVATE): Add structure definition and typedefs. - (tagTVITEMEX[AW]: Ditto. - (tagTVINSERTSTRUCT[AW]: Add union member. - * include/winbase.h (VirtualAllocEx): Add prototype. - * include/winuser.h (SS_*): Add new defines. - -2001-12-07 Earnie Boyd <earnie@users.sf.net> - - * Makefile.in: Increment VERSION. - * include/w32api.h: Ditto. - -2001-12-07 Earnie Boyd <earnie@users.sf.net> - - * Makefile.in: Increment VERSION. - * include/w32api.h: Ditto. - -2001-12-07 Danny Smith <dannysmith@users.sourceforge.net> - - * include/setupi.h (SetupDiCreateDeviceInterfaceRegKey[AW], - SetupDiCreateDevRegKey[AW],SetupDiDeleteDeviceInterfaceRegKey, - SetupDiDeleteDevRegKey,SetupDiOpenClassRegKey, - SetupDiOpenClassRegKeyEx[AW],SetupDiOpenDeviceInterfaceRegKey, - SetupDiOpenDevRegKey): Correct function names. - -2001-12-04 Earnie Boyd <earnie@users.sf.net> - - * include/winuser.h (IDC_STATIC): Don't define. - -2001-12-04 Danny Smith <dannysmith@users.sourceforge.net> - - Cleanup merge between SourceForge and winsup CVS. - * include/winbase.h (OSVERSIONINFO[AW], OSVERSIONINFOEX[AW]: Remove - definitions. - * include/winnt.h (VER_NT*): Remove duplicate defines. - (VER_SUITE*): Group with VER_PLATFORM*, VER_NT* defines. - -2001-12-03 Earnie Boyd <earnie@users.sf.net> - - * include/accctrl.h: Change \r\n to \n. - -2001-11-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/ipexport.h (IP_UNIDIRECTIONAL_ADAPTER_ADDRESS): - Add structure definition. - * include/iptypes.h (IP_PER_ADAPTER_INFO): Ditto. - * include/iphlpapi.h (AddIPAddress,CreateProxyArpEntry, - DeleteIPAddress,DeleteProxyArpEntry,EnableRouter, - FlushIpNetTable,GetAdapterIndex,GetPerAdapterInfo, - GetUniDirectionalAdapterInfo,SendARP,SetAdapterIpAddress, - UnenableRouter) Declare functions. - * lib/iphlpapi.def: Add function names to import lib. - -2001-11-24 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (PACCESS_MASK): Add typedef. - * include/aclapi.h: New file. - * include/acctrl.h: New file. - * lib/advapi32.def: Add missing symbols. - * lib/test.c: Add #include <aclapi.h>. - -2001-11-23 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (OSVERSIONINFO[AW],VER_PLATFORM_WIN32s, - VER_PLATFORM_WIN32_WINDOWS,VER_PLATFORM_WIN32_NT): Move from - here ... - * include/winnt.h: ... to here. - * include/winbase.h (VerifyVersionInfo[AW]): Add declaration. - * include/winnt.h (OSVERSIONINFOEX[AW]): Add structure definitions - and typedefs. - (VER_NT_WORKSTATION,VER_NT_DOMAIN_CONTROLLER,VER_NT_SERVER): - Add defines. - -2001-11-19 Pierre Muller <muller@ics.u-strasbg.fr> - - * w32api/include/winnt.h: prepare SSE register support. - (CONTEXT_EXTENDED_REGISTERS): Add new define. - (MAXIMUM_SUPPORTED_EXTENSION): New define. - (struct CONTEXT): ExtendedRegisters field added. - -2001-11-16 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (tagALTTABINFO, tagCOMBOBOXINFO, - tagCURSORINFO, tagMENUBARINFO, tagMENUINFO, tagMONITORINFO - tagSCROLLBARINFO, tagTITLEBARINFO. tagWINDOWINFO, - tagLASTINPUTINFO ): Define new structures. - (EndMenu, GetAltTabInfo[AW],GetComboBoxInfo,GetCursorInfo, - GetLastInputInfo, GetListBoxInfo, GetMenuBarInfo, - GetMonitorInfo[AW], GetScrollBarInfo, GetTitleBarInfo, - GetWindowInfo, GetWindowModuleFileName[AW],GetMenuInfo - SetMenuInfo): Add new prototypes. - * lib/user32.def: Add import stubs for above functions. - - * include/winuser.h (IDC_STATIC): Protect against prior - definition. - -2001-11-12 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h (OSVERSIONINFOEX): Add definition. - * include/winnt.h: Add VER_NT_* and VER_SUITE_* defines. - -2001-11-10 Robert Collins <rbtcollins@hotmail.com> - - * include/winnt.h: Add Danny Smith's text comment about gcc compiler - warnings with _AUTHORITY #defines. - -2001-11-09 Robert Collins <rbtcollins@hotmail.com> - - * include/winnt.h (GetCurrentFiber): Create a prototype before the - implementation. - (GetFiberData): Ditto. - -2001-11-09 Robert Collins <rbtcollins@hotmail.com> - - * include/winnt.h: Backout last change. - -2001-11-08 Robert Collins <rbtcollins@hotmail.com> - - * include/winnt.h: Define *_SID_AUTHORITY appropriately, - GetCurrentFiber: Create a prototype before the implementation. - GetFiberData: Ditto. - -2001-11-06 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (IDC_STATIC): Add define. - Thanks to: Benoit Laniel. - -2001-11-05 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commdlg.h: Include <unknwn.h> rather than local - definition of LPUKNOWN. - * include/rpcproxy.h: Don't include if ndef CINTERFACE. - Emit warning. - -2001-11-05 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/windef.h (DECLSPEC_NORTEURN): Add an empty version - for Watcom. - (DECLARE_STDCALL_P): Use it to add __stdcall decoration for - functions of the form 'type * function(...)' in a way compatible - with both Watcom and GCC. - * include/rpcdcep.h (I_RpcAllocate): Use DECLARE_STDCALL_P. - * include/rpcproxy.h (CInterfaceProxyVtbl): Do not declare - zero-sized arrays for Watcom. Mark as __extension for __GNUC__. - * include/windows.h: Watcom can use anonymous structs/unions. - * include/winnt.h: Watcom can use 64 bit ints. - (GetCurrentFiber): Add another inline definition using - Watcom inline assembly syntax. - (GetFiberData): Likewise. - * include/winsock.h (inet_ntoa): Use DECLARE_STDCALL_P. - (gethostbyname): Likewise. - (gethostbyaddr}: Likewise. - (getservbyport}: Likewise. - (getservbyname}: Likewise. - (getprotobynumber}: Likewise. - (getprotobyname}: Likewise. - * include/winsock2.h (inet_ntoa): Use DECLARE_STDCALL_P. - (gethostbyname}: Likewise. - (gethostbyaddr}: Likewise. - (getservbyport}: Likewise. - (getservbyname}: Likewise. - (getprotobynumber}: Likewise. - (getprotobyname}: Likewise. - * lib/diinut.c: Correction for Watcom. - * lib/kernel32.c (GetCurrentFiber): Add another definition - using Watcom inline assembly syntax. - (GetFiberData): Likewise. - * lib/scrnsave.c (WinMain): Add break after default: - clause. - -2001-11-04 "stefan" <stefan@lkcc.org> - - * include/winnt.h (GetCurrentFiber): Add prototype. - (GetFiberData): Likewise. - -2001-11-04 Christopher Faylor <cgf@redhat.com> - - * lib/Makefile.in: Add .NOTPARALLEL target since dlltool cannot run in - parallel invocations. - -2001-11-03 Christopher Faylor <cgf@redhat.com> - - * lib/scrnsave.c (WinMain): Trivial change to avoid a compiler warning. - -2001-11-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/basetyps.h (DECLARE_INTERFACE): Don't add - __attribute__((com_interface)) for __GNUC__ >= 3. - -2001-11-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commdlg.h (PRINTPAGERANGE): Add structure - definition. - (PRINTDLGEX[AW]): Likewise. - (PrintDlgEx[AW]): Add function declaration. - * lib/comdlg32.def (PrintDlgEx[AW]): Add function stubs. - * ChangeLog: Fix typo in last entry. - -2001-11-01 TAMURA Kent <tkent@users.sourceforge.net> - - * include/objbase.h (CoGetClassObject): Change third parameter - to COSERVERINFO*. - -2001-10-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (MOUSEEVENTF_WHEEL): Define. - Thanks to: Kim Saunders. - * include/oleauto.h: Define VARIANT* flags for VariantChangeType. - Thanks to: Pat Thoyts. - * include/winnt.h: Change C++ style comment to C style. - * include/shlobj.h: Ditto. - * include/objbase.h (enum tagCOINIT): Remove comma at end of - list. - * include/oledlg.h (enum tagOLEUIPASTEFLAG): Ditto. - * include/oleidl.h (enum tagDROPEFFECT): Mark as __extension__ - (enum not limited to range of int). - * include/oaidl.h (struct tagVARIANT): Mark as __extension__ - (struct with no named members), ifndef NONAMELESSUNION. - -2001-10-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (CREATESTRUCT): UNICODE it. - (CBT_CREATEWND): Likewise. - -2001-10-20 Corinna Vinschen <corinna@vinschen.de> - - * include/winnetwk.h (WNetGetResourceInformationA): Add declaration. - (WNetGetResourceInformationW): Ditto. - (WNetGetResourceInformation): Add define. - -2001-10-12 Pedro A Aranda <paaguti@hotmail.com> - - * include/winuser.h (POINTSTOPOINT): Use explicit casts - before extracting words. - -2001-10-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h: Add PF_* defines. - Thanks to: "Wizord" <wizord@argoslabs.com> - -2001-09-18 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (_[U]LARGE_INTEGER): Mark nameless structure - field as _ANONYMOUS_STRUCT. - * include/setupapi.h (SP_DEVINSTALL_PARAMS): Add missing typedef - for UNICODE. - * include/ipexport.h (icmp_echo_reply): Remove extra ';'. - * lib/makefile.in: Add -pedantic switch to TEST_OPTIONS for header - test. - -2001-09-17 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/commctrl.h: Add some ListView constants. - -2001-09-17 Earnie Boyd <earnie@sf.net> - - * lib/Makefile.in (inst_includedir): Add FIXME and remove the usr/ - portion of the directory from the install. - (inst_libdir): Ditto. - * Makefile.in (VERSION): Increment. - * include/w32api.h: Increment version. - -2001-09-13 Earnie Boyd <earnie@SF.net> - - * lib/Makefile.in (inst_includedir): Change to always use w32api - subdirectory for target == cygwin. - (inst_libdir): Ditto. - -2001-09-13 Earnie Boyd <earnie@SF.net> - - * lib/Makefile.in (config_prefix): New variable. - (inst_includedir): Manipulate special value only if target == cygwin - and build == target and prefix != config_prefix. - (inst_libdir): Ditto. - -2001-09-12 Earnie Boyd <earnie@SF.net> - - * Makefile.in (TARFLAGS): New variable. - (TARFILEEXT): Ditto. - -2001-09-12 Earnie Boyd <earnie@SF.net> - - * Makefile.in: Increment version. - * include/w32api.h: Ditto. - * lib/Makefile.in: Add usr/ to install directory special for cygwin. - -2001-09-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (_[U]LARGE_INTEGER): Protect nameless struct with - !defined(NONAMELESSUNION), rather than defined(_ANONYMOUS_STRUCT). - (_REPARSE_DATA_BUFFER): Name union field DUMMYUNIONNAME. - -2001-09-05 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wininet.h (InternetAutodial): Add prototype. - (InternetAutodialHangup): Ditto. - (InternetDial): Ditto. - (InternetGetConnectedState): Ditto. - (InternetGoOnline): Ditto. - (InternetHangUp): Ditto. - (InternetSetDialState): Ditto. - Add associated INTERNET_* auto dial flags. - Guard typedefs and prototypes with #ifndef RC_INVOKED. - -2001-09-04 Earnie Boyd <earnie@SF.Net> - - * lib/Makefile.in: Move the setting of variable libdir to after the - setting of exec_prefix since the value of libdir is dependant on it. - -Tue Sep 4 14:15:59 2001 Christopher Faylor <cgf@cygnus.com> - - * include/winbase.h: Add missing closing parentheses to - InterlockedExchangePointer declaration. - -2001-09-01 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (CFSTR_* ): Add new defines. - Thanks to: "Ron" <ron@debian.org> . - Unicode them. - -Sat Sep 1 10:40:37 2001 Christopher Faylor <cgf@cygnus.com> - - * include/winnt.h: Use defined(_ANONYMOUS_STRUCT) to determine if - anonymous structs are available rather than just testing preprocessor - variable directly. - -Fri Aug 31 21:46:00 2001 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h: Change definition of `SYSTEM_LUID' to comply - with new `LARGE_INTEGER' definition. - -Thu Aug 30 09:35:51 2001 Christopher Faylor <cgf@cygnus.com> - - * include/winsock2.h: Remove "extra token" after #endif. - -2001-08-31 Earnie Boyd <earnie@SF.Net> - - * config.guess: Remove the \r from the end of line. - * config.sub: Ditto. - -2001-08-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h: Allow anonymous struct in [U]LARGE_INTEGER - if __cplusplus as well as if _ANONYMOUS_STRUCT. - -2001-08-29 Earnie Boyd <earnie@SF.Net> - - * config.guess: Add the MSYS system. - * config.sub: Ditto. - * include/winsock.h: Add the __INSIDE_MSYS__ protections. - * incldue/winsock2.h: Ditto. - -2001-08-29 Eric Kohl <ekohl@users.sourceforge.net> - - * include/winnt.h: Allow anonymous (Xxx.LowPart) or - non-anonymous (Xxx.u.LowPart) access to HighPart and - LowPart of a LARGE_INTEGER or ULARGE_INTEGER. - -2001-08-24 TAMURA Kent <tkent@users.sourceforge.net> - - * include/wingdi.h (HANGUL_CHARSET): Add define. - -2001-08-21 Earnie Boyd <earnie@SF.Net> - - * include/setupapi.h: Formatting. - -2001-08-21 Earnie Boyd <earnie@SF.Net> - - * include/shlobj.h: Remove \r from the line endings. - -2001-08-21 Danny Smith <dannysmith@users.sourceforge.net> - - * include/setupapi.h : New file. - * lib/setupapi.def:New file. - * lib/test.c: Include setupapi.h. - -2001-08-21 Danny Smith <dannysmith@users.sourceforge.net> - * include/winioctl.h (_DISK_PERFORMANCE): Correct typo. - -2001-08-21 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/richedit.h (ENLINK): Add structure definition. - (EM_AUTOURLDETECT, EN_LINK, ENM_LINK): Add defines. - -2001-08-21 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (CMIC_*): Remove duplicate defines. - (CMDSTR_*): Remove duplicates; UNICODE string constants. - (GCS_*): Make UNICODE. - (CSIDL_*): Add more defines. - * include/winioctl.h (_MEDIA_TYPE): Add pointer typedef. - (_DISK_GEOMETRY): Ditto. - (_DISK_PERFORMANCE): Ditto. - * include/winbase.h (HasOverlappedIoCompleted): Add macro. - -2001-08-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h: Move CHAR, SHORT and LONG typedefs outside - of block protected by #ifndef VOID. - (This reverts 1998-12-01 Anders Norlander change.) - * include/odbcinst.h: End file with newline. - * include/raserror.h: Ditto. - -2001-08-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winsock2.h (#include <wtypes.h): Don't. - (_BLOB): Define instead, if not already done. - (__BLOB_T_DEFINED: New define for guarding _BLOB. - * include/wtypes.h (_BLOB): Guard against prior definition. - -2001-08-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/oaidl.h (tagVARIANT): Mark anonymous structs and unions - as __extension__. - (tagTYPEDESC): Ditto. - (_wireBRECORD): Add structure definition. - (_wireSAFEARR_BRECORD): Ditto. - (_wireSAFEARR_HAVEIID): Ditto. - (_wireSAFEARRAY_UNION.u): Add fields SAFEARR_BRECORD RecordStr, - SAFEARR_HAVEIID HaveIidStr. - (tagVariant): Add fields _VARIANT_BOOL bool,*pbool. - (_wireVARIANT): Change field parray to type wirePSAFEARRAY, - pparray to wirePSAFEARRAY*. - (_wireVARIANT): Add field wireBRECORD brecVal. - (wireVARIANT): Change typedef to struct _wireVariant*. - (IRecordInfo): Add interface definition. - (LPRECORDINFO): Add typedef for IRecordInfo*. - (IID_IRecordInfo): Add forward decalaration. - -2001-08-15 Danny Smith <dannysmith@users.sourceforge.net> - - * include/lmcons.h: Guard CNLEN and UNCLEN against prior definition. - * include/nddeapi.h: Likewise. - -2001-08-10 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/test.c (Win32_Winsock): Replace with __USE_W32_SOCKETS. - Add more includes of w32api headers. - -2001-08-10 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winnt.h (GetCurrentFiber): Change __inline to __inline__. - Swap asm code with that of GetFiberData. - (GetFiberData): Ditto. - * lib/kernel32.c: New file, containing library versions of - GetCurrentFiber and GetFiberData. - * lib/makefile.in: Add kernel32.o as static object to libkernal32.a. - -2001-08-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (GET_WHEEL_DELTA_WPARAM): Add macro. - Thanks to: Harold Hunt <Harold@compasstechnologies.com>. - -2001-08-08 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/oleaut32.def: Regenerate. - -2001-08-04 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wtypes.h (DECIMAL_SETZERO): Correct typo. - -2001-08-02 Danny Smith <dannysmith@users.sourceforge.net> - - Apply Dmitry Bely <dbely@mail.ru> patch 437834 (with additions). - * include/oleidl.h (ISupportErrorInfo, ICreateInfo): Move from here - * include/oaidl.h: ... to here. - * include/oaidl.h ICreateErrorInfo): Add interface definition. - (IErrorInfo::GetGUID): Change arg to GUID. - (LPSUPPORTERRORINFO): Add typedef. - (IID_ISupportErrorInfo): Change forward decl. of type to IID. - -2001-08-02 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winsock2.h (WSAGET* and WSAMAKE*): Remove duplicate - defines. - -2001-07-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (TreeView_SetIndent): Correct typo. - -2001-07-30 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h (TBSTYPE_FLAT): Remove define. - Thanks to: Jason Craig <jacraig@softhome.net> - -2001-07-30 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/commctrl.h (TBBUTTONINFO[AW]): Add struct definitions, - and UNICODE mappings, if _WIN32_IE >= 0x400. - (TBIF_* and TB_SETBUTTONINFO): Add defines, if _WIN32_IE >= 0x400. - (CDIS_*,CDDS_*,CDRF_*) : Add defines. - (tagNMCUSTOMDRAWINFO): Add struct definition and typedefs. - (tagNMLVCUSTOMDRAW): Likewise. - (tagNMTVCUSTOMDRAW): Likewise. - (tagNMLVCACHEHINT): Likewise. - -2001-07-06 Danny Smith <dannysmith@users.sourceforge.net> - - * include/basetsd.h (#include <_mingw.h>): Remove. - (__int64): Define. - -2001-06-28 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (AC_SRC_OVER): Add define. - (struct _BLENDFUNCTION): Add. - -2001-06-28 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h: Add BIF_* defines. - -2001-06-27 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winerror.h (E_PENDING): Add error code define. - -2001-06-27 Danny Smith <dannysmith@users.sourceforge.net> - - * include/basetsd.h (#include <_mingw.h>): Add directive. - -2001-06-25 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winbase.h (InterlockedCompareExchange): Change args - and return value from PVOID to LONG. - (InterlockedExchange): Change first arg to LPLONG. - (InterlockedCompareExchangePointer): New macro. - (InterlockedExchangePointer): New macro. - -2001-06-19 Danny Smith <dannysmith@users.sourceforge.net> - - * lib/kernel32.def: Add LanguageGroup and UILanguage symbols. - Thanks to Kevin Chase <kevincha99@hotmail.com>. - -2001.06.11 TAMURA Kent <tkent@users.sourceforge.net> - - * objidl.h (IMalloc::ReAlloc()): Correct declaration. - (IMalloc::Free()): Ditto. - -2001-06-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/shlobj.h (REGSTR_PATH_EXPLORER): Unicode it. - (REGSTR_PATH_SPECIAL_FOLDERS): Ditto. - * include/regstr.h (REGSTR_PATH_EXPLORER): Add #ifndef guard. - -2001-06-11 Mattia Barbon <mbarbon@dsi.unive.it> - - * include/shlobj.h (struct _browseinfo): UNICODE it. - (SHBrowseForFolder): Ditto. - (SHGetPathFromIDList): Ditto. - -2001.06.11 Earnie Boyd <earnie@users.sourceforge.net> - - * include/basetsd.h: RC_INVOKED protection and realignment. - Thanks to: Colin Peters <colinpeters@users.sourceforge.net> - -2001.06.06 Earnie Boyd <earnie@users.sourceforge.net> - - * Makefile.in (bindist): Reassign value of exec_prefix on make command - line. - -Tue May 22 18:58:27 2001 Christopher Faylor <cgf@cygnus.com> - - * lib/mapi32.def: Add MAPISendMail. - -2001-05-22 Earnie Boyd <earnie@users.sourceforge.net> - - * include/w32api.h: Update version. - * Makefile.in: Ditto. - -Thu May 17 23:12:00 2001 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h: Define SE_GROUP_LOGON_ID as unsigned to avoid - compiler warnings. - -Thu May 17 17:12:00 2001 Corinna Vinschen <corinna@vinschen.de> - - * include/ntdef.h: Protect definition of OBJECT_ATTRIBUTES against - previous definition in include/ntsecapi.h. - * include/ntsecapi.h: Vice versa. - -Wed May 16 17:59:00 2001 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h: Add defines for group attributes. - Add define for SYSTEM_LUID. - Add missing types `PTOKEN_DEFAULT_DACL', `PTOKEN_OWNER' and - `PTOKEN_PRIMARY_GROUP'. - -Tue Apr 24 23:51:07 2001 Christopher Faylor <cgf@cygnus.com> - - * lib/Makefile.in: Install libraries in /usr/lib/w32api when building - for cygwin. - -Tue Apr 24 16:18:42 2001 Christopher Faylor <cgf@cygnus.com> - - * include/winsock2.h: Protect one *more* newlib defines when compiling - cygwin. - -Mon Apr 23 23:41:36 2001 Christopher Faylor <cgf@cygnus.com> - - * include/winsock2.h: Protect some more newlib defines when compiling - cygwin. - -Mon Apr 23 13:17:32 2001 Christopher Faylor <cgf@cygnus.com> - - * include/winsock.h: Protect some more newlib defines when compiling - cygwin. - -2001-04-17 Egor Duda <deo@logos-m.ru> - - * include/windows.h: Define _ANONYMOUS_STRUCT and _ANONYMOUS_UNION - as __extenstion__ when appropriate. - * include/mmsystem.h: Mark anonymous structs and unions as - __extension__ to prevent compiler warning when invoked with - -pedantic - * include/oaidl.h: Ditto. - * include/objidl.h: Ditto. - * include/olectl.h: Ditto. - * include/prsht.h: Ditto. - * include/shlobj.h: Ditto. - * include/winbase.h: Ditto. - * include/winnt.h: Ditto. - * include/wtypes.h: Ditto. - -2001-04-11 Danny Smith <dannysmith@users.sourceforge.net> - - * include/windows.h (#include <winsock.h>): Include <winsock2.h> - instead if (_WIN32_WINNT >= 0x0400)&&(__W32API_MAJOR_VERSION > 0). - -2001-04-11 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - - * include/winuser.h (WM_IME_*): Remove defines (now in imm.h). - -2001-04-11 John Fortin <fortinj@attglobal.net> - - * include/windef.h (*PBOOL): Unprotect from XFree86Server. - (*LPBOOL): Ditto. - -Sun Apr 8 20:48:01 2001 Christopher Faylor <cgf@cygnus.com> - - * include/winnt.h (GetCurrentFiber): Make "external __inline" or asm - code will be included in every module which includes this header. - (GetFiberData): Ditto. - -2001-04-08 Earnie Boyd <earnie@users.sourceforge.net> - - * include/winnt.h (GetCurrentFiber): Fix typo. - -2001-04-08 Earnie Boyd <earnie@users.sourceforge.net> - - * include/shellapi.h: (CommandLineToArgvW): Add WINAPI declaration. - * include/winbase.h: (GetFileAttributesExW): Fix typo. - * include/wingdi.h: (StartDocA): Change LPDOCINFOA to DOCINFOA*. - (StartDocB): Chage LNPDOCINFOB to DOCINFOB*. - Thanks To: Kent Tamura <tkent@users.sourceforge.net> - - * include/winnt.h: (GetFiberData): Add __inline assembler coding. - (GetCurrentFiber): Ditto. - Thanks to: Andy Younger <AndyY@redlemon.com> - - * include/windef.h: (HMONITOR_DECLARED): New definition to stop - DirectX 8 from complaining. - Thanks to: Sigbjørn Lund Olsen <mosikos@online.no> - -2001-04-08 Michael Soderstrom <ichaelsoderstro@hotmail.com> - - * include/commctrl.h Updated TreeView and ListView defines and macros. - -2001-04-08 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winuser.h (MB_SERVICE_NOTIFICATION): Correct value for NT4 - and above. - -2001-03-30 Earnie Boyd <earnie@users.sourceforge.net> - * include/winuser.h (VK_KANA): New definition. - Thanks to: "Harold Hunt" <huntharo@msu.edu> - -2001-03-29 Earnie Boyd <earnie@users.sourceforge.net - - * include/winuser.h (RT_CURSOR): Add protection for XFree86Server. - (RT_FONT): Ditto. - * include/basetsd.h (INT32): Ditto. - * include/windef.h (ATOM): Ditto. - (BOOL): Ditto. - (BYTE): Ditto. - * include/winbase.h (FreeResource): Ditto. - Thanks to: "Harold Hunt" <huntharo@msu.edu> - -2001-03-20 Danny Smith <dannysmith@users.sourceforge.net> - - * include/winsock.h (_SYS_TYPES_H macro guard for int types): Remove; - use only _BSDTYPES_DEFINED macro now defined in newlib sys/types.h. - (SYS_TYPES_H macro guard for fd_set): Replace with_SYS_TYPES_FD_SET - macro now defined in newlib sys/types.h. Emit warning if defined. - * include/winsock2.h: Ditto. - * include/windows.h (Win32_Winsock): Replace with new macros - __USE_W32_SOCKETS and warn of deprecation. - -2001-03-13 Earnie Boyd <earnie@users.sourceforge.net - - * include/wingdi.h: (DOCINFO) Ansi version defined incorrectly. - Thanks to: Mattia Barbon <mbarbon@dsi.unive.it> - -2001-03-12 Earnie Boyd <earnie@users.sourceforge.net - - * include/commctrl.h (TBSTYLE_FLAT): New definition. - (TB_GETBUTTONSIZE): Ditto. - (TCS_HOTTRACK): Ditto. - Thanks to: Chris Hansen <popeofpop@softhome.net> - -2001-03-01 Earnie Boyd <earnie@users.sourceforge.net - - * Makefile.in: (snapshot): Add target. - * lib/Makefile.in: (install-headers): Use installdir variable. - (installdir): Set value based on target-alias. - -2001-02-21 Earnie Boyd <earnie@users.sourceforge.net - - * include/w32api.h: (_W32API_VERSION): Remove. - (__W32API_VERSION): Add. - (__W32API_MAJOR_VERSION): Ditto. - (__W32API_MINOR_VERSION): Ditto. - -2001-02-21 Danny Smith <dannysmith@users.sourceforge.net> - - * include/wingdi.h (struct _DOCINFO[AW]): UNICODE it. - (StartDoc[AW]): Use UNICODE'd LPDOCINFO[AW] - * include/winuser.h (struct tagMOUSEKEYS): Define new structure. - * include/winerror.h (NTE_*): Add CryptoAPI error codes. - -2001-02-21 Danny Smith <dannysmith@users.sourceforge.net> - - * include/mswsock.h: New file. - * include/ws2tcpip.h: New file. - * include/winsock.h (IPPROTO_IGMP): New define. - (IPPROTO_GGP): Correct value. - (SO_* macros): Remove mswsock defines. - (TCP_BSDURGENT): Likewise. - (IP_* macros): Add comment warning of WinSock2 incompatibility - (WSARecvEx): Remove mswsock prototype. - (TransmitFile): Likewise. - (AcceptEx): Likewise. - (GetAcceptExSockaddrs): Likewise. - (struct _TRANSMIT_FILE_BUFFERS): Remove mswsock definition. - (#include <mswsock.h>): Add directive and explanatory comment - * include/winsock2.h (header guard): add guard for _WINSOCK_H - (_WINSOCK_H): Define to prevent later inclusion of winsock.h - (#include <winsock.h>): Replace directive with winsock.h file content - The following changes apply to the merged file: - (FD_SET): Keep winsock2.h definition, delete winsock.h definition - (SOMAXCONN): Likewise - (#include <nspapi.h>): Move - don't include until LPSOCKADDR defined - (IP_* macros): Delete WinSock1 definitions (WinSock2 definitions now - in ws2tcpip.h) - (struct ip_mreq): Delete (now defined in ws2tcpip.h for WinSock2) - (FD_*_BIT and FD_* defines): Place together and extend to - FD_MAX_EVENTS 10 - (AF* defines): Extend to AF_MAX 10 - (WSAIsBlocking): #if 0 out prototype (N/A in WinSock2) - (WSAUnhookBlockingHook): Likewise. - (WSASetBlockingHook): Likewise. - (WSACancelBlockingCall): Likewise. - (WSAEINPROGRESS): Comment as not raised in WinSock2. - (#include <mswsock.h>): Delete directive inherited from winsock.h - (WSA_QOS* defines): Add QualityOfService error codes. - (SIO_* defines): Add new macros - * include/ipexport.h (IP_STATUS flags): Add definitions. - (IP_FLAG_DF): Likewise. - (IP_OPT_* ): Likewise. - (struct ip_option_information): Likewise. - (struct icmp_echo_reply): Likewise. - -2001-02-21 Danny Smith <dannysmith@users.sourceforge.net> - - * include/commctrl.h: Revert TEXT change. - * include/lmalert.h: Ditto. - * include/lmcons.h: Ditto. - * include/lmsname.h: Ditto. - * include/lmsvc.h: Ditto. - * include/ntsecapi.h: Ditto. - * include/oledlg.h: Ditto. - * include/ras.h: Ditto. - * include/regstr.h: Ditto. - * include/richedit.h: Ditto. - * include/wininet.h: Ditto. - * include/winnt.h: Ditto. - -2001-02-15 Earnie Boyd <earnie@users.sourceforge.net> - - * include/commctrl.h: Use _TEXT() instead of TEXT() throughout. - * include/lmalert.h: Ditto. - * include/lmcons.h: Ditto. - * include/lmsname.h: Ditto. - * include/lmsvc.h: Ditto. - * include/ntsecapi.h: Ditto. - * include/oledlg.h: Ditto. - * include/ras.h: Ditto. - * include/regstr.h: Ditto. - * include/richedit.h: Ditto. - * include/wininet.h: Ditto. - * include/w32api.h: New File. - -Tue Feb 13 22:38:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/shlobj.h: Add missing SLR_* flags. - -2001-02-12: Earnie Boyd <earnie@users.sourceforge.net> - - * lib/Makefile.in: (host_alias): Add variable. - (host_build): Ditto: - (xinstall): Removed - (xinstall-libraries): Ditto. - (xinstall-headers): Ditto. - (xuninstall): Ditto. - (xuninstall-libraries): Ditto. - (xuninstall-headers): Ditto. - * Makefile.in: (host_alias): Add variable. - (build_alias): Ditto. - -Fri Feb 2 13:08:09 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * include/winnt.h: (__TEXT): Add private macro. - (_TEXT): Modify definition to use __TEXT. - (_T): Ditto. - This change allows the passing of a MACRO as an argument and have that - MACRO resolved first. - Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com> - -Wed Jan 31 17:35:59 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * Makefile.in: Increment VERSION to 0.5 - * include/winnt.h: Change TEXT to _TEXT throughout. - (SID_RELEASE): Define. - Thanks to: Eric PAIRE <eric.paire@ri.silicomp.com> - -Tue Jan 30 10:42:28 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * Apply Phil Krylov patches. - 2001-01-19 Phil Krylov <phil@mail.ru> - * include/commctrl.h: (HDI_IMAGE) New definition. - (HDI_DI_SETITEM) Ditto. - (HDI_ORDER) Ditto. - (HDI_FILTER) Ditto. - (HDF_BITMAP_ON_RIGHT) Ditto. - (HDF_IMAGE) Ditto. - (HDM_SETORDERARRAY) Ditto. - (Header_SetOrderArray) Ditto. - (ICC_BAR_CLASSES) Ditto. - (struct _HD_ITEMA) Change definition. - (struct _HD_ITEMW) Ditto. - (struct tagINITCOMMONCONTROLSEX) Enclose in _WIN32_IE braces. - (InitCommonControlsEx()) Ditto. - 2001-01-23 Phil Krylov <phil@mail.ru> - * include/richedit.h: Many Richedit 2.0 definitions. - -Tue Jan 30 09:56:50 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * include/winuser.h: (IDC_HAND) New resource identifier. - Thanks to: Mark Jordon <mark_jordan@ieee.org> - -Tue Jan 30 09:35:30 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * include/iptypes.h: Include <sys/types.h> for time_t declaration. - Fix typo's. - -Tue Jan 30 08:30:33 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * include/objidl.h: (GetClassID): Argument needs to be a pointer. - (GetUnmarshalClass): CLSID argument needs to be a pointer. - Thanks To: <bge@users.sourceforge.net> - -Tue Jan 30 07:52:54 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * Apply Danny Smith patch 102386 - 2000-11-15 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - * lib/rasapi32.def: add symbols available in NT4 and W2k - -Sun Jan 28 12:47:31 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * Apply Danny Smith patch 102382 - 2000-11-15 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - * lib/mswsock.def: remove leading underscores from symbol names - -Sun Jan 28 11:16:39 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * Apply Danny Smith patch 102446 - 2000-11-20 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - * include/sql.h (ODBCVER): change default to 0x0351. - (SQLSetScrollOptions): non-core function, move prototype to sqlext.h. - (SQLColAttributes): likewise. - (SQLBindParam): add prototype for ODBC 3.x function. - (SQLCloseCursor): likewise. - (SQLColAttribute): likewise. - (SQLCopyDesc):likewise. - (SQLEndTran): likewise. - (SQLFetchScroll): likewise. - (SQLGetConnectAttr): likewise. - (SQLGetDescField): likewise. - (SQLGetDescRec): likewise. - (SQLGetDiagField): likewise. - (SQLGetDiagRec): likewise. - (SQLGetEnvAttr): likewise. - (SQLGetStmtAttr): likewise. - (SQLSetConnectAttr): likewise. - (SQLSetDescField):likewise. - (SQLSetDescRec): likewise. - (SQLSetEnvAttr): likewise. - (SQLSetStmtAttr): likewise. - (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for - _WIN64 compatability; - (SQL_ACCESS_MODE): Move define to sqlext.h (used in non-core functions). - (SQL_ACTIVE_CONNECTIONS): likewise. - (SQL_ACTIVE_STATEMENTS): likewise. - (SQL_ALL_EXCEPT_LIKE): likewise. - (SQL_API_ALL_FUNCTIONS): likewise. - (SQL_API_LOADBYORDINAL): likewise. - (SQL_API_SQLBINDPARAMETER): likewise. - (SQL_API_SQLBROWSECONNECT): likewise. - (SQL_API_SQLCOLATTRIBUTES): likewise. - (SQL_API_SQLCOLUMNPRIVILEGES): likewise. - (SQL_API_SQLDESCRIBEPARAM): likewise. - (SQL_API_SQLDRIVERCONNECT): likewise. - (SQL_API_SQLDRIVERS): likewise. - (SQL_API_SQLEXTENDEDFETCH): likewise. - (SQL_API_SQLFOREIGNKEYS): likewise. - (SQL_API_SQLMORERESULTS): likewise. - (SQL_API_SQLNATIVESQL): likewise. - (SQL_API_SQLNUMPARAMS): likewise. - (SQL_API_SQLPARAMOPTIONS): likewise. - (SQL_API_SQLPRIMARYKEYS): likewise. - (SQL_API_SQLPROCEDURECOLUMNS): likewise. - (SQL_API_SQLPROCEDURES): likewise. - (SQL_API_SQLSETPOS): likewise. - (SQL_API_SQLSETSCROLLOPTIONS): likewise. - (SQL_API_SQLTABLEPRIVILEGES): likewise. - (SQL_ASYNC_ENABLE): likewise. - (SQL_ASYNC_ENABLE_DEFAULT): likewise. - (SQL_ASYNC_ENABLE_OFF): likewise. - (SQL_ASYNC_ENABLE_ON): likewise. - (SQL_ATTR_READONLY): likewise. - (SQL_ATTR_READWRITE_UNKNOWN): likewise. - (SQL_ATTR_WRITE): likewise. - (SQL_AUTOCOMMIT): likewise. - (SQL_AUTOCOMMIT_DEFAULT): likewise. - (SQL_AUTOCOMMIT_OFF): likewise. - (SQL_AUTOCOMMIT_ON): likewise. - (SQL_BEST_ROWID): likewise. - (SQL_BIGINT): likewise. - (SQL_BINARY): likewise. - (SQL_BIND_BY_COLUMN): likewise. - (SQL_BIND_TYPE): likewise. - (SQL_BIND_TYPE_DEFAULT): likewise. - (SQL_BIT): likewise. - (SQL_BOOKMARK_PERSISTENCE): likewise. - (SQL_BP_CLOSE): likewise. - (SQL_BP_DELETE): likewise. - (SQL_BP_DROP): likewise. - (SQL_BP_OTHER_HSTMT): likewise. - (SQL_BP_SCROLL): likewise. - (SQL_BP_TRANSACTION): likewise. - (SQL_BP_UPDATE): likewise. - (SQL_C_BINARY): likewise. - (SQL_C_BIT): likewise. - (SQL_C_BOOKMARK): likewise. - (SQL_C_CHAR): likewise. - (SQL_C_DATE): likewise. - (SQL_C_DEFAULT): likewise. - (SQL_C_DOUBLE): likewise. - (SQL_C_FLOAT): likewise. - (SQL_C_LONG): likewise. - (SQL_C_SHORT): likewise. - (SQL_C_SLONG): likewise. - (SQL_C_SSHORT): likewise. - (SQL_C_STINYINT): likewise. - (SQL_C_TIME): likewise. - (SQL_C_TIMESTAMP): likewise. - (SQL_C_TINYINT): likewise. - (SQL_C_ULONG): likewise. - (SQL_C_USHORT): likewise. - (SQL_C_UTINYINT): likewise. - (SQL_CB_NON_NULL): likewise. - (SQL_CB_NULL): likewise. - (SQL_CC_CLOSE): likewise. - (SQL_CC_DELETE): likewise. - (SQL_CC_PRESERVE): likewise. - (SQL_CN_ANY): likewise. - (SQL_CN_DIFFERENT): likewise. - (SQL_CN_NONE): likewise. - (SQL_COLATT_OPT_MAX): likewise. - (SQL_COLATT_OPT_MIN): likewise. - (SQL_COLUMN_ALIAS): likewise. - (SQL_COLUMN_AUTO_INCREMENT): likewise. - (SQL_COLUMN_CASE_SENSITIVE): likewise. - (SQL_COLUMN_COUNT): likewise. - (SQL_COLUMN_DISPLAY_SIZE): likewise. - (SQL_COLUMN_DRIVER_START): likewise. - (SQL_COLUMN_LABEL): likewise. - (SQL_COLUMN_LENGTH): likewise. - (SQL_COLUMN_MONEY): likewise. - (SQL_COLUMN_NAME): likewise. - (SQL_COLUMN_NULLABLE): likewise. - (SQL_COLUMN_OWNER_NAME): likewise. - (SQL_COLUMN_PRECISION): likewise. - (SQL_COLUMN_QUALIFIER_NAME): likewise. - (SQL_COLUMN_SCALE): likewise. - (SQL_COLUMN_SEARCHABLE): likewise. - (SQL_COLUMN_TABLE_NAME): likewise. - (SQL_COLUMN_TYPE): likewise. - (SQL_COLUMN_TYPE_NAME): likewise. - (SQL_COLUMN_UNSIGNED): likewise. - (SQL_COLUMN_UPDATABLE): likewise. - (SQL_CONCAT_NULL_BEHAVIOR): likewise. - (SQL_CONCUR_DEFAULT): likewise. - (SQL_CONCUR_LOCK): likewise. - (SQL_CONCUR_READ_ONLY): likewise. - (SQL_CONCUR_ROWVER): likewise. - (SQL_CONCUR_TIMESTAMP): likewise. - (SQL_CONCUR_VALUES): likewise. - (SQL_CONCURRENCY): likewise. - (SQL_CONN_OPT_MAX): likewise. - (SQL_CONN_OPT_MIN): likewise. - (SQL_CONNECT_OPT_DRVR_START): likewise. - (SQL_CONVERT_BIGINT): likewise. - (SQL_CONVERT_BINARY): likewise. - (SQL_CONVERT_BIT): likewise. - (SQL_CONVERT_CHAR): likewise. - (SQL_CONVERT_DATE): likewise. - (SQL_CONVERT_DECIMAL): likewise. - (SQL_CONVERT_DOUBLE): likewise. - (SQL_CONVERT_FLOAT): likewise. - (SQL_CONVERT_FUNCTIONS): likewise. - (SQL_CONVERT_INTEGER): likewise. - (SQL_CONVERT_LONGVARBINARY): likewise. - (SQL_CONVERT_LONGVARCHAR): likewise. - (SQL_CONVERT_NUMERIC): likewise. - (SQL_CONVERT_REAL): likewise. - (SQL_CONVERT_SMALLINT): likewise. - (SQL_CONVERT_TIME): likewise. - (SQL_CONVERT_TIMESTAMP): likewise. - (SQL_CONVERT_TINYINT): likewise. - (SQL_CONVERT_VARBINARY): likewise. - (SQL_CONVERT_VARCHAR): likewise. - (SQL_CORRELATION_NAME): likewise. - (SQL_CR_CLOSE): likewise. - (SQL_CR_DELETE): likewise. - (SQL_CR_PRESERVE): likewise. - (SQL_CUR_DEFAULT): likewise. - (SQL_CUR_USE_DRIVER): likewise. - (SQL_CUR_USE_IF_NEEDED): likewise. - (SQL_CUR_USE_ODBC): likewise. - (SQL_CURRENT_QUALIFIER): likewise. - (SQL_CURSOR_DYNAMIC): likewise. - (SQL_CURSOR_FORWARD_ONLY): likewise. - (SQL_CURSOR_KEYSET_DRIVEN): likewise. - (SQL_CURSOR_ROLLBACK_BEHAVIOR): likewise. - (SQL_CURSOR_STATIC): likewise. - (SQL_CURSOR_TYPE): likewise. - (SQL_CURSOR_TYPE_DEFAULT): likewise. - (SQL_CVT_BIGINT): likewise. - (SQL_CVT_BINARY): likewise. - (SQL_CVT_BIT): likewise. - (SQL_CVT_CHAR): likewise. - (SQL_CVT_DATE): likewise. - (SQL_CVT_DECIMAL): likewise. - (SQL_CVT_DOUBLE): likewise. - (SQL_CVT_FLOAT): likewise. - (SQL_CVT_INTEGER): likewise. - (SQL_CVT_LONGVARBINARY): likewise. - (SQL_CVT_LONGVARCHAR): likewise. - (SQL_CVT_NUMERIC): likewise. - (SQL_CVT_REAL): likewise. - (SQL_CVT_SMALLINT): likewise. - (SQL_CVT_TIME): likewise. - (SQL_CVT_TIMESTAMP): likewise. - (SQL_CVT_TINYINT): likewise. - (SQL_CVT_VARBINARY): likewise. - (SQL_CVT_VARCHAR): likewise. - (SQL_DATABASE_NAME): likewise. - (SQL_DATE): likewise. - (SQL_DRIVER_HDBC): likewise. - (SQL_DRIVER_HENV): likewise. - (SQL_DRIVER_HLIB): likewise. - (SQL_DRIVER_HSTMT): likewise. - (SQL_DRIVER_NAME): likewise. - (SQL_DRIVER_ODBC_VER): likewise. - (SQL_DRIVER_VER): likewise. - (SQL_ENSURE): likewise. - (SQL_EXPRESSIONS_IN_ORDERBY): likewise. - (SQL_EXT_API_LAST): likewise. - (SQL_EXT_API_START): likewise. - (SQL_FD_FETCH_BOOKMARK): likewise. - (SQL_FD_FETCH_PREV): likewise. - (SQL_FD_FETCH_RESUME): likewise. - (SQL_FETCH_PREV): likewise. - (SQL_FETCH_RESUME): likewise. - (SQL_FILE_NOT_SUPPORTED): likewise. - (SQL_FILE_QUALIFIER): likewise. - (SQL_FILE_TABLE): likewise. - (SQL_FILE_USAGE): likewise. - (SQL_FN_CVT_CONVERT): likewise. - (SQL_FN_NUM_ABS): likewise. - (SQL_FN_NUM_ACOS): likewise. - (SQL_FN_NUM_ASIN): likewise. - (SQL_FN_NUM_ATAN): likewise. - (SQL_FN_NUM_ATAN2): likewise. - (SQL_FN_NUM_CEILING): likewise. - (SQL_FN_NUM_COS): likewise. - (SQL_FN_NUM_COT): likewise. - (SQL_FN_NUM_DEGREES): likewise. - (SQL_FN_NUM_EXP): likewise. - (SQL_FN_NUM_FLOOR): likewise. - (SQL_FN_NUM_LOG): likewise. - (SQL_FN_NUM_LOG10): likewise. - (SQL_FN_NUM_MOD): likewise. - (SQL_FN_NUM_PI): likewise. - (SQL_FN_NUM_POWER): likewise. - (SQL_FN_NUM_RADIANS): likewise. - (SQL_FN_NUM_RAND): likewise. - (SQL_FN_NUM_ROUND): likewise. - (SQL_FN_NUM_SIGN): likewise. - (SQL_FN_NUM_SIN): likewise. - (SQL_FN_NUM_SQRT): likewise. - (SQL_FN_NUM_TAN): likewise. - (SQL_FN_NUM_TRUNCATE): likewise. - (SQL_FN_STR_ASCII): likewise. - (SQL_FN_STR_CHAR): likewise. - (SQL_FN_STR_CONCAT): likewise. - (SQL_FN_STR_DIFFERENCE): likewise. - (SQL_FN_STR_INSERT): likewise. - (SQL_FN_STR_LCASE): likewise. - (SQL_FN_STR_LEFT): likewise. - (SQL_FN_STR_LENGTH): likewise. - (SQL_FN_STR_LOCATE): likewise. - (SQL_FN_STR_LOCATE_2): likewise. - (SQL_FN_STR_LTRIM): likewise. - (SQL_FN_STR_REPEAT): likewise. - (SQL_FN_STR_REPLACE): likewise. - (SQL_FN_STR_RIGHT): likewise. - (SQL_FN_STR_RTRIM): likewise. - (SQL_FN_STR_SOUNDEX): likewise. - (SQL_FN_STR_SPACE): likewise. - (SQL_FN_STR_SUBSTRING): likewise. - (SQL_FN_STR_UCASE): likewise. - (SQL_FN_SYS_DBNAME): likewise. - (SQL_FN_SYS_IFNULL): likewise. - (SQL_FN_SYS_USERNAME): likewise. - (SQL_FN_TD_CURDATE): likewise. - (SQL_FN_TD_CURTIME): likewise. - (SQL_FN_TD_DAYNAME): likewise. - (SQL_FN_TD_DAYOFMONTH): likewise. - (SQL_FN_TD_DAYOFWEEK): likewise. - (SQL_FN_TD_DAYOFYEAR): likewise. - (SQL_FN_TD_HOUR): likewise. - (SQL_FN_TD_MINUTE): likewise. - (SQL_FN_TD_MONTH): likewise. - (SQL_FN_TD_MONTHNAME): likewise. - (SQL_FN_TD_NOW): likewise. - (SQL_FN_TD_QUARTER): likewise. - (SQL_FN_TD_SECOND): likewise. - (SQL_FN_TD_TIMESTAMPadd): likewise. - (SQL_FN_TD_TIMESTAMPDIFF): likewise. - (SQL_FN_TD_WEEK): likewise. - (SQL_FN_TD_YEAR): likewise. - (SQL_FN_TSI_DAY): likewise. - (SQL_FN_TSI_FRAC_SECOND): likewise. - (SQL_FN_TSI_HOUR): likewise. - (SQL_FN_TSI_MINUTE): likewise. - (SQL_FN_TSI_MONTH): likewise. - (SQL_FN_TSI_QUARTER): likewise. - (SQL_FN_TSI_SECOND): likewise. - (SQL_FN_TSI_WEEK): likewise. - (SQL_FN_TSI_YEAR): likewise. - (SQL_GB_GROUP_BY_CONTAINS_SELECT): likewise. - (SQL_GB_GROUP_BY_EQUALS_SELECT): likewise. - (SQL_GB_NO_RELATION): likewise. - (SQL_GB_NOT_SUPPORTED): likewise. - (SQL_GD_BLOCK): likewise. - (SQL_GD_BOUND): likewise. - (SQL_GET_BOOKMARK): likewise. - (SQL_GROUP_BY): likewise. - (SQL_INFO_DRIVER_START): likewise. - (SQL_INFO_FIRST): likewise. - (SQL_INFO_LAST): likewise. - (SQL_INTERVAL_DAY): likewise. - (SQL_INTERVAL_DAY_TO_HOUR): likewise. - (SQL_INTERVAL_DAY_TO_MINUTE): likewise. - (SQL_INTERVAL_DAY_TO_SECOND): likewise. - (SQL_INTERVAL_HOUR): likewise. - (SQL_INTERVAL_HOUR_TO_MINUTE): likewise. - (SQL_INTERVAL_HOUR_TO_SECOND): likewise. - (SQL_INTERVAL_MINUTE): likewise. - (SQL_INTERVAL_MINUTE_TO_SECOND): likewise. - (SQL_INTERVAL_MONTH): likewise. - (SQL_INTERVAL_SECOND): likewise. - (SQL_INTERVAL_YEAR): likewise. - (SQL_INTERVAL_YEAR_TO_MONTH): likewise. - (SQL_KEYSET_SIZE): likewise. - (SQL_KEYSET_SIZE_DEFAULT): likewise. - (SQL_KEYWORDS): likewise. - (SQL_LCK_EXCLUSIVE): likewise. - (SQL_LCK_NO_CHANGE): likewise. - (SQL_LCK_UNLOCK): likewise. - (SQL_LIKE_ESCAPE_CLAUSE): likewise. - (SQL_LIKE_ONLY): likewise. - (SQL_LOCK_TYPES): likewise. - (SQL_LOGIN_TIMEOUT): likewise. - (SQL_LOGIN_TIMEOUT_DEFAULT): likewise. - (SQL_LONGVARBINARY): likewise. - (SQL_LONGVARCHAR): likewise. - (SQL_MAX_BINARY_LITERAL_LEN): likewise. - (SQL_MAX_CHAR_LITERAL_LEN): likewise. - (SQL_MAX_DSN_LENGTH): likewise. - (SQL_MAX_LENGTH): likewise. - (SQL_MAX_LENGTH_DEFAULT): likewise. - (SQL_MAX_OPTION_STRING_LENGTH): likewise. - (SQL_MAX_OWNER_NAME_LEN): likewise. - (SQL_MAX_PROCEDURE_NAME_LEN): likewise. - (SQL_MAX_QUALIFIER_NAME_LEN): likewise. - (SQL_MAX_ROW_SIZE_INCLUDES_LONG): likewise. - (SQL_MAX_ROWS): likewise. - (SQL_MAX_ROWS_DEFAULT): likewise. - (SQL_MODE_DEFAULT): likewise. - (SQL_MODE_READ_ONLY): likewise. - (SQL_MODE_READ_WRITE): likewise. - (SQL_MULT_RESULT_SETS): likewise. - (SQL_MULTIPLE_ACTIVE_TXN): likewise. - (SQL_NC_END): likewise. - (SQL_NC_START): likewise. - (SQL_NEED_LONG_DATA_LEN): likewise. - (SQL_NNC_NON_NULL): likewise. - (SQL_NNC_NULL): likewise. - (SQL_NO_TOTAL): likewise. - (SQL_NON_NULLABLE_COLUMNS): likewise. - (SQL_NOSCAN): likewise. - (SQL_NOSCAN_DEFAULT): likewise. - (SQL_NOSCAN_OFF): likewise. - (SQL_NOSCAN_ON): likewise. - (SQL_NUM_EXTENSIONS): likewise. - (SQL_NUM_FUNCTIONS): likewise. - (SQL_NUMERIC_FUNCTIONS): likewise. - (SQL_OAC_LEVEL1): likewise. - (SQL_OAC_LEVEL2): likewise. - (SQL_OAC_NONE): likewise. - (SQL_ODBC_API_CONFORMANCE): likewise. - (SQL_ODBC_CURSORS): likewise. - (SQL_ODBC_KEYWORDS): likewise. - (SQL_ODBC_SAG_CLI_CONFORMANCE): likewise. - (SQL_ODBC_SQL_CONFORMANCE): likewise. - (SQL_ODBC_SQL_OPT_IEF): likewise. - (SQL_ODBC_VER): likewise. - (SQL_OPT_TRACE): likewise. - (SQL_OPT_TRACE_DEFAULT): likewise. - (SQL_OPT_TRACE_FILE_DEFAULT): likewise. - (SQL_OPT_TRACE_OFF): likewise. - (SQL_OPT_TRACE_ON): likewise. - (SQL_OPT_TRACEFILE): likewise. - (SQL_OSC_CORE): likewise. - (SQL_OSC_EXTENDED): likewise. - (SQL_OSC_MINIMUM): likewise. - (SQL_OSCC_COMPLIANT): likewise. - (SQL_OSCC_NOT_COMPLIANT): likewise. - (SQL_OU_DML_STATEMENTS): likewise. - (SQL_OU_INDEX_DEFINITION): likewise. - (SQL_OU_PRIVILEGE_DEFINITION): likewise. - (SQL_OU_PROCEDURE_INVOCATION): likewise. - (SQL_OU_TABLE_DEFINITION): likewise. - (SQL_OUTER_JOINS): likewise. - (SQL_OWNER_TERM): likewise. - (SQL_OWNER_USAGE): likewise. - (SQL_PACKET_SIZE): likewise. - (SQL_PC_NOT_PSEUDO): likewise. - (SQL_POS_add): likewise. - (SQL_POS_DELETE): likewise. - (SQL_POS_OPERATIONS): likewise. - (SQL_POS_POSITION): likewise. - (SQL_POS_REFRESH): likewise. - (SQL_POS_UPDATE): likewise. - (SQL_POSITIONED_STATEMENTS): likewise. - (SQL_PROCEDURE_TERM): likewise. - (SQL_PROCEDURES): likewise. - (SQL_PS_POSITIONED_DELETE): likewise. - (SQL_PS_POSITIONED_UPDATE): likewise. - (SQL_PS_SELECT_FOR_UPDATE): likewise. - (SQL_QL_END): likewise. - (SQL_QL_START): likewise. - (SQL_QU_DML_STATEMENTS): likewise. - (SQL_QU_INDEX_DEFINITION): likewise. - (SQL_QU_PRIVILEGE_DEFINITION): likewise. - (SQL_QU_PROCEDURE_INVOCATION): likewise. - (SQL_QU_TABLE_DEFINITION): likewise. - (SQL_QUALIFIER_LOCATION): likewise. - (SQL_QUALIFIER_NAME_SEPARATOR): likewise. - (SQL_QUALIFIER_TERM): likewise. - (SQL_QUALIFIER_USAGE): likewise. - (SQL_QUERY_TIMEOUT): likewise. - (SQL_QUERY_TIMEOUT_DEFAULT): likewise. - (SQL_QUICK): likewise. - (SQL_QUIET_MODE): likewise. - (SQL_QUOTED_IDENTIFIER_CASE): likewise. - (SQL_RD_DEFAULT): likewise. - (SQL_RD_OFF): likewise. - (SQL_RD_ON): likewise. - (SQL_RETRIEVE_DATA): likewise. - (SQL_ROW_NUMBER): likewise. - (SQL_ROW_UPDATES): likewise. - (SQL_ROWSET_SIZE): likewise. - (SQL_ROWSET_SIZE_DEFAULT): likewise. - (SQL_ROWVER): likewise. - (SQL_SC_NON_UNIQUE): likewise. - (SQL_SC_TRY_UNIQUE): likewise. - (SQL_SC_UNIQUE): likewise. - (SQL_SCCO_OPT_TIMESTAMP): likewise. - (SQL_SCROLL_DYNAMIC): likewise. - (SQL_SCROLL_FORWARD_ONLY): likewise. - (SQL_SCROLL_KEYSET_DRIVEN): likewise. - (SQL_SCROLL_OPTIONS): likewise. - (SQL_SCROLL_STATIC): likewise. - (SQL_SEARCHABLE): likewise. - (SQL_SIGNED_OFFSET): likewise. - (SQL_SIMULATE_CURSOR): likewise. - (SQL_SO_DYNAMIC): likewise. - (SQL_SO_FORWARD_ONLY): likewise. - (SQL_SO_KEYSET_DRIVEN): likewise. - (SQL_SO_MIXED): likewise. - (SQL_SO_STATIC): likewise. - (SQL_SPEC_MAJOR): likewise. - (SQL_SPEC_MINOR): likewise. - (SQL_SPEC_STRING): likewise. - (SQL_SQ_COMPARISON): likewise. - (SQL_SQ_CORRELATED_SUBQUERIES): likewise. - (SQL_SQ_EXISTS): likewise. - (SQL_SQ_IN): likewise. - (SQL_SQ_QUANTIFIED): likewise. - (SQL_SQLSTATE_SIZE): likewise. - (SQL_SS_addITIONS): likewise. - (SQL_SS_DELETIONS): likewise. - (SQL_SS_UPDATES): likewise. - (SQL_STATIC_SENSITIVITY): likewise. - (SQL_STMT_OPT_MAX): likewise. - (SQL_STMT_OPT_MIN): likewise. - (SQL_STRING_FUNCTIONS): likewise. - (SQL_SUBQUERIES): likewise. - (SQL_SYSTEM_FUNCTIONS): likewise. - (SQL_TABLE_STAT): likewise. - (SQL_TABLE_TERM): likewise. - (SQL_TIME): likewise. - (SQL_TIMEDATE_add_INTERVALS): likewise. - (SQL_TIMEDATE_DIFF_INTERVALS): likewise. - (SQL_TIMEDATE_FUNCTIONS): likewise. - (SQL_TIMESTAMP): likewise. - (SQL_TINYINT): likewise. - (SQL_TRANSLATE_DLL): likewise. - (SQL_TRANSLATE_OPTION): likewise. - (SQL_TXN_ISOLATION): likewise. - (SQL_TXN_VERSIONING): likewise. - (SQL_TYPE_DRIVER_END): likewise. - (SQL_TYPE_DRIVER_START): likewise. - (SQL_TYPE_MAX): likewise. - (SQL_TYPE_MIN): likewise. - (SQL_TYPE_NULL): likewise. - (SQL_U_UNION): likewise. - (SQL_U_UNION_ALL): likewise. - (SQL_UB_DEFAULT): likewise. - (SQL_UB_OFF): likewise. - (SQL_UB_ON): likewise. - (SQL_UNICODE): likewise. - (SQL_UNICODE_CHAR): likewise. - (SQL_UNICODE_LONGVARCHAR): likewise. - (SQL_UNICODE_VARCHAR): likewise. - (SQL_UNION): likewise. - (SQL_UNSEARCHABLE): likewise. - (SQL_UNSIGNED_OFFSET): likewise. - (SQL_USE_BOOKMARKS): likewise. - (SQL_VARBINARY): likewise. - (SQL_TRUE): add define for ODBC3.x. - (SQL_FALSE): likewise. - (SQL_AM_CONNECTION): likewise. - (SQL_AM_NONE): likewise. - (SQL_AM_STATEMENT): likewise. - (SQL_API_SQLALLOCHANDLE): likewise. - (SQL_API_SQLBINDPARAM): likewise. - (SQL_API_SQLCLOSECURSOR): likewise. - (SQL_API_SQLCOLATTRIBUTE): likewise. - (SQL_API_SQLCOPYDESC): likewise. - (SQL_API_SQLENDTRAN): likewise. - (SQL_API_SQLFETCHSCROLL): likewise. - (SQL_API_SQLFREEHANDLE): likewise. - (SQL_API_SQLGETCONNECTATTR): likewise. - (SQL_API_SQLGETDESCFIELD): likewise. - (SQL_API_SQLGETDESCREC): likewise. - (SQL_API_SQLGETDIAGFIELD): likewise. - (SQL_API_SQLGETDIAGREC): likewise. - (SQL_API_SQLGETENVATTR): likewise. - (SQL_API_SQLGETSTMTATTR): likewise. - (SQL_API_SQLSETCONNECTATTR): likewise. - (SQL_API_SQLSETDESCFIELD): likewise. - (SQL_API_SQLSETDESCREC): likewise. - (SQL_API_SQLSETENVATTR): likewise. - (SQL_API_SQLSETSTMTATTR): likewise. - (SQL_ARD_TYPE): likewise. - (SQL_AT_add_CONSTRAINT): likewise. - (SQL_ATTR_APP_PARAM_DESC): likewise. - (SQL_ATTR_APP_ROW_DESC): likewise. - (SQL_ATTR_AUTO_IPD): likewise. - (SQL_ATTR_CURSOR_SCROLLABLE): likewise. - (SQL_ATTR_CURSOR_SENSITIVITY): likewise. - (SQL_ATTR_IMP_PARAM_DESC): likewise. - (SQL_ATTR_IMP_ROW_DESC): likewise. - (SQL_ATTR_METADATA_ID): likewise. - (SQL_ATTR_OUTPUT_NTS): likewise. - (SQL_CATALOG_NAME): likewise. - (SQL_CODE_DATE): likewise. - (SQL_CODE_TIME): likewise. - (SQL_CODE_TIMESTAMP): likewise. - (SQL_COLLATION_SEQ): likewise. - (SQL_CURSOR_SENSITIVITY): likewise. - (SQL_DATE_LEN): likewise. - (SQL_DATETIME): likewise. - (SQL_DEFAULT): likewise. - (SQL_DESC_ALLOC_AUTO): likewise. - (SQL_DESC_ALLOC_TYPE): likewise. - (SQL_DESC_ALLOC_USER): likewise. - (SQL_DESC_COUNT): likewise. - (SQL_DESC_DATA_PTR): likewise. - (SQL_DESC_DATETIME_INTERVAL_CODE): likewise. - (SQL_DESC_INDICATOR_PTR): likewise. - (SQL_DESC_LENGTH): likewise. - (SQL_DESC_NAME): likewise. - (SQL_DESC_NULLABLE): likewise. - (SQL_DESC_OCTET_LENGTH): likewise. - (SQL_DESC_OCTET_LENGTH_PTR): likewise. - (SQL_DESC_PRECISION): likewise. - (SQL_DESC_SCALE): likewise. - (SQL_DESC_TYPE): likewise. - (SQL_DESC_UNNAMED): likewise. - (SQL_DESCRIBE_PARAMETER): likewise. - (SQL_DIAG_ALTER_DOMAIN): likewise. - (SQL_DIAG_ALTER_TABLE): likewise. - (SQL_DIAG_CALL): likewise. - (SQL_DIAG_CLASS_ORIGIN): likewise. - (SQL_DIAG_CONNECTION_NAME): likewise. - (SQL_DIAG_CREATE_ASSERTION): likewise. - (SQL_DIAG_CREATE_CHARACTER_SET): likewise. - (SQL_DIAG_CREATE_COLLATION): likewise. - (SQL_DIAG_CREATE_DOMAIN): likewise. - (SQL_DIAG_CREATE_INDEX): likewise. - (SQL_DIAG_CREATE_SCHEMA): likewise. - (SQL_DIAG_CREATE_TABLE): likewise. - (SQL_DIAG_CREATE_TRANSLATION): likewise. - (SQL_DIAG_CREATE_VIEW): likewise. - (SQL_DIAG_DELETE_WHERE): likewise. - (SQL_DIAG_DROP_ASSERTION): likewise. - (SQL_DIAG_DROP_CHARACTER_SET): likewise. - (SQL_DIAG_DROP_COLLATION): likewise. - (SQL_DIAG_DROP_DOMAIN): likewise. - (SQL_DIAG_DROP_INDEX): likewise. - (SQL_DIAG_DROP_SCHEMA): likewise. - (SQL_DIAG_DROP_TABLE): likewise. - (SQL_DIAG_DROP_TRANSLATION): likewise. - (SQL_DIAG_DROP_VIEW): likewise. - (SQL_DIAG_DYNAMIC_DELETE_CURSOR): likewise. - (SQL_DIAG_DYNAMIC_FUNCTION): likewise. - (SQL_DIAG_DYNAMIC_FUNCTION_CODE): likewise. - (SQL_DIAG_DYNAMIC_UPDATE_CURSOR): likewise. - (SQL_DIAG_GRANT): likewise. - (SQL_DIAG_INSERT): likewise. - (SQL_DIAG_MESSAGE_TEXT): likewise. - (SQL_DIAG_NATIVE): likewise. - (SQL_DIAG_NUMBER): likewise. - (SQL_DIAG_RETURNCODE): likewise. - (SQL_DIAG_REVOKE): likewise. - (SQL_DIAG_ROW_COUNT): likewise. - (SQL_DIAG_SELECT_CURSOR): likewise. - (SQL_DIAG_SERVER_NAME): likewise. - (SQL_DIAG_SQLSTATE): likewise. - (SQL_DIAG_SUBCLASS_ORIGIN): likewise. - (SQL_DIAG_UNKNOWN_STATEMENT): likewise. - (SQL_DIAG_UPDATE_WHERE): likewise. - (SQL_FALSE): likewise. - (SQL_FETCH_ABSOLUTE): likewise. - (SQL_FETCH_LAST): likewise. - (SQL_FETCH_PRIOR): likewise. - (SQL_FETCH_RELATIVE): likewise. - (SQL_HANDLE_DBC): likewise. - (SQL_HANDLE_DESC): likewise. - (SQL_HANDLE_ENV): likewise. - (SQL_HANDLE_STMT): likewise. - (SQL_INSENSITIVE): likewise. - (SQL_INTEGRITY): likewise. - (SQL_MAX_CATALOG_NAME_LEN): likewise. - (SQL_MAX_CONCURRENT_ACTIVITIES): likewise. - (SQL_MAX_DRIVER_CONNECTIONS): likewise. - (SQL_MAX_IDENTIFIER_LEN): likewise. - (SQL_MAX_SCHEMA_NAME_LEN): likewise. - (SQL_MAXIMUM_CATALOG_NAME_LENGTH): likewise. - (SQL_MAXIMUM_COLUMN_NAME_LENGTH): likewise. - (SQL_MAXIMUM_COLUMNS_IN_GROUP_BY): likewise. - (SQL_MAXIMUM_COLUMNS_IN_INDEX): likewise. - (SQL_MAXIMUM_COLUMNS_IN_ORDER_BY): likewise. - (SQL_MAXIMUM_COLUMNS_IN_SELECT): likewise. - (SQL_MAXIMUM_CONCURRENT_ACTIVITIES): likewise. - (SQL_MAXIMUM_CURSOR_NAME_LENGTH): likewise. - (SQL_MAXIMUM_DRIVER_CONNECTIONS): likewise. - (SQL_MAXIMUM_IDENTIFIER_LENGTH): likewise. - (SQL_MAXIMUM_INDEX_SIZE): likewise. - (SQL_MAXIMUM_ROW_SIZE): likewise. - (SQL_MAXIMUM_SCHEMA_NAME_LENGTH): likewise. - (SQL_MAXIMUM_STATEMENT_LENGTH): likewise. - (SQL_MAXIMUM_TABLES_IN_SELECT): likewise. - (SQL_MAXIMUM_USER_NAME_LENGTH): likewise. - (SQL_NAMED): likewise. - (SQL_NONSCROLLABLE): likewise. - (SQL_NTSL): likewise. - (SQL_NULL_HANDLE): likewise. - (SQL_NULL_HDESC): likewise. - (SQL_OUTER_JOIN_CAPABILITIES): likewise. - (SQL_PRED_BASIC): likewise. - (SQL_PRED_CHAR): likewise. - (SQL_PRED_NONE): likewise. - (SQL_ROW_IDENTIFIER): likewise. - (SQL_SCROLLABLE): likewise. - (SQL_SENSITIVE): likewise. - (SQL_SUCCEEDED(rc)): likewise. - (SQL_TIME_LEN): likewise. - (SQL_TIMESTAMP_LEN): likewise. - (SQL_TRANSACTION_CAPABLE): likewise. - (SQL_TRANSACTION_ISOLATION_OPTION): likewise. - (SQL_TRANSACTION_READ_COMMITTED): likewise. - (SQL_TRANSACTION_READ_UNCOMMITTED): likewise. - (SQL_TRANSACTION_REPEATABLE_READ): likewise. - (SQL_TRANSACTION_SERIALIZABLE): likewise. - (SQL_TYPE_DATE): likewise. - (SQL_TYPE_TIME): likewise. - (SQL_TYPE_TIMESTAMP): likewise. - (SQL_UNKNOWN_TYPE): likewise. - (SQL_UNNAMED): likewise. - (SQL_UNSPECIFIED): likewise. - (SQL_XOPEN_CLI_YEAR): likewise. - (SQLAllocConnect): add comment marking as deperecated. - (SQLAllocEnv): likewise. - (SQLAllocStmt): likewise. - (SQLFreeConnect): likewise. - (SQLFreeEnv): likewise. - (SQLGetConnectOption): likewise. - (SQLGetStmtOption): likewise. - - * include/sqlext.h (#include <sqlucode.h>): add directive. - (SQLSetScrollOptions): non-core function, move prototype from sql.h. - (SQLColAttributes): likewise. - (SQLBulkOperations): add function prototype. - (SQLAllocHandleStd): likewise - (TraceReturn): add Trace API prototype. - (TraceVersion): likewise. - (ODBCGetTryWaitValue):likewise. - (ODBCSetTryWaitValue): likewise. - (SQL_LOCK_RECORD): correct function macro. - (SQL_REFRESH_RECORD): likewise. - (SQLINTENGER and SQLUINTEGER): replace with SQLLEN and SQLULEN for - _WIN64 compatability. - move defines for non-core functions from sql.h to sqlext.h (refer - changes for sql.h) - (SQL_ACTIVE_ENVIRONMENTS): new ODBC3.x define - (SQL_AD_ADD_CONSTRAINT_DEFERRABLE): likewise. - (SQL_AD_ADD_CONSTRAINT_INITIALLY_DEFERRED): likewise. - (SQL_AD_ADD_CONSTRAINT_INITIALLY_IMMEDIATE): likewise. - (SQL_AD_ADD_CONSTRAINT_NON_DEFERRABLE): likewise. - (SQL_AD_ADD_DOMAIN_CONSTRAINT): likewise. - (SQL_AD_ADD_DOMAIN_DEFAULT): likewise. - (SQL_AD_CONSTRAINT_NAME_DEFINITION): likewise. - (SQL_AD_DROP_DOMAIN_CONSTRAINT): likewise. - (SQL_AD_DROP_DOMAIN_DEFAULT): likewise. - (SQL_AF_ALL): likewise. - (SQL_AF_AVG): likewise. - (SQL_AF_COUNT): likewise. - (SQL_AF_DISTINCT): likewise. - (SQL_AF_MAX): likewise. - (SQL_AF_MIN): likewise. - (SQL_AF_SUM): likewise. - (SQL_AGGREGATE_FUNCTIONS): likewise. - (SQL_ALL_CATALOGS): likewise. - (SQL_ALL_SCHEMAS): likewise. - (SQL_ALL_TABLE_TYPES): likewise. - (SQL_ALTER_DOMAIN): likewise. - (SQL_AM_CONNECTION): likewise. - (SQL_AM_NONE): likewise. - (SQL_AM_STATEMENT): likewise. - (SQL_API_ODBC3_ALL_FUNCTIONS): likewise. - (SQL_API_ODBC3_ALL_FUNCTIONS_SIZE): likewise. - (SQL_API_SQLALLOCHANDLESTD): likewise. - (SQL_API_SQLBULKOPERATIONS): likewise. - (SQL_ASYNC_MODE): likewise. - (SQL_AT_ADD_COLUMN_COLLATION): likewise. - (SQL_AT_ADD_COLUMN_DEFAULT): likewise. - (SQL_AT_ADD_COLUMN_SINGLE): likewise. - (SQL_AT_ADD_TABLE_CONSTRAINT): likewise. - (SQL_AT_CONSTRAINT_DEFERRABLE): likewise. - (SQL_AT_CONSTRAINT_INITIALLY_DEFERRED): likewise. - (SQL_AT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise. - (SQL_AT_CONSTRAINT_NAME_DEFINITION): likewise. - (SQL_AT_CONSTRAINT_NON_DEFERRABLE): likewise. - (SQL_AT_DROP_COLUMN_CASCADE): likewise. - (SQL_AT_DROP_COLUMN_DEFAULT): likewise. - (SQL_AT_DROP_COLUMN_RESTRICT): likewise. - (SQL_AT_DROP_TABLE_CONSTRAINT_CASCADE): likewise. - (SQL_AT_DROP_TABLE_CONSTRAINT_RESTRICT): likewise. - (SQL_AT_SET_COLUMN_DEFAULT): likewise. - (SQL_ATTR_ACCESS_MODE): likewise. - (SQL_ATTR_ASYNC_ENABLE): likewise. - (SQL_ATTR_AUTOCOMMIT): likewise. - (SQL_ATTR_CONCURRENCY): likewise. - (SQL_ATTR_CONNECTION_POOLING): likewise. - (SQL_ATTR_CONNECTION_TIMEOUT): likewise. - (SQL_ATTR_CP_MATCH): likewise. - (SQL_ATTR_CURRENT_CATALOG): likewise. - (SQL_ATTR_CURSOR_TYPE): likewise. - (SQL_ATTR_DISCONNECT_BEHAVIOR): likewise. - (SQL_ATTR_ENABLE_AUTO_IPD): likewise. - (SQL_ATTR_ENLIST_IN_DTC): likewise. - (SQL_ATTR_ENLIST_IN_XA): likewise. - (SQL_ATTR_FETCH_BOOKMARK_PTR): likewise. - (SQL_ATTR_KEYSET_SIZE): likewise. - (SQL_ATTR_LOGIN_TIMEOUT): likewise. - (SQL_ATTR_MAX_LENGTH): likewise. - (SQL_ATTR_MAX_ROWS): likewise. - (SQL_ATTR_NOSCAN): likewise. - (SQL_ATTR_ODBC_CURSORS): likewise. - (SQL_ATTR_ODBC_VERSION): likewise. - (SQL_ATTR_PACKET_SIZE): likewise. - (SQL_ATTR_PARAM_BIND_OFFSET_PTR): likewise. - (SQL_ATTR_PARAM_BIND_TYPE): likewise. - (SQL_ATTR_PARAM_OPERATION_PTR): likewise. - (SQL_ATTR_PARAM_STATUS_PTR): likewise. - (SQL_ATTR_PARAMS_PROCESSED_PTR): likewise. - (SQL_ATTR_PARAMSET_SIZE): likewise. - (SQL_ATTR_QUERY_TIMEOUT): likewise. - (SQL_ATTR_QUIET_MODE): likewise. - (SQL_ATTR_RETRIEVE_DATA): likewise. - (SQL_ATTR_ROW_ARRAY_SIZE): likewise. - (SQL_ATTR_ROW_BIND_OFFSET_PTR): likewise. - (SQL_ATTR_ROW_BIND_TYPE): likewise. - (SQL_ATTR_ROW_NUMBER): likewise. - (SQL_ATTR_ROW_OPERATION_PTR): likewise. - (SQL_ATTR_ROW_STATUS_PTR): likewise. - (SQL_ATTR_ROWS_FETCHED_PTR): likewise. - (SQL_ATTR_SIMULATE_CURSOR): likewise. - (SQL_ATTR_TRACE): likewise. - (SQL_ATTR_TRACEFILE): likewise. - (SQL_ATTR_TRANSLATE_LIB): likewise. - (SQL_ATTR_TRANSLATE_OPTION): likewise. - (SQL_ATTR_TXN_ISOLATION): likewise. - (SQL_ATTR_USE_BOOKMARKS): likewise. - (SQL_BATCH_ROW_COUNT): likewise. - (SQL_BATCH_SUPPORT): likewise. - (SQL_BRC_EXPLICIT): likewise. - (SQL_BRC_PROCEDURES): likewise. - (SQL_BRC_ROLLED_UP): likewise. - (SQL_BS_ROW_COUNT_EXPLICIT): likewise. - (SQL_BS_ROW_COUNT_PROC): likewise. - (SQL_BS_SELECT_EXPLICIT): likewise. - (SQL_BS_SELECT_PROC): likewise. - (SQL_C_INTERVAL_DAY): likewise. - (SQL_C_INTERVAL_DAY_TO_HOUR): likewise. - (SQL_C_INTERVAL_DAY_TO_MINUTE): likewise. - (SQL_C_INTERVAL_DAY_TO_SECOND): likewise. - (SQL_C_INTERVAL_HOUR): likewise. - (SQL_C_INTERVAL_HOUR_TO_MINUTE): likewise. - (SQL_C_INTERVAL_HOUR_TO_SECOND): likewise. - (SQL_C_INTERVAL_MINUTE): likewise. - (SQL_C_INTERVAL_MINUTE_TO_SECOND): likewise. - (SQL_C_INTERVAL_MONTH): likewise. - (SQL_C_INTERVAL_SECOND): likewise. - (SQL_C_INTERVAL_YEAR): likewise. - (SQL_C_INTERVAL_YEAR_TO_MONTH): likewise. - (SQL_C_NUMERIC): likewise. - (SQL_C_SBIGINT): likewise. - (SQL_C_TYPE_DATE): likewise. - (SQL_C_TYPE_TIME): likewise. - (SQL_C_TYPE_TIMESTAMP): likewise. - (SQL_C_UBIGINT): likewise. - (SQL_C_VARBOOKMARK): likewise. - (SQL_CA_CONSTRAINT_DEFERRABLE): likewise. - (SQL_CA_CONSTRAINT_INITIALLY_DEFERRED): likewise. - (SQL_CA_CONSTRAINT_INITIALLY_IMMEDIATE): likewise. - (SQL_CA_CONSTRAINT_NON_DEFERRABLE): likewise. - (SQL_CA_CREATE_ASSERTION): likewise. - (SQL_CA1_ABSOLUTE): likewise. - (SQL_CA1_BOOKMARK): likewise. - (SQL_CA1_BULK_ADD): likewise. - (SQL_CA1_BULK_DELETE_BY_BOOKMARK): likewise. - (SQL_CA1_BULK_FETCH_BY_BOOKMARK): likewise. - (SQL_CA1_BULK_UPDATE_BY_BOOKMARK): likewise. - (SQL_CA1_LOCK_EXCLUSIVE): likewise. - (SQL_CA1_LOCK_NO_CHANGE): likewise. - (SQL_CA1_LOCK_UNLOCK): likewise. - (SQL_CA1_NEXT): likewise. - (SQL_CA1_POS_DELETE): likewise. - (SQL_CA1_POS_POSITION): likewise. - (SQL_CA1_POS_REFRESH): likewise. - (SQL_CA1_POS_UPDATE): likewise. - (SQL_CA1_POSITIONED_DELETE): likewise. - (SQL_CA1_POSITIONED_UPDATE): likewise. - (SQL_CA1_RELATIVE): likewise. - (SQL_CA1_SELECT_FOR_UPDATE): likewise. - (SQL_CA2_CRC_APPROXIMATE): likewise. - (SQL_CA2_CRC_EXACT): likewise. - (SQL_CA2_LOCK_CONCURRENCY): likewise. - (SQL_CA2_MAX_ROWS_AFFECTS_ALL): likewise. - (SQL_CA2_MAX_ROWS_CATALOG): likewise. - (SQL_CA2_MAX_ROWS_DELETE): likewise. - (SQL_CA2_MAX_ROWS_INSERT): likewise. - (SQL_CA2_MAX_ROWS_SELECT): likewise. - (SQL_CA2_MAX_ROWS_UPDATE): likewise. - (SQL_CA2_OPT_ROWVER_CONCURRENCY): likewise. - (SQL_CA2_OPT_VALUES_CONCURRENCY): likewise. - (SQL_CA2_READ_ONLY_CONCURRENCY): likewise. - (SQL_CA2_SENSITIVITY_ADDITIONS): likewise. - (SQL_CA2_SENSITIVITY_DELETIONS): likewise. - (SQL_CA2_SENSITIVITY_UPDATES): likewise. - (SQL_CA2_SIMULATE_NON_UNIQUE): likewise. - (SQL_CA2_SIMULATE_TRY_UNIQUE): likewise. - (SQL_CA2_SIMULATE_UNIQUE): likewise. - (SQL_CATALOG_LOCATION): likewise. - (SQL_CATALOG_NAME_SEPARATOR): likewise. - (SQL_CATALOG_TERM): likewise. - (SQL_CATALOG_USAGE): likewise. - (SQL_CCOL_CREATE_COLLATION): likewise. - (SQL_CCS_COLLATE_CLAUSE): likewise. - (SQL_CCS_CREATE_CHARACTER_SET): likewise. - (SQL_CCS_LIMITED_COLLATION): likewise. - (SQL_CDO_COLLATION): likewise. - (SQL_CDO_CONSTRAINT): likewise. - (SQL_CDO_CONSTRAINT_DEFERRABLE): likewise. - (SQL_CDO_CONSTRAINT_INITIALLY_DEFERRED): likewise. - (SQL_CDO_CONSTRAINT_INITIALLY_IMMEDIATE): likewise. - (SQL_CDO_CONSTRAINT_NAME_DEFINITION): likewise. - (SQL_CDO_CONSTRAINT_NON_DEFERRABLE): likewise. - (SQL_CDO_CREATE_DOMAIN): likewise. - (SQL_CDO_DEFAULT): likewise. - (SQL_CL_END): likewise. - (SQL_CL_START): likewise. - (SQL_COL_PRED_BASIC): likewise. - (SQL_COL_PRED_CHAR): likewise. - (SQL_COLUMN_DRIVER_START): likewise. - (SQL_COLUMN_IGNORE): likewise. - (SQL_COLUMN_NUMBER_UNKNOWN): likewise. - (SQL_CONVERT_GUID): likewise. - (SQL_CONVERT_INTERVAL_DAY_TIME): likewise. - (SQL_CONVERT_INTERVAL_YEAR_MONTH): likewise. - (SQL_CONVERT_WCHAR): likewise. - (SQL_CONVERT_WLONGVARCHAR): likewise. - (SQL_CONVERT_WVARCHAR): likewise. - (SQL_CP_DEFAULT): likewise. - (SQL_CP_MATCH_DEFAULT): likewise. - (SQL_CP_OFF): likewise. - (SQL_CP_ONE_PER_DRIVER): likewise. - (SQL_CP_ONE_PER_HENV): likewise. - (SQL_CP_RELAXED_MATCH): likewise. - (SQL_CP_STRICT_MATCH): likewise. - (SQL_CREATE_ASSERTION): likewise. - (SQL_CREATE_CHARACTER_SET): likewise. - (SQL_CREATE_COLLATION): likewise. - (SQL_CREATE_DOMAIN): likewise. - (SQL_CREATE_SCHEMA): likewise. - (SQL_CREATE_TABLE): likewise. - (SQL_CREATE_TRANSLATION): likewise. - (SQL_CREATE_VIEW): likewise. - (SQL_CS_AUTHORIZATION): likewise. - (SQL_CS_CREATE_SCHEMA): likewise. - (SQL_CS_DEFAULT_CHARACTER_SET): likewise. - (SQL_CT_COLUMN_COLLATION): likewise. - (SQL_CT_COLUMN_CONSTRAINT): likewise. - (SQL_CT_COLUMN_DEFAULT): likewise. - (SQL_CT_COMMIT_DELETE): likewise. - (SQL_CT_COMMIT_PRESERVE): likewise. - (SQL_CT_CONSTRAINT_DEFERRABLE): likewise. - (SQL_CT_CONSTRAINT_INITIALLY_DEFERRED): likewise. - (SQL_CT_CONSTRAINT_INITIALLY_IMMEDIATE): likewise. - (SQL_CT_CONSTRAINT_NAME_DEFINITION): likewise. - (SQL_CT_CONSTRAINT_NON_DEFERRABLE): likewise. - (SQL_CT_CREATE_TABLE): likewise. - (SQL_CT_GLOBAL_TEMPORARY): likewise. - (SQL_CT_LOCAL_TEMPORARY): likewise. - (SQL_CT_TABLE_CONSTRAINT): likewise. - (SQL_CTR_CREATE_TRANSLATION): likewise. - (SQL_CU_DML_STATEMENTS): likewise. - (SQL_CU_INDEX_DEFINITION): likewise. - (SQL_CU_PRIVILEGE_DEFINITION): likewise. - (SQL_CU_PROCEDURE_INVOCATION): likewise. - (SQL_CU_TABLE_DEFINITION): likewise. - (SQL_CVT_GUID): likewise. - (SQL_CVT_INTERVAL_DAY_TIME): likewise. - (SQL_CVT_INTERVAL_YEAR_MONTH): likewise. - (SQL_CVT_WCHAR): likewise. - (SQL_CVT_WLONGVARCHAR): likewise. - (SQL_CVT_WVARCHAR): likewise. - (SQL_DA_DROP_ASSERTION): likewise. - (SQL_DATETIME_LITERALS): likewise. - (SQL_DB_DEFAULT): likewise. - (SQL_DB_DISCONNECT): likewise. - (SQL_DB_RETURN_TO_POOL): likewise. - (SQL_DC_DROP_COLLATION): likewise. - (SQL_DCS_DROP_CHARACTER_SET): likewise. - (SQL_DD_CASCADE): likewise. - (SQL_DD_DROP_DOMAIN): likewise. - (SQL_DD_RESTRICT): likewise. - (SQL_DDL_INDEX): likewise. - (SQL_DELETE_BY_BOOKMARK): likewise. - (SQL_DESC_ARRAY_SIZE): likewise. - (SQL_DESC_ARRAY_STATUS_PTR): likewise. - (SQL_DESC_AUTO_UNIQUE_VALUE): likewise. - (SQL_DESC_BASE_COLUMN_NAME): likewise. - (SQL_DESC_BASE_TABLE_NAME): likewise. - (SQL_DESC_BIND_OFFSET_PTR): likewise. - (SQL_DESC_BIND_TYPE): likewise. - (SQL_DESC_CASE_SENSITIVE): likewise. - (SQL_DESC_CATALOG_NAME): likewise. - (SQL_DESC_CONCISE_TYPE): likewise. - (SQL_DESC_DATETIME_INTERVAL_PRECISION): likewise. - (SQL_DESC_DISPLAY_SIZE): likewise. - (SQL_DESC_FIXED_PREC_SCALE): likewise. - (SQL_DESC_LABEL): likewise. - (SQL_DESC_LITERAL_PREFIX): likewise. - (SQL_DESC_LITERAL_SUFFIX): likewise. - (SQL_DESC_LOCAL_TYPE_NAME): likewise. - (SQL_DESC_MAXIMUM_SCALE): likewise. - (SQL_DESC_MINIMUM_SCALE): likewise. - (SQL_DESC_NUM_PREC_RADIX): likewise. - (SQL_DESC_PARAMETER_TYPE): likewise. - (SQL_DESC_ROWS_PROCESSED_PTR): likewise. - (SQL_DESC_SCHEMA_NAME): likewise. - (SQL_DESC_SEARCHABLE): likewise. - (SQL_DESC_TABLE_NAME): likewise. - (SQL_DESC_TYPE_NAME): likewise. - (SQL_DESC_UNSIGNED): likewise. - (SQL_DESC_UPDATABLE): likewise. - (SQL_DI_CREATE_INDEX): likewise. - (SQL_DI_DROP_INDEX): likewise. - (SQL_DIAG_COLUMN_NUMBER): likewise. - (SQL_DIAG_CURSOR_ROW_COUNT): likewise. - (SQL_DIAG_ROW_NUMBER): likewise. - (SQL_DL_SQL92_DATE): likewise. - (SQL_DL_SQL92_INTERVAL_DAY): likewise. - (SQL_DL_SQL92_INTERVAL_DAY_TO_HOUR): likewise. - (SQL_DL_SQL92_INTERVAL_DAY_TO_MINUTE): likewise. - (SQL_DL_SQL92_INTERVAL_DAY_TO_SECOND): likewise. - (SQL_DL_SQL92_INTERVAL_HOUR): likewise. - (SQL_DL_SQL92_INTERVAL_HOUR_TO_MINUTE): likewise. - (SQL_DL_SQL92_INTERVAL_HOUR_TO_SECOND): likewise. - (SQL_DL_SQL92_INTERVAL_MINUTE): likewise. - (SQL_DL_SQL92_INTERVAL_MINUTE_TO_SECOND): likewise. - (SQL_DL_SQL92_INTERVAL_MONTH): likewise. - (SQL_DL_SQL92_INTERVAL_SECOND): likewise. - (SQL_DL_SQL92_INTERVAL_YEAR): likewise. - (SQL_DL_SQL92_INTERVAL_YEAR_TO_MONTH): likewise. - (SQL_DL_SQL92_TIME): likewise. - (SQL_DL_SQL92_TIMESTAMP): likewise. - (SQL_DM_VER): likewise. - (SQL_DRIVER_HDESC): likewise. - (SQL_DROP_ASSERTION): likewise. - (SQL_DROP_CHARACTER_SET): likewise. - (SQL_DROP_COLLATION): likewise. - (SQL_DROP_DOMAIN): likewise. - (SQL_DROP_SCHEMA): likewise. - (SQL_DROP_TABLE): likewise. - (SQL_DROP_TRANSLATION): likewise. - (SQL_DROP_VIEW): likewise. - (SQL_DS_CASCADE): likewise. - (SQL_DS_DROP_SCHEMA): likewise. - (SQL_DS_RESTRICT): likewise. - (SQL_DT_CASCADE): likewise. - (SQL_DT_DROP_TABLE): likewise. - (SQL_DT_RESTRICT): likewise. - (SQL_DTC_DONE): likewise. - (SQL_DTR_DROP_TRANSLATION): likewise. - (SQL_DV_CASCADE): likewise. - (SQL_DV_DROP_VIEW): likewise. - (SQL_DV_RESTRICT): likewise. - (SQL_DYNAMIC_CURSOR_ATTRIBUTES1): likewise. - (SQL_DYNAMIC_CURSOR_ATTRIBUTES2): likewise. - (SQL_EXT_API_LAST): likewise. - (SQL_EXT_API_START): likewise. - (SQL_FETCH_BY_BOOKMARK): likewise. - (SQL_FETCH_FIRST_SYSTEM): likewise. - (SQL_FETCH_FIRST_USER): likewise. - (SQL_FN_CVT_CAST): likewise. - (SQL_FN_STR_BIT_LENGTH): likewise. - (SQL_FN_STR_CHAR_LENGTH): likewise. - (SQL_FN_STR_CHARACTER_LENGTH): likewise. - (SQL_FN_STR_OCTET_LENGTH): likewise. - (SQL_FN_STR_POSITION): likewise. - (SQL_FN_TD_CURRENT_DATE): likewise. - (SQL_FN_TD_CURRENT_TIME): likewise. - (SQL_FN_TD_CURRENT_TIMESTAMP): likewise. - (SQL_FN_TD_EXTRACT): likewise. - (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES1): likewise. - (SQL_FORWARD_ONLY_CURSOR_ATTRIBUTES2): likewise. - (SQL_FUNC_EXISTS(exists,api)): likewise. - (SQL_GB_COLLATE): likewise. - (SQL_HANDLE_SENV): likewise. - (SQL_IK_ALL): likewise. - (SQL_IK_ASC): likewise. - (SQL_IK_DESC): likewise. - (SQL_IK_NONE): likewise. - (SQL_INDEX_KEYWORDS): likewise. - (SQL_INFO_DRIVER_START): likewise. - (SQL_INFO_LAST): likewise. - (SQL_INFO_SCHEMA_VIEWS): likewise. - (SQL_INITIALLY_DEFERRED): likewise. - (SQL_INITIALLY_IMMEDIATE): likewise. - (SQL_INSERT_STATEMENT): likewise. - (SQL_INTERVAL): likewise. - (SQL_IS_INSERT_LITERALS): likewise. - (SQL_IS_INSERT_SEARCHED): likewise. - (SQL_IS_INTEGER): likewise. - (SQL_IS_POINTER): likewise. - (SQL_IS_SELECT_INTO): likewise. - (SQL_IS_SMALLINT): likewise. - (SQL_IS_UINTEGER): likewise. - (SQL_IS_USMALLINT): likewise. - (SQL_ISV_ASSERTIONS): likewise. - (SQL_ISV_CHARACTER_SETS): likewise. - (SQL_ISV_CHECK_CONSTRAINTS): likewise. - (SQL_ISV_COLLATIONS): likewise. - (SQL_ISV_COLUMN_DOMAIN_USAGE): likewise. - (SQL_ISV_COLUMN_PRIVILEGES): likewise. - (SQL_ISV_COLUMNS): likewise. - (SQL_ISV_CONSTRAINT_COLUMN_USAGE): likewise. - (SQL_ISV_CONSTRAINT_TABLE_USAGE): likewise. - (SQL_ISV_DOMAIN_CONSTRAINTS): likewise. - (SQL_ISV_DOMAINS): likewise. - (SQL_ISV_KEY_COLUMN_USAGE): likewise. - (SQL_ISV_REFERENTIAL_CONSTRAINTS): likewise. - (SQL_ISV_SCHEMATA): likewise. - (SQL_ISV_SQL_LANGUAGES): likewise. - (SQL_ISV_TABLE_CONSTRAINTS): likewise. - (SQL_ISV_TABLE_PRIVILEGES): likewise. - (SQL_ISV_TABLES): likewise. - (SQL_ISV_TRANSLATIONS): likewise. - (SQL_ISV_USAGE_PRIVILEGES): likewise. - (SQL_ISV_VIEW_COLUMN_USAGE): likewise. - (SQL_ISV_VIEW_TABLE_USAGE): likewise. - (SQL_ISV_VIEWS): likewise. - (SQL_KEYSET_CURSOR_ATTRIBUTES1): likewise. - (SQL_KEYSET_CURSOR_ATTRIBUTES2): likewise. - (SQL_MAX_ASYNC_CONCURRENT_STATEMENTS): likewise. - (SQL_NO_COLUMN_NUMBER): likewise. - (SQL_NO_ROW_NUMBER): likewise. - (SQL_NOT_DEFERRABLE): likewise. - (SQL_NUM_EXTENSIONS): likewise. - (SQL_NUM_FUNCTIONS): likewise. - (SQL_ODBC_INTERFACE_CONFORMANCE): likewise. - (SQL_OIC_CORE): likewise. - (SQL_OIC_LEVEL1): likewise. - (SQL_OIC_LEVEL2): likewise. - (SQL_OV_ODBC2): likewise. - (SQL_OV_ODBC3): likewise. - (SQL_PARAM_ARRAY_ROW_COUNTS): likewise. - (SQL_PARAM_ARRAY_SELECTS): likewise. - (SQL_PARAM_BIND_BY_COLUMN): likewise. - (SQL_PARAM_BIND_TYPE_DEFAULT): likewise. - (SQL_PARAM_DIAG_UNAVAILABLE): likewise. - (SQL_PARAM_ERROR): likewise. - (SQL_PARAM_IGNORE): likewise. - (SQL_PARAM_PROCEED): likewise. - (SQL_PARAM_SUCCESS): likewise. - (SQL_PARAM_SUCCESS_WITH_INFO): likewise. - (SQL_PARAM_UNUSED): likewise. - (SQL_PARC_BATCH): likewise. - (SQL_PARC_NO_BATCH): likewise. - (SQL_PAS_BATCH): likewise. - (SQL_PAS_NO_BATCH): likewise. - (SQL_PAS_NO_SELECT): likewise. - (SQL_ROW_IGNORE): likewise. - (SQL_ROW_NUMBER_UNKNOWN): likewise. - (SQL_ROW_PROCEED): likewise. - (SQL_ROW_SUCCESS_WITH_INFO): likewise. - (SQL_SC_FIPS127_2_TRANSITIONAL): likewise. - (SQL_SC_SQL92_ENTRY): likewise. - (SQL_SC_SQL92_FULL): likewise. - (SQL_SC_SQL92_INTERMEDIATE): likewise. - (SQL_SCC_ISO92_CLI): likewise. - (SQL_SCC_XOPEN_CLI_VERSION1): likewise. - (SQL_SCHEMA_TERM): likewise. - (SQL_SCHEMA_USAGE): likewise. - (SQL_SDF_CURRENT_DATE): likewise. - (SQL_SDF_CURRENT_TIME): likewise. - (SQL_SDF_CURRENT_TIMESTAMP): likewise. - (SQL_SFKD_CASCADE): likewise. - (SQL_SFKD_NO_ACTION): likewise. - (SQL_SFKD_SET_DEFAULT): likewise. - (SQL_SFKD_SET_NULL): likewise. - (SQL_SFKU_CASCADE): likewise. - (SQL_SFKU_NO_ACTION): likewise. - (SQL_SFKU_SET_DEFAULT): likewise. - (SQL_SFKU_SET_NULL): likewise. - (SQL_SG_DELETE_TABLE): likewise. - (SQL_SG_INSERT_COLUMN): likewise. - (SQL_SG_INSERT_TABLE): likewise. - (SQL_SG_REFERENCES_COLUMN): likewise. - (SQL_SG_REFERENCES_TABLE): likewise. - (SQL_SG_SELECT_TABLE): likewise. - (SQL_SG_UPDATE_COLUMN): likewise. - (SQL_SG_UPDATE_TABLE): likewise. - (SQL_SG_USAGE_ON_CHARACTER_SET): likewise. - (SQL_SG_USAGE_ON_COLLATION): likewise. - (SQL_SG_USAGE_ON_DOMAIN): likewise. - (SQL_SG_USAGE_ON_TRANSLATION): likewise. - (SQL_SG_WITH_GRANT_OPTION): likewise. - (SQL_SNVF_BIT_LENGTH): likewise. - (SQL_SNVF_CHAR_LENGTH): likewise. - (SQL_SNVF_CHARACTER_LENGTH): likewise. - (SQL_SNVF_EXTRACT): likewise. - (SQL_SNVF_OCTET_LENGTH): likewise. - (SQL_SNVF_POSITION): likewise. - (SQL_SP_BETWEEN): likewise. - (SQL_SP_COMPARISON): likewise. - (SQL_SP_EXISTS): likewise. - (SQL_SP_IN): likewise. - (SQL_SP_ISNOTNULL): likewise. - (SQL_SP_ISNULL): likewise. - (SQL_SP_LIKE): likewise. - (SQL_SP_MATCH_FULL): likewise. - (SQL_SP_MATCH_PARTIAL): likewise. - (SQL_SP_MATCH_UNIQUE_FULL): likewise. - (SQL_SP_MATCH_UNIQUE_PARTIAL): likewise. - (SQL_SP_OVERLAPS): likewise. - (SQL_SP_QUANTIFIED_COMPARISON): likewise. - (SQL_SP_UNIQUE): likewise. - (SQL_SQL_CONFORMANCE): likewise. - (SQL_SQL92_DATETIME_FUNCTIONS): likewise. - (SQL_SQL92_FOREIGN_KEY_DELETE_RULE): likewise. - (SQL_SQL92_FOREIGN_KEY_UPDATE_RULE): likewise. - (SQL_SQL92_GRANT): likewise. - (SQL_SQL92_NUMERIC_VALUE_FUNCTIONS): likewise. - (SQL_SQL92_PREDICATES): likewise. - (SQL_SQL92_RELATIONAL_JOIN_OPERATORS): likewise. - (SQL_SQL92_REVOKE): likewise. - (SQL_SQL92_ROW_VALUE_CONSTRUCTOR): likewise. - (SQL_SQL92_STRING_FUNCTIONS): likewise. - (SQL_SQL92_VALUE_EXPRESSIONS): likewise. - (SQL_SR_CASCADE): likewise. - (SQL_SR_DELETE_TABLE): likewise. - (SQL_SR_GRANT_OPTION_FOR): likewise. - (SQL_SR_INSERT_COLUMN): likewise. - (SQL_SR_INSERT_TABLE): likewise. - (SQL_SR_REFERENCES_COLUMN): likewise. - (SQL_SR_REFERENCES_TABLE): likewise. - (SQL_SR_RESTRICT): likewise. - (SQL_SR_SELECT_TABLE): likewise. - (SQL_SR_UPDATE_COLUMN): likewise. - (SQL_SR_UPDATE_TABLE): likewise. - (SQL_SR_USAGE_ON_CHARACTER_SET): likewise. - (SQL_SR_USAGE_ON_COLLATION): likewise. - (SQL_SR_USAGE_ON_DOMAIN): likewise. - (SQL_SR_USAGE_ON_TRANSLATION): likewise. - (SQL_SRJO_CORRESPONDING_CLAUSE): likewise. - (SQL_SRJO_CROSS_JOIN): likewise. - (SQL_SRJO_EXCEPT_JOIN): likewise. - (SQL_SRJO_FULL_OUTER_JOIN): likewise. - (SQL_SRJO_INNER_JOIN): likewise. - (SQL_SRJO_INTERSECT_JOIN): likewise. - (SQL_SRJO_LEFT_OUTER_JOIN): likewise. - (SQL_SRJO_NATURAL_JOIN): likewise. - (SQL_SRJO_RIGHT_OUTER_JOIN): likewise. - (SQL_SRJO_UNION_JOIN): likewise. - (SQL_SRVC_DEFAULT): likewise. - (SQL_SRVC_NULL): likewise. - (SQL_SRVC_ROW_SUBQUERY): likewise. - (SQL_SRVC_VALUE_EXPRESSION): likewise. - (SQL_SSF_CONVERT): likewise. - (SQL_SSF_LOWER): likewise. - (SQL_SSF_SUBSTRING): likewise. - (SQL_SSF_TRANSLATE): likewise. - (SQL_SSF_TRIM_BOTH): likewise. - (SQL_SSF_TRIM_LEADING): likewise. - (SQL_SSF_TRIM_TRAILING): likewise. - (SQL_SSF_UPPER): likewise. - (SQL_STANDARD_CLI_CONFORMANCE): likewise. - (SQL_STATIC_CURSOR_ATTRIBUTES1): likewise. - (SQL_STATIC_CURSOR_ATTRIBUTES2): likewise. - (SQL_SU_DML_STATEMENTS): likewise. - (SQL_SU_INDEX_DEFINITION): likewise. - (SQL_SU_PRIVILEGE_DEFINITION): likewise. - (SQL_SU_PROCEDURE_INVOCATION): likewise. - (SQL_SU_TABLE_DEFINITION): likewise. - (SQL_SVE_CASE): likewise. - (SQL_SVE_CAST): likewise. - (SQL_SVE_COALESCE): likewise. - (SQL_SVE_NULLIF): likewise. - (SQL_UB_FIXED): likewise. - (SQL_UB_VARIABLE): likewise. - (SQL_UNION_STATEMENT): likewise. - (SQL_UPDATE_BY_BOOKMARK): likewise. - (SQL_US_UNION): likewise. - (SQL_US_UNION_ALL): likewise. - (SQL_DESC_ROWVER): likewise. - (SQL_GUID): likewise. - (SQL_C_GUID): likewise. - (ODBC_STD): likewise. - (SQLAllocHandle): likewise. - (SQLAllocEnv(p)): likewise. - (SQL_YEAR): likewise. - (SQL_MONTH): likewise. - (SQL_DAY): likewise. - (SQL_HOUR): likewise. - (SQL_MINUTE): likewise. - (SQL_SECOND): likewise. - (SQL_YEAR_TO_MONTH): likewise. - (SQL_DAY_TO_HOUR): likewise. - (SQL_DAY_TO_MINUTE): likewise. - (SQL_DAY_TO_SECOND): likewise. - (SQL_HOUR_TO_MINUTE): likewise. - (SQL_HOUR_TO_SECOND): likewise. - (SQL_MINUTE_TO_SECOND): likewise. - (SQL_ATTR_ANSI_APP): likewise. - (SQL_AA_TRUE): likewise. - (SQL_AA_FALSE): likewise. - - * include/sqltypes.h (#pragma pack(push,1), #pragma pack(pop)): remove. - (struct tagSQL_YEAR_MONTH): add for ODBC3.x. - (struct tagSQL_DAY_SECOND): likewise. - (struct tagSQL_INTERVAL_STRUCT): likewise. - (struct tagSQL_NUMERIC_STRUCT): likewise. - (struct tagSQLGUID): add for 0DBC3.50. - (enum SQLINTERVAL): add for ODBC3.x. - (SQLWCHAR): add typedef. - (SQLTCHAR): add typedef, conditional on UNICODE. - (SQLLEN): add typedef for _WIN64, define for _WIN32. - (SQLULEN): likewise. - (SQLROWOFFSET): likewise. - (SQLROWCOUNT): likewise. - (SQLTRANSID): likewise. - (SQLSETPOSIROW): likewise. - (SQLHANDLE): add ODBC3.x typedef. - (SQLHDESC): likewise. - (SQLDATE): likewise. - (SQLDECIMAL): likewise. - (SQLDOUBLE): likewise. - (SQLFLOAT): likewise. - (SQLNUMERIC): likewise. - (SQLREAL): likewise. - (SQLTIME): likewise. - (SQLTIMESTAMP): likewise. - (SQLVARCHAR): likewise. - (SQLBIGINT): likewise. - (SQLUBIGINT): likewise. - (SQL_DATE_STRUCT): likewise. - (SQL_TIME_STRUCT): likewise. - (SQL_TIMESTAMP_STRUCT): likewise. - (ODBCINT64): add ODBC3.x define. - - * lib/odbc32.def : regenerate. - -Fri Jan 26 15:59:31 2001 Earnie Boyd <earnie@users.sourceforge.net - - * Apply Danny Smith patch 102275 - 2000-11-05 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - * include/objbase.h: (COM_RIGHTS): Add definition. - (tagSTDMSHLFLAGS): add enumeration. - (CoInitializeEx): Add prototypes. - (CoGetStdMarshalEx): ditto. - (CoCreateInstanceEx): ditto. - (CoInitializeSecurity): ditto. - (CoGetCallContext): ditto. - (CoQueryProxyBlanket): ditto. - (CoSetProxyBlanket): ditto. - (CoCopyProxy): ditto. - (CoQueryClientBlanket): ditto. - (CoImpersonateClient): ditto. - (CoRevertToSelf): ditto. - (CoQueryAuthenticationServices): ditto. - (CoSwitchCallContext): ditto. - (CoGetInstanceFromFile): ditto. - (CoGetInstanceFromIStorage): ditto. - * include/objidl.h: (SOLE_AUTHENTICATION_SERVICE): Add structure. - (SOLE_AUTHENTICATION_INFO): ditto. - (EOLE_AUTHENTICATION_CAPABILITIES): Add enumeration. - (COLE_DEFAULT_PRINCIPAL): Add definition. - (COLE_DEFAULT_AUTHINFO): Ditto. - * include/rpcdce.h: (RPC_C_AUTHZ_DEFAULT): Add definition. - (RPC_PROTSEQ_VECTOR) Fix typo. - (RpcRaiseException): add DECLSPEC_NORETURN attribute. - * include/winbase.h: (FreeLibraryAndExitThread): add DECLSPEC_NORETURN - attribute. - -Fri Jan 26 13:34:55 2001 Earnie Boyde <earnie@users.sourceforge.net> - - * lib/msvcp60.def: Apply Danny Smith patch 103321. - 2001-01-17 Danny Smith <danny_r_smith_2001@yahoo.co.nz>. - New file. - -Fri Jan 26 11:34:04 2001 Christopher Faylor <cgf@cygnus.com> - - * include/winnt.h: Add PTOKEN_USER. - -Tue Jan 16 13:53:30 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * include/sqlucode.h: Apply Danny Smith patch 102443 - 2000-11-20 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - New file. - -Tue Jan 16 13:36:45 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * lib/odbccp32.def: Apply Danny Smith patch 102442 - 2000-11-20 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - New file. - -Tue Jan 16 12:45:20 2001 Earnie Boyd <earnie@users.sourceforge.net> - - * include/odbcinst.h: Apply Danny Smith patch 102441 - 2000-11-20 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - New file. - -Mon Dec 25 12:22:19 2000 Christopher Faylor <cgf@cygnus.com> - - * lib/Makefile.in: Don't make "links" to include/w32api directory. - -Wed Dec 20 13:34:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h: Add prototype for SetSecurityDescriptorControl. - -Mon Dec 11 13:11:36 2000 Christopher Faylor <cgf@cygnus.com> - - * lib/Makefile.in: Install headers and libraries in tooldir. - -2000-12-04 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - - * include/winnls.h: NORM_IGNORE* remove duplicate defines. - SORT_STRINGSORT: ditto. - CMAP*: ditto. - CTRY_*: add new defines. - LGRPID_*: ditto. - LCMAP*: change defines to hex notation. - CALID: change from ULONG to DWORD. - CALTYPE: ditto. - _cpinfoex[AW]: add structure. - FoldString: correct Unicode mappings. - GetCPInfoEx[AW]: add prototypes. - EnumCalendarInfoEx[AW]: ditto. - EnumDateFormatsEx[AW]: ditto. - EnumSystemLanguageGroups[AW]: ditto. - EnumLanguageGroupLocales[AW]: ditto. - EnumUILanguages[AW]: ditto. - GetSystemDefaultUILanguage[AW]: ditto. - GetUserDefaultUILanguage[AW]: ditto. - IsValidLanguageGroup[AW]: ditto. - CALINFO_ENUMPROCEX[AW]: add function pointer typedef - LANGUAGEGROUP_ENUMPROC[AW]: ditto - LANGGROUPLOCALE_ENUMPROC[AW]: ditto - UILANGUAGE_ENUMPROC[AW]: ditto - DATEFMT_ENUMPROCEX[AW]: ditto - LPCURRENCYFMT[AW]: add structure pointer typedef - LPNUMBERFMT[AW]: ditto - -Sun Dec 02 14:21:02 2000 Matt Hargett <matt@use.net> - - * include/winbase.h: Added a define for INVALID_SET_FILE_POINTER, a - possible return code for the SetFilePointer() win32 API call. - -Mon Oct 9 11:49:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h: Add missing FILE_NAMED_STREAMS define. - -2000-11-06 Earnie Boyd <earnie_boyd@yahoo.com> - - * Makefile.in: increment VERSION. - (dist:) Rename to srcdist. Create new dist target to call - srcdist and bindist targets. - (srcdist:) New target. - (clean-top:) add call to mostlyclean-top and add rm of distribution - tarballs. - * lib/Makefile.in: (uninstall:) modify to remove files from the - new w32api subdirectory and to remove w32api subdirectory. - (xuninstall:) Ditto. - TODO: Add a task to redo the clean targets of Makefile.in - -Fri Nov 3 21:50:47 2000 Christopher Faylor <cgf@cygnus.com> - - * lib/Makefile.in: Install header files in w32api subdirectory. - -2000-10-31 Earnie Boyd <earnie_boyd@yahoo.com> - - * CONTRIBUTIONS: New file. - * README: Change the maintained by header. - * TODO: Add a note about checking the TODO. - -2000-10-31 Earnie Boyd <earnie_boyd@yahoo.com> - - * Merge in accepted changes from - 2000-10-23 Danny Smith <danny_r_smith_2001@yahoo.co.nz> - * include/basetyps.h: add comment for GUID_DEFINED - * include/lm.h: add includes for lmerr.h and lmserver.h - * include/lmcons.h: add W2K typedefs LMSTR, LMCSTR - * include/lmerr.h: add error codes - * include/lmserver.h: replace LPTSTR with LPWSTR, - LPTCSTR with LPWCSTR in structures and prototypes - * include/lmshare.h: ditto - * include/lmuse.h: ditto - * include/lmstats.h: ditto - * include/oleauto.h: add function prototype SystemTimeToVariantTime - * include/winbase.h: change first argument of CommConfigDialog to const - * include/windowsx.h: add macros defining FAR versions of - mem and string functions for porting from Win16 code - * include/winioctl.h: added IOCTL_STORAGE defines - * include/winnetwk.h: added WNNC_NET flags - * include/winnt.h: add include of <basetsd.h>; - add structs; add pointer typedefs for TOKEN structs - * include/winsock.h: add guard around BSD-ish typedefs - * include/wtypes.h: new VARENUM enums, new WIN32/WIN64 compat. macros - * include/basetsd.h: new file - * include/raserror.h: ditto - * include/rassapi.h: ditto - * include/ras.h: ditto - comment from Earnie: replaced original ras.h contribution with Danny's - contribution as it is more complete. - * include/rpcndr.h: add default definition for __RPCNDR_H_VERSION__ - -Mon Oct 19 13:55:00 2000 Earnie Boyd <earnie_boyd@yahoo.com> - - * Makefile.in: increment VERSION. Change tar file name for dist and - bindist targets to be more standard. - * config.guess: Update with the currently published file. - * config.sub: ditto. - * configure.in: Use value of build_alias instead of testing for - directory names to set BUILDENV. - * configure: ditto. - * lib/Makefile.in: Change the name of the targets install, - install-headers and install-libraries to xinstall, xinstall-headers - and xinstall-libraries for system target specified installation. - Recreate targets install, install-headers and install-libraries for - exec-prefix specified installation. Ditto for the uninstall targets of - the same name. - -Mon Oct 9 11:49:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/iprtrmib.h: Further layout changes according to standard. - * include/iptypes.h: Ditto. - * include/ntdef.h: Ditto. - * include/ntsecapi.h: Ditto. - * include/subauth.h: Ditto. - -Mon Oct 9 11:32:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/ntsecapi.h: Fix PLSA_UNICODE_STRING define. - -Sun Oct 8 18:26:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/ntsecapi.h: New file. - * include/subauth.h: Ditto. - * include/ipexport.h: Fix global header define not to contain - trailing underscore. Change layout according to standard. - * include/iphlpapi.h: Ditto. - * include/ipifcons.h: Ditto. - * include/iprtrmib.h: Ditto. - * include/iptypes.h: Ditto. - * include/ntdef.h: Ditto. Define conditional datatypes dependent - of inclusion of ntsecapi.h and subauth.h. - * lib/secur32.def: New stub for secur32.dll. - -Mon Oct 2 11:15:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/ras.h: New file. - * lib/rasapi32.def: Add symbols for RasEnumDevicesA and - RasEnumDevicesW. - -Mon Oct 2 10:56:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/ntdef.h: Add define for NTAPI. - -Sun Oct 1 23:55:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/ipexport.h: Add missing `extern "C"' directives. - * include/iphlpapi.h: Ditto. - * include/iprtrmib.h: Ditto. - * include/iptypes.h: Ditto. - -Sun Oct 1 22:09:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/ipifcons.h: New header file. - * include/iprtrmib.h: Move operational states to ipifcons.h. - * include/iphlpapi.h: Add missing parameters to GetIfTable() - declaration. - -Sun Oct 1 16:30:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/iprtrmib.h: Add missing MIB_IF_OPER_STATUS_xxx definitions. - -Sun Oct 1 16:13:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * lib/iphlpapi.def: New stub for iphlpapi.dll. - * include/iptypes.h: New header file. - * include/ipexport.h: Ditto. - * include/iphlpapi.h: Ditto. - * include/iprtrmib.h: Ditto. - -Sun Oct 1 2:54:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/ntdef.h: New file. - -Fri Aug 18 17:17:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h:Add enums for TokenRestrictedSids and TokenSessionId - to TOKEN_INFORMATION_CLASS type. - Add QUOTA_LIMITS type. - -Tue Aug 8 21:29:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/userenv.h: New header file. - * lib/userenv.def: New stub for userenv.dll. - -Tue Aug 8 10:25:14 2000 Christopher Faylor <cgf@cygnus.com> - - * include/winuser.h: Correct PCWPSTRUCT typo. - (discovered by Axel Riese) - -2000-07-27 DJ Delorie <dj@redhat.com> - - * include/windows.h: optimize non-inclusion of repeat headers - -Fri Jul 21 12:10:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h: Add missing typedefs for PTOKEN_SOURCE and - LPTOKEN_SOURCE. - -2000-07-11 DJ Delorie <dj@cygnus.com> - - * include/shlobj.h: add CSIDL_COMMON_* - -Tue Jun 27 19:35:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/winbase.h: Add stream ids BACKUP_OBJECT_ID, - BACKUP_REPARSE_DATA and BACKUP_SPARSE_BLOCK. - Add file open flags FILE_FLAG_OPEN_REPARSE_POINT and - FILE_FLAG_OPEN_NO_RECALL. - * winioctl.h: Add device io control codes FSCTL_GET_REPARSE_POINT, - FSCTL_SET_REPARSE_POINT and FSCTL_DELETE_REPARSE_POINT. - * winnt.h: Add typedef for GUID. - Add file attributes FILE_ATTRIBUTE_ENCRYPTED, - FILE_ATTRIBUTE_SPARSE_FILE, FILE_ATTRIBUTE_REPARSE_POINT and - FILE_ATTRIBUTE_NOT_CONTENT_INDEXED. - Add volume attributes FILE_VOLUME_QUOTAS, FILE_SUPPORTS_SPARSE_FILES, - FILE_SUPPORTS_REPARSE_POINTS, FILE_SUPPORTS_REMOTE_STORAGE, - FILE_SUPPORTS_OBJECT_IDS and FILE_SUPPORTS_ENCRYPTION. - Add several reparse point defines and typedefs for REPARSE_DATA_BUFFER, - REPARSE_GUID_DATA_BUFFER and REPARSE_POINT_INFORMATION. - * lib/psapi.def: New file. - -Thu Jun 22 14:36:19 2000 Christopher Faylor <cgf@cygnus.com> - - * rpcdce.h: Protect OPTIONAL definition since it may be (legally) - previously defined. - * windef.h : Ditto. - -2000-06-14 Kazuhiro Fujieda <fujieda@jaist.ac.jp> - - * include/winnt.h: Add some missing defines related to locale - identifiers. Translate values of LANG_* and SUBLANG_* into hexadecimal. - -Thu May 27 15:57:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/wincrypt.h: Add missing CRYPT_MACHINE_KEYSET define. - -Thu May 18 11:37:00 2000 Corinna Vinschen <corinna@vinschen.de> - - * include/winnt.h: Add some missing TAPE_DRIVE_* defines. - -Wed Apr 26 11:04:18 2000 Christopher Faylor <cgf@cygnus.com> - - * include/wininet.h: Add another "INTERNET_OPTIONS". - -2000-04-25 Mumit Khan <khan@xraylith.wisc.edu> - - * include/winspool.h: Add 2 more PRINTER_ATTRIBUTE_* macros. - -2000-04-25 Martin Kotulla <martin-k@softmaker.de> - - * include/ddeml.h (DdeCreateStringHandle{A,W}): Fix prototype. - * include/shlobj.h (IShellLink{A,W}::GetPath): Fix prototype. - * include/wingdi.h: Add LPFNDEVMODE and LPFNDEVCAPS callbacks. - * include/winuser.h: Add WM_* macros. Add PCOPYDATASTRUCT typedef. - -Mon Apr 10 22:58:25 2000 Christopher Faylor <cgf@cygnus.com> - - * include/winbase.h: Change first argument of ENUMRES* types to - coincide with Microsoft usage. - -Sat Apr 1 20:51:47 2000 Christopher Faylor <cgf@cygnus.com> - - * include/wininet.h: Add three more "INTERNET_OPTIONS". - -2000-03-30 Mumit Khan <khan@xraylith.wisc.edu> - - * include/winbase.h (CreateHardLink{A,W}): Add prototypes. - * include/winerror.h (ERROR_TOO_MANY_LINKS): Add macro. - * include/winnt.h (SEC_*): Add macros. - * lib/th32.def: Use Kernel32.dll instead of TH32.DLL. - * include/ole.h: Workaround for C++ parser bug. - * include/rpcdcep.h: Likewise. - * include/winsock.h: Likewise. - -Sun Mar 26 13:41:47 2000 Christopher Faylor <cgf@cygnus.com> - - * include/winnt.h: Eliminate duplicate PCONTEXT and LPCONTEXT typedefs. - -2000-02-28 Mumit Khan <khan@xraylith.wisc.edu> - - Patches from Jan Nijtmans <j.nijtmans@chello.nl>: - * include/wtypes.h (PBLOB, LPBLOB): Define. - * include/winsock2.h: Much more complete version. - (FD_SET, SOMAXCONN): Protect common macros defined by winsock.h. - - Patches from Jan Nijtmans <j.nijtmans@chello.nl>: - * include/winsock.h (FD_CLR): Add missing ')'. - (timercmp): Fix macro to handle all 6 comparison operators. - (AF_FIREFOX, AF_UNKNOWN1, AF_BAN, AF_ATM, AF_INET6): Define. - (AF_MAX): Update. - (PF_FIREFOX, PF_UNKNOWN1, PF_BAN, PF_ATM, PF_INET6): Define. - - * include/largeint.h: Rename HAVE_INT64 macro to _HAVE_INT64 to avoid - namespace pollution. - * include/rpcndr.h: Likewise. - * include/winnt.h: Likewise. - * include/shlobj.h (SHGetDataFromIDList{A,W}): Fix typo. - (SHGetSpecialFolderPath{A,W}): Add prototypes. - * lib/ole32.def: Add missing exports. - * include/winbase.h (TLS_MINIMUM_AVAILABLE): Move macro from here - * include/winnt.h (TLS_MINIMUM_AVAILABLE): to here. - (NT_TIB): Define. - * include/tlhelp32.h: New file. - -Mon Feb 28 17:08:03 2000 Christopher Faylor <cgf@cygnus.com> - - * include/rapi.h: New file. - * lib/rapi.def: New file. - -2000-02-11 Axel Riese <ariese@andromeda.risc.uni-linz.ac.at> - - * oaidl.h (LPTYPECOMP): Remove multiple definition. - -2000-02-03 Mumit Khan <khan@xraylith.wisc.edu> - - * Snapshot 2000-02-03. - -2000-01-21 Chris Faylor <cgf@cygnus.com> - - * include/winnt.h: Add ARM support. - -2000-01-19 Mumit Khan <khan@xraylith.wisc.edu> - - From Greg Primes <gregory.l.priem@intel.com>: - * include/oaidl.h (DESCKIND): Define macro. - (ITypeComp): Define interface. - (ITypeComp): Likewise. - * rpcndr.h (DECLSPEC_UUID): Define macro. - (MIDL_INTERFACE): Likewise. - - * include/psapi.h: New file. - * include/imagehlp.h: New file. - * lib/imagehlp.def: New file. - - * include/oaidl.h (tagVARIANT): Update fields. - - From Craig Lanning <CraigL@DyCon.com>: - * include/commctrl.h: Add some TCS_* macros. - * include/winnls.h (IsValidLocale): Add prototype. - -2000-01-18 Mumit Khan <khan@xraylith.wisc.edu> - - * include/oaidl.h: OLE Patches from "Fifer, Eric" - <EFifer@sanwaint.com> needed to build Win32::OLE perl module. - * include/objbase.h: Likewise. - * include/objidl.h: Likewise. - * include/ocidl.h: New file. - * include/oleauto.h: Likewise. - * include/wtypes.h: Likewise. - * lib/oleaut32.def: Likewise. - - * include/lmserver.h (NetServerTransportAddEx): Fix prototype. - Thanks to "Jon Leichter" <jon@symas.com>. - * include/commctrl.h (LVM_FINDITEM): Fix typo in macro. - * include/winbase.h: Add GetLongPathName{A,W} prototypes. - * include/shellapi.h (SHGetFileInfo): Add macro. Thanks to - "Axel Riese" <ariese@andromeda.risc.uni-linz.ac.at>. - (CommandLineToArgvW): Fix prototype. Thanks to "Frans E. van - Dorsselaer" <frans@bia-bv.demon.nl>. - * include/httpext.h: New file. Thanks to Jan Nijtmans - <j.nijtmans@chello.nl>. - * include/mmsystem.h (WAVEFORMATEX): Guard definition to avoid - redefinition of LPCWAVEFORMATEX in DirectX headers. - (CALLBACK_NULL): Define to be 0. Thanks to Krzysztof Nikiel - <krzych00@priv7.onet.pl>. - * include/sqlext.h (SQLDriverConnnect): Fix prototype. - * include/windef.h (HRESULT): Guard definition to avoid - redefinition in DirectX headers. - * include/winnt.h: Add target macros from windows.h. - * include/windows.h: Update synch comment for target macros. - (_ANONYMOUS_STRUCT): Define for GCC 2.95 and newer. - (_ANONYMOUS_UNION): Likewise. - * include/wingdi.h (AbortPrinter): Move from here ... - * include/winspool.h (AbortPrinter): to here and fix linkage. - (MONITOR_INFO_2{A,W}): Define. - * include/winsock.h (htons): Fix argument. - (htonl): Likewise. - * include/winsock2.h (SO_*, MAX_*, WSA_*): Add macros. - (GROUP): Define. - (GUID): Define conditionally. - (WSAPROTOCOLCHAIN, WSAPROTOCOL_INFO): Define. - (WSASocket*): Declare. - * include/basetyps.h (GUID): Guard REGUID and LPGUID as well. - - * lib/dsetup.def: Remove leading underscore. - * lib/dsound.def: Likewise. - * lib/ws2_32.def: Likewise. - -Wed Dec 22 02:53:22 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * include/windef.h (HMONITOR, HTERMINAL, HWINEVENTHOOK): Define - handles. - - * lib/Makefile.in (EXTRA_OBJS): Add dinput.o. - * lib/dinput.c: Include windows.h for GCC. - * lib/dxguid.c: Likewise. - (INITGUID): Define macro. - - * include/objidl.h (ISequentialStream): Define interface. - (IStream): Derive from ISequentialStream. - - * include/objidl.h (IStream::{LockRegion, UnlockRegion, Stat, - Clone}): Mark as PURE. - (IDataObject::EnumDAdvise): Likewise. - * include/oleidl.h (IDropSource::GiveFeedback): Likewise. - (IViewObject::Unfreeze): Likewise. - (IViewObject2::Unfreeze): Likewise. - - * include/objidl.h: Add various IID_ declarations. - * include/olectl.h: Likewise. - * include/oleidl.h: Likewise. - -Tue Dec 21 02:22:14 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * Snapshot 1999-12-21. - - * include/winbase.h (CancelIO): Rename to CancelIo. - * include/winsvc.h (LPHANDLER_FUNCTION): Fix prototype. - * include/winuser.h (PEVENTMSG, LPEVENTMSG): Declare. - - * Merge with winsup-19991218. - * include/winnt.h: Add defines for W2K ACL control flags. - - * Merge with Anders Norlander's 19991130 snapshot. - - * include/windows.h: #include mmsystem.h ifndef WIN32_LEAN_AND_MEAN. - * include/winbase.h (EXCEPTION_INVALID_HANDLE): Define. - - Patch from Harold Weissfield - * include/shellapi.h: Added some ABN_* defines. - - * include/commctrl.h (_TrackMouseEvent): Add prototype. - * lib/comctl32.def (_TrackMouseEvent): Import. - * include/winuser.h: Misc. fixes from Sang Cho - <sangcho@alpha94.chongju.ac.kr>. - * include/winuser.h (SM_CMETRICS): Define to 76 or 83 depending on - value of _WIN32_WINNT. - * include/winuser.h: Reorganize SM_* defines in numerical order. - -Tue Dec 14 21:58:03 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * include/windef.h: Make RECTL a distinct type from RECT. - * include/windows.h: Define upto 8 DUMMYUNIONNAMEs for DirectX. - * include/winuser.h (CDS_): Update (Franco Bez <franco.bez@gmx.de>). - (COMPAREITEMSTRUCT): Fix fields. - (SERIALKEYSA): Likewise. - (SERIALKEYSW): Likewise.. - * include/winbase.h (CRITICAL_SECTION_DEBUG): Likewise. - (WIN32_FIND_DATAA): Likewise. - (WIN32_FIND_DATAW): Likewise. - * include/commdlg.h (SNDMSG): Define. - * include/winsock.h (SO_UPDATE_ACCEPT_CONTEXT): Define. - (SO_CONNECT_TIME): Likewise. - (AcceptEx): Declare. - (GetAcceptExSockaddrs): Likewise. - * include/winsock2.h: Fix typo in #ifdef __cplusplus. - * include/winspool.h: Add RC_INVOKED guard. - * lib/wsock32.def (AcceptEx@32): Export. - (GetAcceptExSockaddrs@32): Likewise. - -Thu Nov 18 00:12:43 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * Snapshot 1999-11-18. - - * include/oaidl.h (tagVARIANT): Rename pbool to pboolVal needed by - Octopod C++ IDE (and MSVC compatibility). - * include/oleauto.h (V_BOOLREF(X)): Likewise. - * include/shellapi.h (ShellAbout*): Fix typo. - * wingdi.h (FW_ULTRABOLD): Likewise. - * include/winnt.h (_TAPE_ERASE, _TAPE_PREPARE, _TAPE_SET_POSITION, - _TAPE_WRITE_MARKS): Add missing fields and fix existing ones. - Add packing directives for various structures. All structure - sizes now conform to MSVC. - -Sun Nov 7 02:50:09 1999 Mumit Khan <khan@xraylith.wisc.edu> - - Released 1999-11-07. - -Sat Nov 6 21:25:48 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * include/winsock2.h: New file. Mostly a stub for now. - * include/winbase.h (DllMain): Delete prototype. - * include/commctrl.h (Header_SetItem): Fix macro. - * include/{isguids.h, lmerrlog.h, mcx.h, objfwd.h, olectl.h, - regstr.h, richole.h, rpcdce.h, rpcdcep.h, rpcnsi.h, rpcproxy.h, - shlguid.h, sqltypes.h, winperf.h}: Enclose in extern "C" if c++. - - Merge in changes from wxWindows. - * include/basetyps.h (GUID_DEFINED, UUID_DEFINED): Add guards. - * include/oaidl.h (DISPID_*): Add macros. - (IID_ITypeLib, IID_ICreateTypeInfo, IID_ICreateTypeInfo2, - IID_ICreateTypeLib, IID_ICreateTypeLib2, IID_ITypeInfo, - IID_IErrorInfo, IID_IDispatch, IID_ICreateErrorInfo): Declare. - * include/objidl.h (IDataObject): Fix EnumFormatEtc parameter. - - Merge in changes from Octopod C++ IDE group. - * include/commctrl.h (NMHEADERA, NMHEADERW): Define. - (Header_InsertItem): Fix macro. - * include/oaidl.h (IID_IDispatch): Declare. - (IID_ISupportErrorInfo): Likewise. - (IDispatch): Rename Invoked to Invoke. - * include/objidl.h (IPersist): Fix GetClassID. - * include/oleauto.h (VectorFromBstr): Declare. - (BstrFromVector): Likewise. - * include/olectl.h (OLEMISC_*): Update. - * include/olectlid.h (IID_IDispatch): Declare. - * include/oleidl.h (IOleObject): Fix GetExtent and SetExtent. - (IOleInPlaceFrame): Fix. - (ISupportErrorInfo): Define. - (IErrorInfo): Define. - * include/winuser.h (SIF_TRACKPOS): Define. - -Wed Nov 3 19:34:12 1999 Mumit Khan <khan@xraylith.wisc.edu> - - Fix Merge errors: - * include/winnt.h (PSID): Uncomment definition. - (PISID): Rename from PSID. - (struct _TAPE_GET_MEDIA_PARAMETER): Remove reserved field. - (struct _SECURITY_ATTRIBUTES): Remove multiple definition. - - * include/lmalert.h, include/lmbrowsr.h, include/lmchdev.h, - include/lmconfig.h, include/lmerrlog.h, include/lmmsg.h, - include/lmremutl.h, include/lmrepl.h, include/lmserver.h, - include/lmsvc.h, include/lmwksta.h, include/oaidl.h, - include/shellapi.h, include/winbase.h, include/wingdi.h, - include/winnt.h, include/winsock.h: Merged with winsup-19991026. - -Sun Oct 31 00:23:50 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * include/wingdi.h (PHYSICAL*, SCALINGFACTOR*): New. From - Marius Kjeldahl <kjeldahl@hotmail.com>. - -Sun Aug 29 18:07:42 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * include/winnt.h (APPLICATION_ERROR_MASK): Add macros. - (ERROR_SEVERITY_*): Likewise. - -Tue Aug 17 21:05:21 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * include/winbase.h (TLS_OUT_OF_INDEXES): Add macro. - (DllMain): Fix prototype. - -Mon Aug 2 23:31:30 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * include/commdlg.h: Enclose within pack(push,1) and pack(pop). - (cderr.h): Don't include. - * include/winuser.h: Fix macro definitions. - -Mon Aug 02 14:31:37 1999 Anders Norlander <anorland@hem2.passagen.se> - - Merge with winsup 1999-07-29: - * include/wincon.h (MOUSE_WHEELED): Define. - * include/winnt.h (PSECURITY_ATTRIBUTES): Add type. - (SECURITY_DESCRIPTOR): Add struct type. - (PSECURITY_DESCRIPTOR): Pointer to above type. BEWARE: this type - is equal to PVOID in the Platform SDK! So don't depend on accessing - members through ->. - -Mon Aug 02 13:58:52 1999 Anders Norlander <anorland@hem2.passagen.se> - - * lib/Makefile.in (install-headers): Don't @ commands. - (install-libraries): Ditto. - -Mon Aug 02 13:49:01 1999 Anders Norlander <anorland@hem2.passagen.se> - - * include/sqlext.h: Use #include <sql.h> instead of "sql.h". - -Mon Aug 02 13:47:15 1999 Anders Norlander <anorland@hem2.passagen.se> - - Patch from Mumit Khan: - * include/windows.h: Fix typo in winsock.h include guard and add - _UWIN to the list. - * include/winnt.h (__int64): Undefine first. - (struct _SID): Declare. - -Mon Aug 02 13:40:28 1999 Anders Norlander <anorland@hem2.passagen.se> - - * include/winnt.h: Add some REG_* defines reported by Boris Lantrewitz. - -Mon Aug 02 13:33:11 1999 Anders Norlander <anorland@hem2.passagen.se> - - Patch from Mumit Khan: - * Makefile.in: Do the right thing when cross-compiling. - * include/windef.h: Don't define _export and __export if already - defined. - -Mon Aug 02 13:24:43 1999 Anders Norlander <anorland@hem2.passagen.se> - - * include/basetyps.h (DECLARE_INTERFACE): Use com_interface attribute. - (DECLARE_INTERFACE_): Ditto. - -Mon Aug 02 13:17:26 1999 Anders Norlander <anorland@hem2.passagen.se> - - * include/mmsystem.h (HWAVEOUT): Fix missing ')' - - Reported by Brad Porter - * include/wingdi.h (FW_ULTRALIGHT): Add. - (FW_DEMIBOLD): Add. - (FW_ULTRABOLD): Add. - (FW_BLACK): Add. - (JOHAB_CHARSET): Add. - (VIETNAMESE_CHARSET): Add. - - -1999-05-15 Anders Norlander <anorland@hem2.passagen.se> - - * lib/scrnsave.c (WinMain): Remove dependencies on C library. - * lib/Makefile.in (Makefile): Regenerate. - * include/pshpack[1248].h: New files, if a program would use any of - them. - * include/poppack.h: Ditto. - * include/windef.h (_WIN32_WINNT): Define - * include/windows.h: Remove DUMMYUNIONNAME[45]. - * include/windows.h: Correctly define _M_IX86 to reflect the target - processor. - * include/windows.h: Add preliminary support for other architectures. - * include/winnt.h: Add CONTEXT structure for PPC and ALPHA. - * include/winnt.h: Remove PACKED from U/LARGE_INTEGER - * include/winnt.h (LUID_AND_ATTRIBUTES): Use pack(4) to solve alignment - issue with LARGE_INTEGER. - (ANSI_NULL): Define. - (PSZ): Define. - (ACL_REVISION[1234]): Define. - (MIN/MAX_ACL_REVISION): Define. - (PTCHAR): Define. - (LANG_USER_DEFAULT): Define. - (LANG_SYSTEM_DEFAULT): Define. - (LOCALE_NEUTRAL): Define. - (SORTVERSIONFROMLCID): Define. - * include/windef.h (UNREFERENCED_PARAMETER): Define. - (UNREFERENCED_LOCAL_VARIABLE): Define. - (DBG_UNREFERENCED_PARAMETER): Define. - (DBG_UNREFERENCED_LOCAL_VARIABLE): Define. - * lib/mswsock.def: New file. Imports for mswsock.dll. - * include/custcntl.h: New file. Necessary to compile some SDK - samples. - * include/winuser.h (SM_MOUSEWHEELPRESENT): Define. - (WM_MOUSEWHEEL): Define. - (WHEEL_DELTA): Define. - (WM_MOUSELAST): Redefine to reflect WM_MOUSEWHEEL. - (WM_NEXTMENU): Define. - (CharNextA): Fix prototype. - (CharNextW): Ditto. - -1999-05-14 Anders Norlander <anorland@hem2.passagen.se> - - * include/winsock.h: Enclose in extern "C" if C++, huh? - * include/winuser.h(WM_SYNCPAINT): Define. From fltk. - -1999-05-13 Anders Norlander <anorland@hem2.passagen.se> - - * include/windef.h (NULL): Define only ifndef - (TRUE): Ditto, was previously only defined ifndef FALSE - (PASCAL): Define as _pascal - (__pascal): Define - (WINAPIV): Define - (min,max): Define only ifndef NOMINMAX - -1999-05-10 Anders Norlander <anorland@hem2.passagen.se> - - * include/commctrl.h: Support for Date/Calendar controls + IE controls. - You must define _WIN32_IE if you want support for it. - Modified patch from Nirmal Prasad <nprasad@truept.com>. - -1999-05-10 Ron Aaron <v-ronaar@Exchange.Microsoft.com> - - * include/wincon.h: Add some ButtonState flags and EventFlags. - -1999-05-10 Anders Norlander <anorland@hem2.passagen.se> - - * include/basetyps.h: Don't support COM when __OBJC__ defined because - interface define causes mayhem. - (DEFINE_INTERFACE): Use comobject attribute only if HAVE_COMOBJECT is - defined. - * include/windows.h: Undefine BOOL if __OBJC__ defined - -1999-05-09 Chris Faylor <cgf@cygnus.com> - - * include/winnls.h: Define additional code pages. - -1999-05-09 Anders Norlander <anorland@hem2.passagen.se> - - * include/winbase.h(RtlFillMemory): Parameters got passed in wrong - order, corrected. - (RtlZeroMemory): Use RtlFillMemory - -1999-05-04 Anders Norlander <anorland@hem2.passagen.se> - - * include/winnt.h: Add PACKED to LARGE_INTEGER and ULARGE_INTEGER - to get the correct size when used in some structs. - (ULARGE_INTEGER): Ditto. - * include/winnt.h (TAPE_CREATE_PARTITION): Add struct. - * include/winnt.h: Add TAPE_* pointer types PTAPE_* - -1999-05-02 Nirmal Prasad <nprasad@truept.com> - - * include/wininet.h: Enclose in extern "C" if c++ - (INTERNET_BUFFERSA/W): Define struct - * include/wininet.h: Add some HSR_* defines - -1999-05-02 Anders Norlander <anorland@hem2.passagen.se> - - * include/winnt.h (IMAGE_FIRST_SECTION): Prepend missing paren - * include/winnt.h (UNALIGNED): Define - * include/windef.h (DECLSPEC_NORETURN): Define - - * include/wininet.h (INTERNET_MAX_NAME): Remove - (INTERNET_MAX_SCHEME_LENGTH): Define - (INTERNET_MAX_URL_LENGTH): Use INTERNET_MAX_SCHEME_LENGTH - * include/wininet.def: Completely redone, it was losing badly. - -1999-05-01 Anders Norlander <anorland@hem2.passagen.se> - - * lib/dplayx.def: Remove '_' prefixes - * lib/shell32.def: Remove imports for IID_ContextMenu - -1999-04-29 Anders Norlander <anorland@hem2.passagen.se> - - * Makefile.in (dist): Support dist target - * lib/Makefile.in (dist): Likewise - * lib/Makefile.in (uninstall-headers): Fix command - * Makefile.in (bindist): Target to build a prebuilt dist - - * lib/ws2_32.def: Winsock2 implib - - * include/largeint.h: New header - * include/largeint.c: Large integer support library - * lib/Makefile.in(EXTRA_LIBS): Add liblargeint.a - (EXTRA_OBJS): Add largeint.o - - * include/Makefile: Remove - * lib/Makefile: Remove - * Makefile: Remove - * configure.in: New autoconf script - * configure: generated configure script - * Makefile.in: autoconf makefile template - * lib/Makefile.in: Ditto - * include/test.c: mv to lib/test.c - * include/res.rc: mv to lib/res.rc - * include/TODO: mv to . - * include/Notes: mv to ./NOTES - -1999-04-28 Anders Norlander <anorland@hem2.passagen.se> - - * include/zmouse.h (WHEEL_DELTA): Define - -Mon Apr 26 16:36:49 1999 Mumit Khan <khan@xraylith.wisc.edu> - - * include/ddeml.h (HSZPAIR): Declare. - * include/zmouse.h: New file. - -1999-04-27 Daniel Guerrero Miralles <daniel.guerrero@upcnet.upc.es> - - * lib/d3dim.def: New implib - * lib/d3drm.def: Ditto - * lib/d3dxof.def: Ditto - * lib/ddraw.def: Ditto - * lib/dinput.def: Ditto - * lib/dplayx.def: Ditto - * lib/dsetup.def: Ditto - * lib/dsound.def: Ditto - * lib/dinput.c: Guid library for DirectInput - * lib/dxguid.c: Guid library for DirectX - -1999-04-21 Anders Norlander <anorland@hem2.passagen.se> - - * include/windowsx.h (GET_X_LPARAM): Missing macro added (reported - by Ron Aaron). - * include/windowsx.h (GET_Y_LPARAM): Also missing - * include/winnls.h (IsValidCodePage): Missing prototype added (reported - by Mumit Khan). - -1999-04-18 Anders Norlander <anorland@hem2.passagen.se> - - * include/scrnsave.h: New header file for screen saver library - * lib/scrnsave.c: New file: screen saver library - -1999-04-17 Anders Norlander <anorland@hem2.passagen.se> - - * include/regstr.h: Enclosed all strings in TEXT() macros so it - works well in when UNICODE is defined - -1999-04-17 Nirmal Prasad <nprasad@truept.com> - - * include/winuser.h(STYLESTRUCT): New struct - * include/wingdi.h:(GOBJENUMPROC): This function type should - return void. - -1999-04-17 Anders Norlander <anorland@hem2.passagen.se> - - * include/basetyps.h (LPGUID): New typedef - * lib/glut.def: Import library defintions for glut.dll - * lib/glu32.def: Ditto for glut32.dll - * include/winnt.h: Fixed handling of wchar_t typedef - * include/sql.h(SQL_NO_DATA_FOUND): Replace with SQL_NO_DATA - * include/sqlext.h(SQL_NO_DATA_FOUND): Define as SQL_NO_DATA - -1999-03-20 Anders Norlander <anorland@hem2.passagen.se> - - * include/winbase.h(AbnormalTermination): Define as FALSE - * include/commctrl.h: Support for new progress bar messages/styles - -1999-03-20 Geoffrey Noer <noer@cygnus.com> - - * include/commdlg.h(PageSetupDlg): New define - * include/richedit.h: Missing SCF_* defines - * include/winnt.h: Lots o' defines - * include/winbase.h(AllocateAndInitializeSid): Corrected prototype - -1999-03-09 Anders Norlander <anorland@hem2.passagen.se> - - * include/commdlg.h: Removed pack pragma - * lib/comctl32.def(InitCommonControlsEx@4): Added import - -1999-03-08 Anders Norlander <anorland@hem2.passagen.se> - - * Makefile: Set version to 0.1.5 - * lib/Makefile (clean): Fix typo - - * include/commctrl.h: Removed pack pragma - * include/cpl.h: Likewise - * include/dbt.h: Likewise - * include/dde.h: Likewise - * include/nddeapi.h: Likewise - * include/shellapi.h: Likewise - * include/wincrypt.h: Likewise - * include/lmaccess.h: Fixed USER_PRIV_ADMIN typo - - * include/winsock.h (netent): Define only ifndef __INSIDE_CYGWIN__ - (servent): Likewise - (protoent): Likewise - - * include/windows.h: Prevent inclusion of winsock.h if we are - using or compiling cygwin. Define Win32_Winsock to force inclusion. - -1999-01-08 Anders Norlander <anorland@hem2.passagen.se> - - * include/winbase.h (CREATE_FORCEDOS): New define - -1999-01-07 Anders Norlander <anorland@hem2.passagen.se> - - * include/wincon.h(KEY_EVENT_RECORD): Fixed packing problem on - (COORD): Likewise - * include/wingdi.h (BITMAPFILEHEADER): Fixed packing - * include/windows.h: Added DUMMYUNIONNAME4 and 5 - * include/winnt.h (LUID_AND_ATTRIBUTES_ARRAY): New type - (PLUID_AND_ATTRIBUTES_ARRAY): New type - - * include/ddeml.h: Removed unnecessary `#pragma pack' - * include/imm.h: Likewise - * include/nddeapi.h: Likewise - * include/nspapi.h: Likewise - * include/regstr.h: Likewise - * include/wincon.h: Likewise - * include/windef.h: Likewise - * include/winioctl.h: Likewise - * include/winnls.h: Likewise - * include/winsvc.h: Likewise - * include/winuser.h: Likewise - * include/winver.h: Likewise - * include/wtypes.h: Likewise - -1999-01-05 Anders Norlander <anorland@hem2.passagen.se> - - * Makefile (VERSION): Set to 0.1.4 - * include/basetyps.h: Check for NOCOMOBJECT - * include/Makefile: Pass -DNOCOMOBJECT to g++ to avoid warnings - on comobject attribute. - * lib/kernel32.def: Added a few functions - * include/windef.h (DWORD): Changed back to unsigned long - - * include/windows.h: Include only winresrc.h if RC_INVOKED is defined, - winresrc.h in turn includes the necessary headers. This makes things - much simpler, no need to protect blocks of code in headers that - should not be seen by the resource compiler. - -1999-01-05 Geoffrey Noer <noer@cygnus.com> - - * include/winbase.h (STATUS_INVALID_HANDLE): Added define - * include/wincon.h: Added console event type flags - * include/winnt.h (FILE_SHARE_DELETE): Added - (SECURITY_DESCRIPTOR): typedef as DWORD - - * include/winuser.h (WM_PENWINFIRST): Fixed typo - * include/winsock.h: Protect some blocks with __INSIDE_CYGWIN_ and - define u_* types only if _SYS_TYPES_H is not defined. - -1999-01-02 Anders Norlander <anorland@hem2.passagen.se> - - * COPYING.LIB: Deleted - * README: Updated to reflect license changes - * include/shlobj.h: Remove extra comma on some enums - * include/windef.h: Changed DWORD typedef from unsigned long to - unsigned int in order to avoid warnings on bit fields that - use DWORD. - * include/Makefile (test): Compile with all warnings - * include/unknwn.h: Include objfwd.h - * include/winsock.h: Added missing copyright notices. - -1999-01-01 Anders Norlander <anorland@hem2.passagen.se> - - * lib/winmm.def: Corrected LIBRARY statement - * include/mmsystem.h: Define mmioSeek codes if not already defined - * include/commctrl.h (CreateStatusWindowA): Corrected prototype - (CreateStatusWindowW): Likewise - - * include/winresrc.h: Include only files necessary instead of windows.h - * include/dde.h: Allow inclusion in resource scripts. - * include/winnt.h: Likewise - * include/commctrl.h: Likewise - * include/prsht.h: Likewise - * README: Updated - -1998-12-10 Anders Norlander <anorland@hem2.passagen.se> - - * include/sqltypes.h (SQLHANDLE): Added this type - (SQLHDESC): Likewise - * include/sql.h (SQLFreeHandle): Added this prototype - (SQLAllocHandle): Likewise - -1998-12-08 Anders Norlander <anorland@hem2.passagen.se> - - * include/winsock.h: Define _GNU_H_WINDOWS32_SOCKETS to avoid - conflicts with cygwin headers. - -1998-12-06 Anders Norlander <anorland@hem2.passagen.se> - - * Makefile: Changed VERSION to 0.1.3 - * Makefile (dist-lib): New target to make import library only - distribution - * Makefile (dist-hdr): New target to make headers only distribution - * Makefile (dist): Now depends on dist-lib and dist-hdr instead of - building one single distribution file. - * dist.mak: Deleted - - * include/lm.h: New file - * include/lmcons.h: New file - * include/lmalert.h: New file - * include/lmaudit.h: New file - * include/lmconfig.h: New file - * include/lmapibuf.h: New file - * include/lmaccess.h: New file - * include/lmchdev.h: New file - * include/lmremutl.h: New file - * include/lmrepl.h: New file - * include/lmerrlog.h: New file - * include/lmat.h: New file - * include/lmuse.h: New file - * include/lmuseflg.h: New file - * include/lmserver.h: New file - * include/lmerr.h: New file - * include/lmsname.h: New file - * include/lmstats.h: New file - * include/lmsvc.h: New file - * include/lmwksta.h: New file - * include/lmbrowsr.h: New file - -1998-12-05 Anders Norlander <anorland@hem2.passagen.se> - - * include/unknwn.h: Fixed IClassFactory declaration; INTERFACE was missing - * include/unknwn.h: Added extern declaration for IID_IClassFactory - - * include/initguid.h: New file - - * include/rpcndr.h: Defined hyper and MIDL_hyper as double if 64 bit - int not supported - - * include/winnt.h: Added USN - * include/winnt.h: Changed handling of 64 bit int support - - * include/windows.h: Added support for BC,LCC and MSVC - - * include/windows.h: Changed handling machine architecture defines - - * include/olectl.h: New file - -1998-12-04 Anders Norlander <anorland@hem2.passagen.se> - - * include/oleidl.h: Added IViewObject and IViewObject2 - - * include/objidl: Corrected prototype for IStorage::DestroyElement and - IStorage::MoveElement - - * include/oledlg.h: New file - - * include/winresrc.h: New file - - * include/wingdi.h: Added LPDOCINFO - - * include/commctrl.h: Added SBARS_SIZEGRIP and TVM_SETINDENT - * include/commctrl.h: Added TCM_SETITEM to UNICODE/ANSI block - * include/commctrl.h: Added ListView_GetSelectedCount, ListView_GetItemSpacing, - TabCtrl_SetImageList and TabCtrl_GetItemCount - * include/commctrl.h: Added TVM_FIRST, HDM_FIRST and TV_FIRST - - * include/windowsx.h: Added missing ListBox_xx ComboBox_xx etc. macros - - * include/wingdi.h: Added (L)PBITMAP,(L)PBITMAPCOREHEADER, - PBITMAPINFOHEADER, (L)PBITMAPCOREINFO and (L)PBITMAPFILEHEADER. - - * include/commdlg.h: Added LPDEVNAMES - - * include/windows.h: Include excpt.h - - * include/excpt.h: New file. This file just contains some - stubs for SEH that do nothing. - - * include/commctrl.h: Added general WM_NOTIFY codes - - * include/winuser.h: Added ICON_SMALL and ICON_BIG - * include/winuser.h: Removed VK_0-VK_9 VK_A-VK_Z; they should obviously - not be in the headers. - * include/winuser.h: Added LPCBTACTIVATESTRUCT and LPCLIENTCREATESTRUCT - * include/winuser.h: Added old WM_SIZE parameter names so - wxWindows compiles. - * include/winuser.h: Added IDC_SIZE and IDC_ICON - * include/winuser.h: Added LPDLGITEMTEMPLATE - * include/winuser.h: HTCAPTION was missing value - * include/winuser.h: Added WM_ACTIVE flags - - * include/windowsx.h: Added _fmemcpy so V compiles; also added - _fxx defines for memmove, memset and memcmp - - * include/windef.h: Changed _export and __export to empty defines - - * include/shellapi.h: Corrected prototypes for ExtractIcon functions. - String parameters were not const and ExtractAssociatedIcon takes - a WORD pointer not DWORD pointer as last parameter. - - * Makefile: Changed VERSION to 0.1.2 - - * include/ole2ver.h: New file - - * Makefile: Removed all dependencies on GLUT - - * include/GL/glut.h: Removed file because of decision to remove - files that are not part of the library. - * lib/glut.def: Likewise - * lib/glut32.def: Likewise - - * include/windows.h: Include winperf.h - - * include/winperf.h: New file - - * lib/gdi32.def: Added GetEnhMetaFilePixelFormat - - * include/winnls.h: Added calendar types - * include/winnls.h: Added country codes - -1998-12-03 Anders Norlander <anorland@hem2.passagen.se> - - * include/windef.h: Added PROC and NEARPROC - - * include/wingdi.h: Added ChoosePixelFormat, DescribePixelFormat - * include/wingdi.h: Added OpenGL types and prototypes - * include/wingdi.h: Added ENHMETA_STOCK_OBJECT - * include/wingdi.h: Added DCTT_DOWNLOAD_OUTLINE - * include/wingdi.h: Added POINTFX, TTPOLYCURVE and TTPOLYGONHEADER - * include/wingdi.h: Added truetype character outline types - * include/wingdi.h: Added DEVMODE initialization flags - * include/wingdi.h: Added panose codes - * include/wingdi.h: Added missing character sets - * include/wingdi.h: Added ANTIALIASED_QUALITY and - NONANTIALIASED_QUALITY - * include/wingdi.h: Added ENUMLOGFONTA/W and ENUMLOGFONTEXA/W - * include/wingdi.h: Added pointer types for EXTLOGPEN - * include/wingdi.h: Added PATTERN type - * include/wingdi.h: Added NEWTEXTMETRICA/W and NEWTEXTMETRICEXA/W - * include/wingdi.h: Added new text metric flags - * include/wingdi.h: Added pitch and family flags - * include/wingdi.h: Moved BCHAR defintion from winnt.h here - * include/wingdi.h: Added METAHEADER - * include/wingdi.h: Fixed packing of RGBTRIPLE and BITMAPFILEHEADER - * include/wingdi.h: Added TA_MASK - * include/wingdi.h: Added MAXSTRETCHBLTMODE - * include/wingdi.h: Added error codes - - * include/winuser.h: Added missing winhelp structures - * include/winuser.h: Added dialog flags/styles/messages - * include/winuser.h: Added EM_SETMARGIN codes - * include/winuser.h: Made it possiblie to use IDI_XX values - in resource files. - * include/winuser.h: Added missing LoadImage load flags - * include/winuser.h: Added missing message box flags - * include/winuser.h: Added ScrollWindow codes - * include/winuser.h: Added DT_WORD_ELLIPSIS - * include/winuser.h: Added drag and drop support - * include/winuser.h: Added WM_MENUCHAR return codes - * include/winuser.h: Added DLGWINDOWEXTRA - * include/winuser.h: Added missing SetWindowPos flags. - * include/winuser.h: Added BSF_NOTIMEOUTIFNOTHUNG - * include/winuser.h: Added IDHOT_xx defines - * include/winuser.h: Added MOD_WIN - * include/winuser.h: Added missing defines and structs for owner draw - controls. - * include/winuser.h: Added WPF_RESTORETOMAXIMIZED and - WPF_SETMINPOSITION - * include/winuser.h: Added DrawAnimatedRects flags - * include/winuser.h: Added WM_PRINT codes - * include/winuser.h: Added CS_IME class style - * include/winuser.h: Added WM_SIZE codes - * include/winuser.h: Added WM_MOUSEACTIVATE return codes - * include/winuser.h: Added WM_NCHITTEST return codes - * include/winuser.h: Added WM_SIZING parameters - * include/winuser.h: Added WM_NEXTMENU and MDINEXTMENU - * include/winuser.h: Added menu loop codes. - * include/winuser.h: Added NFR_ANSI, NFR_UNICODE, NF_QUERY and - NF_REQUERY - * include/winuser.h: Added WM_POWER flags - * include/winuser.h: Added KL_NAMELENGTH, WSF_VISIBLE - * include/winuser.h: Added missing message filter codes - * include/winuser.h: Added WM_KEYXX message flags - * include/winuser.h: Added WM_SHOWMESSAGE flags - * include/winuser.h: Added old ShowWindow commands - * include/winuser.h: Fixed packing of DLGITEMTEMPLATE and DLGTEMPLATE - structures. - - * include/mciavi.h: New file for the MCI AVI driver that for some - reason is not in mmsystem.h. - - * include/winbase.h: Added PIPE_UNLIMITED_INSTANCES and INVALID_FILE_SIZE - * include/winbase.h: Added SECURITY_xx for CreateFile - * include/winbase.h: Added RTS and DTS control values - * include/winbase.h: Fixed SYSTEM_INFO structure - * include/winbase.h: Added CREATE_NO_WINDOW, CREATE_SHARED_WOW_VDM - * include/winbase.h: Added FILE_TYPE_REMOTE - * include/winbase.h: Added modem status flags - * include/winbase.h: Added HINSTANCE_ERROR - * include/winbase.h: Added DefineDosDevice defines - * include/winbase.h: Added power management flags AC_xx BATTERY_xx - * include/winbase.h: Added STARTF_XX flags - * include/winbase.h: Fixed typo on _lcreat prototype. - * include/winbase.h: Moved DBG_XX to winnt.h - * include/winbase.h: Moved TOKEN_XX, DLL_PROCESS_XX and DLL_THREAD_XX to - winnt.h - - * include/unknwn.h: Added extern declaration of IID_IUnknown - - * include/windowsx.h: Added hmemcpy. - - * include/winnt.h: Added dummy member to DECLARE_HANDLE struct - * include/winnt.h: Added PACCESS_TOKEN - * include/winnt.h: Added TAPE_XX defines and moved some from winbase.h - * include/winnt.h: Added SE_IMPERSONATION_STATE and TOKEN_SOURCE_LENGTH - * include/winnt.h: Added SE_PRIVILEGE_ENABLED_BY_DEFAULT, SE_PRIVILEGE_ENABLED, - SE_PRIVILEGE_USED_FOR_ACCESS, PRIVILEGE_SET_ALL_NECESSARY, - SECURITY_MAX_IMPERSONATION_LEVEL, DEFAULT_IMPERSONATION_LEVEL, - SECURITY_DYNAMIC_TRACKING and SECURITY_STATIC_TRACKING. - - * include/winnt.h: Added SE_OWNER_DEFAULTED, SE_GROUP_DEFAULTED, SE_DACL_XX, - SE_SACL_XX, SE_SELF_RELATIVE, SECURITY_DESCRIPTOR_MIN_LENGTH, - SECURITY_DESCRIPTOR_REVISION and SECURITY_DESCRIPTOR_REVISION1. - - * include/winsvc.h: Removed conflicting defines which were supposed - to be in winnt.h - - * include/winnt.h: Added SERVICE_NODE_TYPE, SERVICE_LOAD_TYPE - and SERVICE_ERROR_TYPE. - - * include/winnt.h: Added SERVICE_XX defines. - * include/winsvc.h: Added SERVICES_ACTIVE_DATABASEA/W, - SERVICES_FAILED_DATABASEA/W and SC_GROUP_IDENTIFIERA/W. - - * include/winsvc.h: Added SERVICE_STATE_ALL, SERVICE_QUERY_CONFIG, - SERVICE_CHANGE_CONFIG, SERVICE_QUERY_STATUS, SERVICE_ENUMERATE_DEPENDENTS, - SERVICE_START, SERVICE_STOP, SERVICE_PAUSE_CONTINUE, - SERVICE_USER_DEFINED_CONTROL and SERVICE_ALL_ACCESS - -1998-12-02 Anders Norlander <anorland@hem2.passagen.se> - - * include/winbase.h: Corrected prototype for CreateProcessA - - * include/mmsystem.h: Added CAPS1 and C1_TRANSPARENT for display - driver extensions. - - * include/shlobj.h: Corrected prototype for SHGetDesktopFolder, should - be LPSHELLFOLDER* not LPSHELLFOLDER. - - * include/windows.h: Include commdlg.h - - * include/winuser.h: Added MDICREATESTRUCT - - * include/winuser.h: Added LB_ERR, LB_ERRSPACE, LB_OKAY, CB_ERR, - CB_ERRSPACE, and CB_OKAY - - * include/wingdi.h: Added LPBITMAPINFOHEADER - - * include/rpcproxy.h: Removed IN, OUT and OPTIONAL since they - are meaningless. - * include/rpcdce2.h: Likewise. - - * lib/shell32.c: Moved GUID defintions from shlguid.h to this file. - - * include/richole.h: Replaced DEFINE_GUID with extern const GUID - * include/olectlid.h: Likewise - * include/shlguid.h: Likewise - - * include/coguid.h: Delete file since it was for 16 bit windows only. - - * lib/*.def: Appended .dll to library name where needed. - - * include/windef.h: Define _stdcall and __stdcall only if not - previously defined instead of undefining first. - - * include/dlgs.h: Put RC_INVOKED around structure defs - - * include/intshcut.h: New file - * include/isguids.h: New file - - * lib/uuid.c: Added all COM/OLE GUIDS I know and do not know about. - -1998-12-01 Anders Norlander <anorland@hem2.passagen.se> - - * include/winnt.h: Added check if _T is defined before defining it - - * include/windows.h: Include dlgs.h if WIN32_LEAN_AND_MEAN not defined - - * include/dlgs.h: New file - - * include/winbase.h: Removed DllEntryPoint define - - * include/winbase.h: Added SetupComm prototype - - * include/rpc.h: SEH RPC functions no longer defined since they weren't - supported anyway. - - * include/basetyps.h: Removed use of COMOBJECT define, instead - DECLARE_INTERFACE directly uses comobject attribute when GCC - is used. - - * include/wtypes.h: STGC enum was missing typedef - - * include/objidl.h: ADVC enum was missing typedef - - * include/winnt.h: Moved CHAR, SHORT and LONG definitions so - they are nested within the VOID definition. - - * include/winbase.h: Added stream ids and attributes - - * include/winbase.h: Changed WIN32_STREAM_ID member cStreamName - to an ANYSIZE_ARRAY array. - -1998-11-26 Anders Norlander <anorland@hem2.passagen.se> - - * include/windef.h: defined _declspec as __declspec since - some programs (like VWCL) use _declspec instead of __declspec - - * include/winnt.h: added COMPRESS_FORMAT defines - - * include/winbase.h: moved IS_TEXT_XXX defines to winnt.h - - * include/winnt.h: added HEAP_XXXX defines - - * include/winbase.h: moved HEAP_XXXX defines to winnt.h - - * include/winnt.h: added defintions for PE/COFF from the PE and COFF - specification. - - * include/winnt.h: added NTAPI define - -1998-11-25 Anders Norlander <anorland@hem2.passagen.se> - - * include/winnt.h: defined TBYTE,LPTSTR etc in terms of TCHAR - instead of CHAR or WCHAR. - - * include/winnt.h: added _T define - - * include/winnt.h: added test for _TCHAR_DEFINED - - * include/winnt.h: included string.h for memory macros - - * include/prsht.h: added PSM_SETFINISHTEXT to UNICODE/ANSI test - - * include/prsht.h: moved PSM_SETTITLEA/W to UNICODE test at end of file - - * include/prsht.h: added PropSheet_XXX macros - - -1998-11-24 Anders Norlander <anorland@hem2.passagen.se> - - * include/winspool.h: Changed DeletePrinterProcessor and - DeletePrinterProvidor to DeletePrintXX. - - * include/wingdi.h: Changed EMRCREATECOLORSPACE lcs member type to - LOGCOLORSPACEW. - - * include/wingdi.h: Changed prototype for CreateColorSpace to A and W - variants - - * include/wingdi.h: Likewise for GetLogColorSpace - - * include/wingdi.h: Changed LOGCOLORSPACE to LOGCOLORSPACEA/W. - - * include/richedit.h: Added missing defines and structures - - * include/winuser.h: Moved EDITWORDBREAKPROCEX to include/richedit.h - - * include/winuser.h: Added HWND_DESKTOP - -1998-11-23 Anders Norlander <anorland@hem2.passagen.se> - - * Makefile: Include ChangeLog when building source - distribution (srcdist) - - * include/oleauto.h: Changed WINOLEAUTAPI and WINOLEAUTAPI_ so they - are always defined as STDAPI and STDAPI_ - - * include/objbase.h: Changed WINOLEAPI and WINOLEAPI_ so they - are always defined as STDAPI and STDAPI_ - - * include/objidl.h: Removed extra ';' on IStorage SetClass method - - * include/rpcndr.h: Removed all IN and OUT from function prototypes - - * ChangeLog started |