Commit 981dec49 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

winsta: Add WinStationUnRegisterConsoleNotification stub.

parent 731136d8
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment