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
46fed9f1
Commit
46fed9f1
authored
May 07, 2007
by
Rolf Kalbermatter
Committed by
Alexandre Julliard
May 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Add prototypes for EnumServicesStatusExA/W.
parent
4b7c5097
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
3 deletions
+23
-3
winsvc.h
include/winsvc.h
+23
-3
No files found.
include/winsvc.h
View file @
46fed9f1
...
...
@@ -185,13 +185,28 @@ typedef struct _ENUM_SERVICE_STATUSW {
SERVICE_STATUS
ServiceStatus
;
}
ENUM_SERVICE_STATUSW
,
*
LPENUM_SERVICE_STATUSW
;
DECL_WINELIB_TYPE_AW
(
ENUM_SERVICE_STATUS
)
DECL_WINELIB_TYPE_AW
(
LPENUM_SERVICE_STATUS
)
typedef
struct
_ENUM_SERVICE_STATUS_PROCESSA
{
LPSTR
lpServiceName
;
LPSTR
lpDisplayName
;
SERVICE_STATUS_PROCESS
ServiceStatusProcess
;
}
ENUM_SERVICE_STATUS_PROCESSA
,
*
LPENUM_SERVICE_STATUS_PROCESSA
;
typedef
struct
_ENUM_SERVICE_STATUS_PROCESSW
{
LPWSTR
lpServiceName
;
LPWSTR
lpDisplayName
;
SERVICE_STATUS_PROCESS
ServiceStatusProcess
;
}
ENUM_SERVICE_STATUS_PROCESSW
,
*
LPENUM_SERVICE_STATUS_PROCESSW
;
DECL_WINELIB_TYPE_AW
(
ENUM_SERVICE_STATUS_PROCESS
)
DECL_WINELIB_TYPE_AW
(
LPENUM_SERVICE_STATUS_PROCESS
)
typedef
enum
_SC_ENUM_TYPE
{
SC_ENUM_PROCESS_INFO
=
0
}
SC_ENUM_TYPE
;
DECL_WINELIB_TYPE_AW
(
ENUM_SERVICE_STATUS
)
DECL_WINELIB_TYPE_AW
(
LPENUM_SERVICE_STATUS
)
typedef
struct
_QUERY_SERVICE_CONFIGA
{
DWORD
dwServiceType
;
DWORD
dwStartType
;
...
...
@@ -307,6 +322,11 @@ BOOL WINAPI EnumServicesStatusA(SC_HANDLE,DWORD,DWORD,LPENUM_SERVICE_STAT
BOOL
WINAPI
EnumServicesStatusW
(
SC_HANDLE
,
DWORD
,
DWORD
,
LPENUM_SERVICE_STATUSW
,
DWORD
,
LPDWORD
,
LPDWORD
,
LPDWORD
);
#define EnumServicesStatus WINELIB_NAME_AW(EnumServicesStatus)
BOOL
WINAPI
EnumServicesStatusExA
(
SC_HANDLE
,
SC_ENUM_TYPE
,
DWORD
,
DWORD
,
LPBYTE
,
DWORD
,
LPDWORD
,
LPDWORD
,
LPDWORD
,
LPCSTR
);
BOOL
WINAPI
EnumServicesStatusExW
(
SC_HANDLE
,
SC_ENUM_TYPE
,
DWORD
,
DWORD
,
LPBYTE
,
DWORD
,
LPDWORD
,
LPDWORD
,
LPDWORD
,
LPCWSTR
);
#define EnumServicesStatus WINELIB_NAME_AW(EnumServicesStatus)
BOOL
WINAPI
GetServiceDisplayNameA
(
SC_HANDLE
,
LPCSTR
,
LPSTR
,
LPDWORD
);
BOOL
WINAPI
GetServiceDisplayNameW
(
SC_HANDLE
,
LPCWSTR
,
LPWSTR
,
LPDWORD
);
#define GetServiceDisplayName WINELIB_NAME_AW(GetServiceDisplayName)
...
...
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