mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[WINSTA] fix declaration of WinStationQueryInformationA
svn path=/trunk/; revision=73375
This commit is contained in:
parent
c4a61ec7f2
commit
4cc7823baf
1 changed files with 9 additions and 7 deletions
|
@ -15,15 +15,17 @@ WinStationQueryLogonCredentialsW(PVOID A)
|
|||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
VOID
|
||||
WINSTAAPI WinStationQueryInformationA(PVOID A,
|
||||
PVOID B,
|
||||
PVOID C,
|
||||
PVOID D,
|
||||
PVOID E,
|
||||
PVOID F)
|
||||
BOOLEAN
|
||||
WINSTAAPI WinStationQueryInformationA(HANDLE hServer,
|
||||
ULONG LogonId,
|
||||
WINSTATIONINFOCLASS WinStationInformationClass,
|
||||
PVOID pWinStationInformation,
|
||||
ULONG WinStationInformationLength,
|
||||
PULONG pReturnLength)
|
||||
{
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
UNIMPLEMENTED;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue