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
eb7f1edc
Commit
eb7f1edc
authored
Feb 22, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 22, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winsta: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2868116c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
Makefile.in
dlls/winsta/Makefile.in
+0
-1
main.c
dlls/winsta/main.c
+5
-5
No files found.
dlls/winsta/Makefile.in
View file @
eb7f1edc
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
winsta.dll
EXTRADLLFLAGS
=
-Wb
,--prefer-native
...
...
dlls/winsta/main.c
View file @
eb7f1edc
...
...
@@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(winsta);
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
);
FIXME
(
"%p %
lu %u %p %l
u %p
\n
"
,
server
,
logon_id
,
class
,
info
,
len
,
ret_len
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -38,14 +38,14 @@ BOOLEAN WINAPI WinStationQueryInformationA( HANDLE server, ULONG logon_id, WINST
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
);
FIXME
(
"%p %
lu %u %p %l
u %p
\n
"
,
server
,
logon_id
,
class
,
info
,
len
,
ret_len
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
BOOLEAN
WINAPI
WinStationRegisterConsoleNotification
(
HANDLE
server
,
HWND
hwnd
,
ULONG
flags
)
{
FIXME
(
"%p %p 0x%x
\n
"
,
server
,
hwnd
,
flags
);
FIXME
(
"%p %p 0x%
l
x
\n
"
,
server
,
hwnd
,
flags
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
@@ -60,7 +60,7 @@ BOOLEAN WINAPI WinStationUnRegisterConsoleNotification( HANDLE server, HWND hwnd
BOOLEAN
WINAPI
WinStationGetAllProcesses
(
HANDLE
server
,
ULONG
level
,
ULONG
*
process_count
,
PTS_ALL_PROCESSES_INFO
*
info
)
{
FIXME
(
"%p %u %p %p
\n
"
,
server
,
level
,
process_count
,
info
);
FIXME
(
"%p %
l
u %p %p
\n
"
,
server
,
level
,
process_count
,
info
);
*
process_count
=
0
;
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
...
...
@@ -69,7 +69,7 @@ BOOLEAN WINAPI WinStationGetAllProcesses( HANDLE server, ULONG level,
BOOLEAN
WINAPI
WinStationGetProcessSid
(
HANDLE
server
,
ULONG
process_id
,
FILETIME
*
process_start_time
,
PVOID
process_user_sid
,
PULONG
sid_size
)
{
FIXME
(
"(%p, %d, %p, %p, %p): stub
\n
"
,
server
,
process_id
,
process_start_time
,
process_user_sid
,
sid_size
);
FIXME
(
"(%p, %
l
d, %p, %p, %p): stub
\n
"
,
server
,
process_id
,
process_start_time
,
process_user_sid
,
sid_size
);
SetLastError
(
ERROR_CALL_NOT_IMPLEMENTED
);
return
FALSE
;
}
...
...
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