StartServiceA method
Implementation
int StartServiceA(
ffi.Pointer<SC_HANDLE__> hService,
int dwNumServiceArgs,
ffi.Pointer<ffi.Pointer<ffi.Int8>> lpServiceArgVectors,
) {
return (_StartServiceA ??=
_dylib.lookupFunction<_c_StartServiceA, _dart_StartServiceA>(
'StartServiceA'))(
hService,
dwNumServiceArgs,
lpServiceArgVectors,
);
}