Author: ion Date: Sat Jul 23 22:03:03 2011 New Revision: 52824
URL: http://svn.reactos.org/svn/reactos?rev=52824&view=rev Log: [KERNEL32]: Ironically enough, the "unimplemented" SetMessageWAitingIndicator function, which failed with sTATUS_NOT_IMPLEMENTED.... is how Windows implements this API! Mark it as so.
Modified: trunk/reactos/dll/win32/kernel32/client/power.c
Modified: trunk/reactos/dll/win32/kernel32/client/power.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/client/p... ============================================================================== --- trunk/reactos/dll/win32/kernel32/client/power.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/kernel32/client/power.c [iso-8859-1] Sat Jul 23 22:03:03 2011 @@ -251,15 +251,14 @@ }
/* - * @unimplemented - */ -BOOL -WINAPI -SetMessageWaitingIndicator(HANDLE hMsgIndicator, - ULONG ulMsgCount) + * @implemented + */ +BOOL +WINAPI +SetMessageWaitingIndicator(IN HANDLE hMsgIndicator, + IN ULONG ulMsgCount) { SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - DPRINT1("SetMessageWaitingIndicator is UNIMPLEMENTED!\n"); return 0; }