Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
22f5e1f6
Commit
22f5e1f6
authored
May 23, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winsta: Add stubs for WinStationQueryInformationA/W.
parent
bc26bdea
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
+19
-2
main.c
dlls/winsta/main.c
+17
-0
winsta.spec
dlls/winsta/winsta.spec
+2
-2
No files found.
dlls/winsta/main.c
View file @
22f5e1f6
...
...
@@ -21,6 +21,7 @@
#include "windef.h"
#include "winbase.h"
#include "winternl.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
winsta
);
...
...
@@ -42,3 +43,19 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
BOOLEAN
WINAPI
WinStationQueryInformationA
(
HANDLE
server
,
ULONG
logon_id
,
WINSTATIONINFOCLASS
class
,
void
*
info
,
ULONG
len
,
ULONG
*
ret_len
)
{
FIXME
(
"%p %u %u %p %u %p
\n
"
,
server
,
logon_id
,
class
,
info
,
len
,
ret_len
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
BOOLEAN
WINAPI
WinStationQueryInformationW
(
HANDLE
server
,
ULONG
logon_id
,
WINSTATIONINFOCLASS
class
,
void
*
info
,
ULONG
len
,
ULONG
*
ret_len
)
{
FIXME
(
"%p %u %u %p %u %p
\n
"
,
server
,
logon_id
,
class
,
info
,
len
,
ret_len
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
dlls/winsta/winsta.spec
View file @
22f5e1f6
...
...
@@ -48,8 +48,8 @@
@ stub WinStationNtsdDebug
@ stub WinStationOpenServerA
@ stub WinStationOpenServerW
@ st
ub WinStationQueryInformationA
@ st
ub WinStationQueryInformationW
@ st
dcall WinStationQueryInformationA(ptr long long ptr long ptr)
@ st
dcall WinStationQueryInformationW(ptr long long ptr long ptr)
@ stub WinStationQueryLicense
@ stub WinStationQueryLogonCredentialsW
@ stub WinStationQueryUpdateRequired
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment