[WINSTA] Add some missing stubs (#2307)

Add stubs for WinStationCanLogonProceed() and _WinStationOpenSessionDirectory() functions to make winlogon from Windows Server 2003 happy.

CORE-15392 CORE-16458
This commit is contained in:
Oleg Dubinskiy 2020-04-16 01:50:22 +03:00 committed by GitHub
parent cb10698316
commit 2d8b224d71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View file

@ -111,3 +111,18 @@ WINSTAAPI _WinStationNotifyLogon(PVOID A,
{
UNIMPLEMENTED;
}
VOID
WINSTAAPI WinStationCanLogonProceed(PVOID A,
PVOID B,
PVOID C)
{
UNIMPLEMENTED;
}
VOID
WINSTAAPI _WinStationOpenSessionDirectory(PVOID A,
PVOID B)
{
UNIMPLEMENTED;
}