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
c6682ef5
Commit
c6682ef5
authored
Dec 22, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Dec 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Print a FIXME also for the unknown levels.
parent
2bbb9cb8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
7 deletions
+3
-7
service.c
dlls/advapi32/service.c
+3
-7
No files found.
dlls/advapi32/service.c
View file @
c6682ef5
...
...
@@ -1406,6 +1406,8 @@ cleanup:
/******************************************************************************
* QueryServiceConfig2W [ADVAPI32.@]
*
* See QueryServiceConfig2A.
*/
BOOL
WINAPI
QueryServiceConfig2W
(
SC_HANDLE
hService
,
DWORD
dwLevel
,
LPBYTE
buffer
,
DWORD
size
,
LPDWORD
needed
)
...
...
@@ -1413,13 +1415,7 @@ BOOL WINAPI QueryServiceConfig2W(SC_HANDLE hService, DWORD dwLevel, LPBYTE buffe
DWORD
err
;
if
(
dwLevel
!=
SERVICE_CONFIG_DESCRIPTION
)
{
if
((
dwLevel
==
SERVICE_CONFIG_DELAYED_AUTO_START_INFO
)
||
(
dwLevel
==
SERVICE_CONFIG_FAILURE_ACTIONS
)
||
(
dwLevel
==
SERVICE_CONFIG_FAILURE_ACTIONS_FLAG
)
||
(
dwLevel
==
SERVICE_CONFIG_PRESHUTDOWN_INFO
)
||
(
dwLevel
==
SERVICE_CONFIG_REQUIRED_PRIVILEGES_INFO
)
||
(
dwLevel
==
SERVICE_CONFIG_SERVICE_SID_INFO
))
FIXME
(
"Level %d not implemented
\n
"
,
dwLevel
);
FIXME
(
"Level %d not implemented
\n
"
,
dwLevel
);
SetLastError
(
ERROR_INVALID_LEVEL
);
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