- Service list entries use a pointer to a group list entry instead of the goup name.
[reactos.git] / reactos / subsys / system / services / services.h
index 31f739c..5c72fcf 100644 (file)
@@ -29,7 +29,7 @@ typedef struct _SERVICE
     LIST_ENTRY ServiceListEntry;
     LPWSTR lpServiceName;
     LPWSTR lpDisplayName;
-    LPWSTR lpServiceGroup;
+    PSERVICE_GROUP lpGroup;
     BOOL bDeleted;
     DWORD dwResumeCount;
 
@@ -109,6 +109,8 @@ DWORD ScmControlDriver(PSERVICE lpService,
 /* groupdb.c */
 
 DWORD ScmCreateGroupList(VOID);
+DWORD ScmSetServiceGroup(PSERVICE lpService,
+                         LPWSTR lpGroupName);
 
 
 /* rpcserver.c */