Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sam Joan Roque-Worcel
wine
Commits
75a84132
Commit
75a84132
authored
25 years ago
by
Michael McCormack
Committed by
Alexandre Julliard
25 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Implemented OpenSCManagerW, CloseServiceHandle, OpenServiceW, and some
of QueryServiceStatus.
parent
7e6e92cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/advapi32/service.c
+74
-8
74 additions, 8 deletions
dlls/advapi32/service.c
with
74 additions
and
8 deletions
dlls/advapi32/service.c
+
74
−
8
View file @
75a84132
...
...
@@ -9,6 +9,7 @@
#include
"windef.h"
#include
"winsvc.h"
#include
"winerror.h"
#include
"winreg.h"
#include
"heap.h"
#include
"debugtools.h"
...
...
@@ -143,9 +144,25 @@ SC_HANDLE WINAPI
OpenSCManagerW
(
LPCWSTR
lpMachineName
,
LPCWSTR
lpDatabaseName
,
DWORD
dwDesiredAccess
)
{
FIXME
(
"(%s,%s,0x%08lx): stub
\n
"
,
debugstr_w
(
lpMachineName
),
HKEY
hKey
;
LONG
r
;
TRACE
(
"(%s,%s,0x%08lx)
\n
"
,
debugstr_w
(
lpMachineName
),
debugstr_w
(
lpDatabaseName
),
dwDesiredAccess
);
return
1
;
/*
* FIXME: what is lpDatabaseName?
* It should be set to "SERVICES_ACTIVE_DATABASE" according to
* docs, but what if it isn't?
*/
r
=
RegConnectRegistryW
(
lpMachineName
,
HKEY_LOCAL_MACHINE
,
&
hKey
);
if
(
r
!=
ERROR_SUCCESS
)
return
0
;
TRACE
(
"returning %x
\n
"
,
hKey
);
return
hKey
;
}
...
...
@@ -196,7 +213,10 @@ ControlService( SC_HANDLE hService, DWORD dwControl,
BOOL
WINAPI
CloseServiceHandle
(
SC_HANDLE
hSCObject
)
{
FIXME
(
"(%d): stub
\n
"
,
hSCObject
);
TRACE
(
"(%x)
\n
"
,
hSCObject
);
RegCloseKey
(
hSCObject
);
return
TRUE
;
}
...
...
@@ -209,7 +229,13 @@ OpenServiceA( SC_HANDLE hSCManager, LPCSTR lpServiceName,
DWORD
dwDesiredAccess
)
{
LPWSTR
lpServiceNameW
=
HEAP_strdupAtoW
(
GetProcessHeap
(),
0
,
lpServiceName
);
DWORD
ret
=
OpenServiceW
(
hSCManager
,
lpServiceNameW
,
dwDesiredAccess
);
DWORD
ret
;
if
(
lpServiceName
)
TRACE
(
"Request for service %s
\n
"
,
lpServiceName
);
else
return
FALSE
;
ret
=
OpenServiceW
(
hSCManager
,
lpServiceNameW
,
dwDesiredAccess
);
HeapFree
(
GetProcessHeap
(),
0
,
lpServiceNameW
);
return
ret
;
}
...
...
@@ -232,9 +258,27 @@ SC_HANDLE WINAPI
OpenServiceW
(
SC_HANDLE
hSCManager
,
LPCWSTR
lpServiceName
,
DWORD
dwDesiredAccess
)
{
FIXME
(
"(%d,%p,%ld): stub
\n
"
,
hSCManager
,
lpServiceName
,
const
char
*
str
=
"System
\\
CurrentControlSet
\\
Services
\\
"
;
WCHAR
lpServiceKey
[
80
];
/* FIXME: this should be dynamically allocated */
HKEY
hKey
;
long
r
;
TRACE
(
"(%d,%p,%ld)
\n
"
,
hSCManager
,
lpServiceName
,
dwDesiredAccess
);
return
1
;
lstrcpyAtoW
(
lpServiceKey
,
str
);
lstrcatW
(
lpServiceKey
,
lpServiceName
);
TRACE
(
"Opening reg key %s
\n
"
,
debugstr_w
(
lpServiceKey
));
/* FIXME: dwDesiredAccess may need some processing */
r
=
RegOpenKeyExW
(
hSCManager
,
lpServiceKey
,
0
,
dwDesiredAccess
,
&
hKey
);
if
(
r
!=
ERROR_SUCCESS
)
return
0
;
TRACE
(
"returning %x
\n
"
,
hKey
);
return
hKey
;
}
...
...
@@ -320,7 +364,29 @@ StartServiceW( SC_HANDLE hService, DWORD dwNumServiceArgs,
BOOL
WINAPI
QueryServiceStatus
(
SC_HANDLE
hService
,
LPSERVICE_STATUS
lpservicestatus
)
{
FIXME
(
"(%d,%p),stub!
\n
"
,
hService
,
lpservicestatus
);
return
TRUE
;
LONG
r
;
DWORD
type
,
val
,
size
;
FIXME
(
"(%x,%p) partial
\n
"
,
hService
,
lpservicestatus
);
/* read the service type from the registry */
size
=
sizeof
val
;
r
=
RegQueryValueExA
(
hService
,
"Type"
,
NULL
,
&
type
,
(
LPBYTE
)
&
val
,
&
size
);
if
(
type
!=
REG_DWORD
)
{
ERR
(
"invalid Type
\n
"
);
return
FALSE
;
}
lpservicestatus
->
dwServiceType
=
val
;
/* FIXME: how are these determined or read from the registry? */
lpservicestatus
->
dwCurrentState
=
0
/*SERVICE_STOPPED*/
;
lpservicestatus
->
dwControlsAccepted
=
0
;
lpservicestatus
->
dwWin32ExitCode
=
NO_ERROR
;
lpservicestatus
->
dwServiceSpecificExitCode
=
0
;
lpservicestatus
->
dwCheckPoint
=
0
;
lpservicestatus
->
dwWaitHint
=
0
;
return
TRUE
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment