[WINSTA] fix declaration of WinStationQueryInformationA
authorChristoph von Wittich <christoph_vw@reactos.org>
Fri, 25 Nov 2016 12:48:55 +0000 (12:48 +0000)
committerChristoph von Wittich <christoph_vw@reactos.org>
Fri, 25 Nov 2016 12:48:55 +0000 (12:48 +0000)
svn path=/trunk/; revision=73375

reactos/dll/win32/winsta/query.c

index 7d061a4..fb9d9ad 100644 (file)
@@ -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;
 }
 
 /*