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
7d3431ed
Commit
7d3431ed
authored
Sep 14, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for QueryServiceObjectSecurity.
parent
51eccdc4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
advapi32.spec
dlls/advapi32/advapi32.spec
+1
-1
service.c
dlls/advapi32/service.c
+13
-0
No files found.
dlls/advapi32/advapi32.spec
View file @
7d3431ed
...
...
@@ -194,7 +194,7 @@
@ stdcall QueryServiceConfigW(long ptr long ptr)
@ stub QueryServiceLockStatusA
@ stub QueryServiceLockStatusW
@ st
ub QueryServiceObjectSecurity
@ st
dcall QueryServiceObjectSecurity(long long ptr long ptr)
@ stdcall QueryServiceStatus(long ptr)
@ stdcall QueryServiceStatusEx (long long ptr long ptr)
@ stdcall ReadEventLogA (long long long ptr long ptr ptr)
...
...
dlls/advapi32/service.c
View file @
7d3431ed
...
...
@@ -1357,3 +1357,16 @@ BOOL WINAPI ChangeServiceConfig2W( SC_HANDLE hService, DWORD dwInfoLevel,
FIXME
(
"STUB: %p %ld %p
\n
"
,
hService
,
dwInfoLevel
,
lpInfo
);
return
TRUE
;
}
/******************************************************************************
* QueryServiceObjectSecurity [ADVAPI32.@]
*/
BOOL
WINAPI
QueryServiceObjectSecurity
(
SC_HANDLE
hService
,
SECURITY_INFORMATION
dwSecurityInformation
,
PSECURITY_DESCRIPTOR
lpSecurityDescriptor
,
DWORD
cbBufSize
,
LPDWORD
pcbBytesNeeded
)
{
FIXME
(
"%p %ld %p %lu %p
\n
"
,
hService
,
dwSecurityInformation
,
lpSecurityDescriptor
,
cbBufSize
,
pcbBytesNeeded
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
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