From 6a02213b528eaac0c0955ede85ca2e4867b96e46 Mon Sep 17 00:00:00 2001 From: Luke Dunstan Date: Sat, 5 Jun 2004 13:39:35 +0000 Subject: [PATCH] 2004-06-05 Luke Dunstan * include/winbase.h (GetWriteWatch): Correct prototype. (WRITE_WATCH_FLAG_RESET): Define. Thanks to Sergey Philippov . --- winsup/w32api/ChangeLog | 6 ++++++ winsup/w32api/include/winbase.h | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index a88c662fc..9340031b6 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,3 +1,9 @@ +2004-06-05 Luke Dunstan + + * include/winbase.h (GetWriteWatch): Correct prototype. + (WRITE_WATCH_FLAG_RESET): Define. + Thanks to Sergey Philippov . + 2004-06-02 Rocher Laurent * include/commctrl.h (Animate_OpenEx): Define. diff --git a/winsup/w32api/include/winbase.h b/winsup/w32api/include/winbase.h index cc1f6e808..a05e5d3c8 100644 --- a/winsup/w32api/include/winbase.h +++ b/winsup/w32api/include/winbase.h @@ -532,6 +532,7 @@ extern "C" { #define REPLACEFILE_WRITE_THROUGH 0x00000001 #define REPLACEFILE_IGNORE_MERGE_ERRORS 0x00000002 #endif /* (_WIN32_WINNT >= 0x0500) */ +#define WRITE_WATCH_FLAG_RESET 1 #ifndef RC_INVOKED typedef struct _FILETIME { @@ -1512,7 +1513,7 @@ BOOL WINAPI GetVolumePathNamesForVolumeNameW(LPCWSTR,LPWSTR,DWORD,PDWORD); UINT WINAPI GetWindowsDirectoryA(LPSTR,UINT); UINT WINAPI GetWindowsDirectoryW(LPWSTR,UINT); DWORD WINAPI GetWindowThreadProcessId(HWND,PDWORD); -UINT GetWriteWatch(DWORD,PVOID,SIZE_T,PVOID*,PULONG_PTR,PULONG); +UINT WINAPI GetWriteWatch(DWORD,PVOID,SIZE_T,PVOID*,PULONG_PTR,PULONG); ATOM WINAPI GlobalAddAtomA(LPCSTR); ATOM WINAPI GlobalAddAtomW( LPCWSTR); HGLOBAL WINAPI GlobalAlloc(UINT,DWORD);