user32: Stub for LockWorkStation.

This commit is contained in:
Paul Chitescu 2008-09-17 18:12:20 +03:00 committed by Alexandre Julliard
parent 382ef908f1
commit da012ed8e7
2 changed files with 11 additions and 1 deletions

View file

@ -475,7 +475,7 @@
@ stdcall LockSetForegroundWindow (long)
@ stub LockWindowStation
@ stdcall LockWindowUpdate(long)
@ stub LockWorkStation
@ stdcall LockWorkStation()
@ stdcall LookupIconIdFromDirectory(ptr long)
@ stdcall LookupIconIdFromDirectoryEx(ptr long long long long)
@ stub MBToWCSEx

View file

@ -390,6 +390,16 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reason )
return TRUE;
}
/***********************************************************************
* LockWorkStation (USER32.@)
*/
BOOL WINAPI LockWorkStation(void)
{
TRACE(": stub\n");
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
return FALSE;
}
/***********************************************************************
* RegisterServicesProcess (USER32.@)
*/