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
01eed947
Commit
01eed947
authored
Mar 24, 2015
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 24, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fntcache: Drop WINE_ prefix from FIXME/TRACE.
parent
6f6aa9b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
main.c
dlls/fntcache/main.c
+4
-4
No files found.
dlls/fntcache/main.c
View file @
01eed947
...
...
@@ -64,14 +64,14 @@ static DWORD WINAPI service_handler( DWORD ctrl, DWORD event_type, void *event_d
{
case
SERVICE_CONTROL_STOP
:
case
SERVICE_CONTROL_SHUTDOWN
:
WINE_
TRACE
(
"shutting down
\n
"
);
TRACE
(
"shutting down
\n
"
);
status
.
dwCurrentState
=
SERVICE_STOP_PENDING
;
status
.
dwControlsAccepted
=
0
;
SetServiceStatus
(
service_handle
,
&
status
);
SetEvent
(
stop_event
);
return
NO_ERROR
;
default:
WINE_
FIXME
(
"got service ctrl %x
\n
"
,
ctrl
);
FIXME
(
"got service ctrl %x
\n
"
,
ctrl
);
status
.
dwCurrentState
=
SERVICE_RUNNING
;
SetServiceStatus
(
service_handle
,
&
status
);
return
NO_ERROR
;
...
...
@@ -86,7 +86,7 @@ VOID WINAPI ServiceMain(DWORD argc, LPWSTR *argv)
static
const
WCHAR
fontcacheW
[]
=
{
'F'
,
'o'
,
'n'
,
't'
,
'C'
,
'a'
,
'c'
,
'h'
,
'e'
,
0
};
SERVICE_STATUS
status
;
WINE_
TRACE
(
"starting service
\n
"
);
TRACE
(
"starting service
\n
"
);
stop_event
=
CreateEventW
(
NULL
,
TRUE
,
FALSE
,
NULL
);
...
...
@@ -108,5 +108,5 @@ VOID WINAPI ServiceMain(DWORD argc, LPWSTR *argv)
status
.
dwCurrentState
=
SERVICE_STOPPED
;
status
.
dwControlsAccepted
=
0
;
SetServiceStatus
(
service_handle
,
&
status
);
WINE_
TRACE
(
"service stopped
\n
"
);
TRACE
(
"service stopped
\n
"
);
}
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