From 63c72aa8a8ecc2631f906a152c0f2bfd1009ef20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Thu, 11 Mar 2004 20:05:11 +0000 Subject: [PATCH] Move declaration of GetLastError() to match PSDK svn path=/trunk/; revision=8646 --- reactos/w32api/include/winbase.h | 1 + reactos/w32api/include/winuser.h | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/w32api/include/winbase.h b/reactos/w32api/include/winbase.h index c953afa9f2a..aa322ee1c54 100644 --- a/reactos/w32api/include/winbase.h +++ b/reactos/w32api/include/winbase.h @@ -1369,6 +1369,7 @@ DWORD WINAPI GetFullPathNameA(LPCSTR,DWORD,LPSTR,LPSTR*); DWORD WINAPI GetFullPathNameW(LPCWSTR,DWORD,LPWSTR,LPWSTR*); BOOL WINAPI GetHandleInformation(HANDLE,PDWORD); BOOL WINAPI GetKernelObjectSecurity(HANDLE,SECURITY_INFORMATION,PSECURITY_DESCRIPTOR,DWORD,PDWORD); +DWORD WINAPI GetLastError(void); DWORD WINAPI GetLengthSid(PSID); void WINAPI GetLocalTime(LPSYSTEMTIME); DWORD WINAPI GetLogicalDrives(void); diff --git a/reactos/w32api/include/winuser.h b/reactos/w32api/include/winuser.h index 879860f47e7..abfc258480a 100644 --- a/reactos/w32api/include/winuser.h +++ b/reactos/w32api/include/winuser.h @@ -3377,7 +3377,6 @@ int WINAPI GetKeyNameTextA(LONG,LPSTR,int); int WINAPI GetKeyNameTextW(LONG,LPWSTR,int); SHORT WINAPI GetKeyState(int); HWND WINAPI GetLastActivePopup(HWND); -DWORD WINAPI GetLastError(void); HMENU WINAPI GetMenu(HWND); LONG WINAPI GetMenuCheckMarkDimensions(void); DWORD WINAPI GetMenuContextHelpId(HMENU);