winsta: Add WinStationUnRegisterConsoleNotification stub.
Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
731136d8d3
commit
981dec4986
|
@ -68,6 +68,13 @@ BOOLEAN WINAPI WinStationRegisterConsoleNotification( HANDLE server, HWND hwnd,
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
BOOLEAN WINAPI WinStationUnRegisterConsoleNotification( HANDLE server, HWND hwnd )
|
||||
{
|
||||
FIXME( "%p %p\n", server, hwnd );
|
||||
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOLEAN WINAPI WinStationGetAllProcesses( HANDLE server, ULONG level,
|
||||
ULONG *process_count, PTS_ALL_PROCESSES_INFO *info )
|
||||
{
|
||||
|
|
|
@ -94,5 +94,6 @@ BOOLEAN WINAPI WinStationGetAllProcesses(HANDLE,ULONG,PULONG,PTS_ALL_PROCESSES_I
|
|||
BOOLEAN WINAPI WinStationGetProcessSid(HANDLE,ULONG,FILETIME *,PVOID,PULONG);
|
||||
BOOLEAN WINAPI WinStationQueryInformationW(HANDLE,ULONG,WINSTATIONINFOCLASS,PVOID,ULONG,PULONG);
|
||||
BOOLEAN WINAPI WinStationRegisterConsoleNotification(HANDLE,HWND,ULONG);
|
||||
BOOLEAN WINAPI WinStationUnRegisterConsoleNotification(HANDLE,HWND);
|
||||
|
||||
#endif /* _WINSTA_H */
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
@ stub WinStationShadowStop
|
||||
@ stub WinStationShutdownSystem
|
||||
@ stub WinStationTerminateProcess
|
||||
@ stub WinStationUnRegisterConsoleNotification
|
||||
@ stdcall WinStationUnRegisterConsoleNotification(ptr ptr)
|
||||
@ stdcall WinStationVirtualOpen(ptr ptr ptr)
|
||||
@ stub WinStationWaitSystemEvent
|
||||
@ stub _NWLogonQueryAdmin
|
||||
|
|
Loading…
Reference in New Issue