[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
This commit is contained in:
Alex Ionescu 2011-07-23 22:03:03 +00:00
parent da30785e98
commit 22cf74c595

View file

@ -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;
}