On Wed, 31 Jan 2007, Bang Jun-Young wrote:
[...]
-BOOL WINAPI StartServiceCtrlDispatcherA( LPSERVICE_TABLE_ENTRYA servent ) +BOOL WINAPI StartServiceCtrlDispatcherA(CONST LPSERVICE_TABLE_ENTRYA servent)
Maybe your troubles come from the fact that this should be:
BOOL WINAPI StartServiceCtrlDispatcherA(CONST SERVICE_TABLE_ENTRYA* servent)
The former means that you are not allowed to modify the servent pointer, while the latter means you are not allowed to modify the structure pointed to by servent.