mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +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;
|
UNIMPLEMENTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
VOID
|
BOOLEAN
|
||||||
WINSTAAPI WinStationQueryInformationA(PVOID A,
|
WINSTAAPI WinStationQueryInformationA(HANDLE hServer,
|
||||||
PVOID B,
|
ULONG LogonId,
|
||||||
PVOID C,
|
WINSTATIONINFOCLASS WinStationInformationClass,
|
||||||
PVOID D,
|
PVOID pWinStationInformation,
|
||||||
PVOID E,
|
ULONG WinStationInformationLength,
|
||||||
PVOID F)
|
PULONG pReturnLength)
|
||||||
{
|
{
|
||||||
|
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||||
UNIMPLEMENTED;
|
UNIMPLEMENTED;
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue