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
6f6aa9b8
Commit
6f6aa9b8
authored
Mar 24, 2015
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Mar 24, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
schedsvc: Drop WINE_ prefix from ERR().
parent
6ab6564b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
svc_main.c
dlls/schedsvc/svc_main.c
+6
-6
No files found.
dlls/schedsvc/svc_main.c
View file @
6f6aa9b8
...
@@ -129,35 +129,35 @@ static RPC_STATUS RPC_init(void)
...
@@ -129,35 +129,35 @@ static RPC_STATUS RPC_init(void)
status
=
RpcServerUseProtseqEpW
(
transport
,
0
,
NULL
,
NULL
);
status
=
RpcServerUseProtseqEpW
(
transport
,
0
,
NULL
,
NULL
);
if
(
status
!=
RPC_S_OK
)
if
(
status
!=
RPC_S_OK
)
{
{
WINE_
ERR
(
"RpcServerUseProtseqEp error %#x
\n
"
,
status
);
ERR
(
"RpcServerUseProtseqEp error %#x
\n
"
,
status
);
return
status
;
return
status
;
}
}
status
=
RpcServerRegisterIf
(
ITaskSchedulerService_v1_0_s_ifspec
,
0
,
0
);
status
=
RpcServerRegisterIf
(
ITaskSchedulerService_v1_0_s_ifspec
,
0
,
0
);
if
(
status
!=
RPC_S_OK
)
if
(
status
!=
RPC_S_OK
)
{
{
WINE_
ERR
(
"RpcServerRegisterIf error %#x
\n
"
,
status
);
ERR
(
"RpcServerRegisterIf error %#x
\n
"
,
status
);
return
status
;
return
status
;
}
}
status
=
RpcServerInqBindings
(
&
sched_bindings
);
status
=
RpcServerInqBindings
(
&
sched_bindings
);
if
(
status
!=
RPC_S_OK
)
if
(
status
!=
RPC_S_OK
)
{
{
WINE_
ERR
(
"RpcServerInqBindings error %#x
\n
"
,
status
);
ERR
(
"RpcServerInqBindings error %#x
\n
"
,
status
);
return
status
;
return
status
;
}
}
status
=
RpcEpRegisterW
(
ITaskSchedulerService_v1_0_s_ifspec
,
sched_bindings
,
NULL
,
NULL
);
status
=
RpcEpRegisterW
(
ITaskSchedulerService_v1_0_s_ifspec
,
sched_bindings
,
NULL
,
NULL
);
if
(
status
!=
RPC_S_OK
)
if
(
status
!=
RPC_S_OK
)
{
{
WINE_
ERR
(
"RpcEpRegister error %#x
\n
"
,
status
);
ERR
(
"RpcEpRegister error %#x
\n
"
,
status
);
return
status
;
return
status
;
}
}
status
=
RpcServerListen
(
1
,
RPC_C_LISTEN_MAX_CALLS_DEFAULT
,
TRUE
);
status
=
RpcServerListen
(
1
,
RPC_C_LISTEN_MAX_CALLS_DEFAULT
,
TRUE
);
if
(
status
!=
RPC_S_OK
)
if
(
status
!=
RPC_S_OK
)
{
{
WINE_
ERR
(
"RpcServerListen error %#x
\n
"
,
status
);
ERR
(
"RpcServerListen error %#x
\n
"
,
status
);
return
status
;
return
status
;
}
}
return
RPC_S_OK
;
return
RPC_S_OK
;
...
@@ -180,7 +180,7 @@ void WINAPI ServiceMain(DWORD argc, LPWSTR *argv)
...
@@ -180,7 +180,7 @@ void WINAPI ServiceMain(DWORD argc, LPWSTR *argv)
schedsvc_handle
=
RegisterServiceCtrlHandlerW
(
scheduleW
,
schedsvc_handler
);
schedsvc_handle
=
RegisterServiceCtrlHandlerW
(
scheduleW
,
schedsvc_handler
);
if
(
!
schedsvc_handle
)
if
(
!
schedsvc_handle
)
{
{
WINE_
ERR
(
"RegisterServiceCtrlHandler error %d
\n
"
,
GetLastError
());
ERR
(
"RegisterServiceCtrlHandler error %d
\n
"
,
GetLastError
());
return
;
return
;
}
}
...
...
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