From 22cf74c595131a9f25a3047a3ffa4ef6b59144d3 Mon Sep 17 00:00:00 2001 From: Alex Ionescu Date: Sat, 23 Jul 2011 22:03:03 +0000 Subject: [PATCH] [KERNEL32]: Ironically enough, the "unimplemented" SetMessageWAitingIndicator function, which failed with sTATUS_NOT_IMPLEMENTED.... is how Windows implements this API! Mark it as so. svn path=/trunk/; revision=52824 --- reactos/dll/win32/kernel32/client/power.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/reactos/dll/win32/kernel32/client/power.c b/reactos/dll/win32/kernel32/client/power.c index 5a9e1412057..18ff2315d13 100644 --- a/reactos/dll/win32/kernel32/client/power.c +++ b/reactos/dll/win32/kernel32/client/power.c @@ -251,15 +251,14 @@ IsSystemResumeAutomatic(VOID) } /* - * @unimplemented + * @implemented */ BOOL WINAPI -SetMessageWaitingIndicator(HANDLE hMsgIndicator, - ULONG ulMsgCount) +SetMessageWaitingIndicator(IN HANDLE hMsgIndicator, + IN ULONG ulMsgCount) { SetLastError(ERROR_CALL_NOT_IMPLEMENTED); - DPRINT1("SetMessageWaitingIndicator is UNIMPLEMENTED!\n"); return 0; }