mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
[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:
parent
da30785e98
commit
22cf74c595
1 changed files with 3 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue