Author: gedmurphy Date: Sat May 27 13:18:10 2006 New Revision: 22068
URL: http://svn.reactos.ru/svn/reactos?rev=22068&view=rev Log: - fixes the definitions of PostQueuedCompletionStatus() and RaiseException() - adds the definitions of AddAccessAllowedObjectAce(), AddAccessDeniedObjectAce() and AddAuditAccessObjectAce() to w32api - prototypes in line with previous r22066 mods - fixes bug 1473
Modified: trunk/reactos/dll/win32/kernel32/except/except.c trunk/reactos/dll/win32/kernel32/file/iocompl.c
Modified: trunk/reactos/dll/win32/kernel32/except/except.c URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/kernel32/except/ex... ============================================================================== --- trunk/reactos/dll/win32/kernel32/except/except.c (original) +++ trunk/reactos/dll/win32/kernel32/except/except.c Sat May 27 13:18:10 2006 @@ -278,7 +278,7 @@ DWORD dwExceptionCode, DWORD dwExceptionFlags, DWORD nNumberOfArguments, - CONST DWORD * lpArguments OPTIONAL + CONST ULONG_PTR * lpArguments OPTIONAL ) { EXCEPTION_RECORD ExceptionRecord;
Modified: trunk/reactos/dll/win32/kernel32/file/iocompl.c URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/kernel32/file/ioco... ============================================================================== --- trunk/reactos/dll/win32/kernel32/file/iocompl.c (original) +++ trunk/reactos/dll/win32/kernel32/file/iocompl.c Sat May 27 13:18:10 2006 @@ -146,7 +146,7 @@ PostQueuedCompletionStatus( HANDLE CompletionHandle, DWORD dwNumberOfBytesTransferred, - DWORD dwCompletionKey, + ULONG_PTR dwCompletionKey, LPOVERLAPPED lpOverlapped ) {