Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
a4ff4682
Commit
a4ff4682
authored
Feb 07, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 07, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedevice: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b0319099
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
programs/winedevice/Makefile.in
+0
-1
device.c
programs/winedevice/device.c
+2
-2
No files found.
programs/winedevice/Makefile.in
View file @
a4ff4682
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
winedevice.exe
IMPORTS
=
advapi32 ntoskrnl
...
...
programs/winedevice/device.c
View file @
a4ff4682
...
...
@@ -86,7 +86,7 @@ static DWORD device_handler( DWORD ctrl, const WCHAR *driver_name )
break
;
default:
FIXME
(
"got driver ctrl %x for %s
\n
"
,
ctrl
,
wine_dbgstr_w
(
driver_name
)
);
FIXME
(
"got driver ctrl %
l
x for %s
\n
"
,
ctrl
,
wine_dbgstr_w
(
driver_name
)
);
break
;
}
...
...
@@ -113,7 +113,7 @@ static DWORD WINAPI service_handler( DWORD ctrl, DWORD event_type, LPVOID event_
SetEvent
(
stop_event
);
return
NO_ERROR
;
default:
FIXME
(
"got service ctrl %x for %s
\n
"
,
ctrl
,
wine_dbgstr_w
(
service_group
)
);
FIXME
(
"got service ctrl %
l
x for %s
\n
"
,
ctrl
,
wine_dbgstr_w
(
service_group
)
);
set_service_status
(
service_handle
,
SERVICE_RUNNING
,
SERVICE_ACCEPT_STOP
|
SERVICE_ACCEPT_SHUTDOWN
);
return
NO_ERROR
;
...
...
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