From 0fb7d7ca0e67aac21ba90ca4f5cbbd16bbc576f7 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Sat, 7 Feb 2009 15:06:59 +0000 Subject: [PATCH] - Add a new member to SC_RPC_CONFIG_INFOA structure - This hack is currently required to pass LPSERVICE_DESCRIPTION onto services via rpc as the member is lpDescription is a variable length string pointer svn path=/trunk/; revision=39455 --- reactos/include/reactos/idl/svcctl.idl | 1 + 1 file changed, 1 insertion(+) diff --git a/reactos/include/reactos/idl/svcctl.idl b/reactos/include/reactos/idl/svcctl.idl index 061c3f38365..115d1f44225 100644 --- a/reactos/include/reactos/idl/svcctl.idl +++ b/reactos/include/reactos/idl/svcctl.idl @@ -189,6 +189,7 @@ typedef struct _SC_RPC_CONFIG_INFOA { [case(6)] LPSERVICE_RPC_REQUIRED_PRIVILEGES_INFO psrp; [case(7)] LPSERVICE_PRESHUTDOWN_INFO psps; } DUMMYUNIONNAME; + [string, range(0, 8 * 1024)] LPSTR lpDescription; //FIXME } SC_RPC_CONFIG_INFOA, *LPSC_RPC_CONFIG_INFOA; typedef struct _SC_RPC_CONFIG_INFOW {