advapi32: Implement QueryServiceStatusEx.
Based on a patch by Anastasius Focht.
diff --git a/include/winsvc.h b/include/winsvc.h
index 93ccaf6..eeb9539 100644
--- a/include/winsvc.h
+++ b/include/winsvc.h
@@ -131,6 +131,15 @@
DWORD dwWaitHint;
} SERVICE_STATUS, *LPSERVICE_STATUS;
+/* Service status process structure */
+
+typedef struct _SERVICE_STATUS_PROCESS
+{
+ SERVICE_STATUS status;
+ DWORD dwProcessId;
+ DWORD dwServiceFlags;
+} SERVICE_STATUS_PROCESS, *LPSERVICE_STATUS_PROCESS;
+
typedef enum _SC_STATUS_TYPE {
SC_STATUS_PROCESS_INFO = 0
} SC_STATUS_TYPE;