StartServiceW method
Implementation
int StartServiceW(
ffi.Pointer<SC_HANDLE__> hService,
int dwNumServiceArgs,
ffi.Pointer<ffi.Pointer<ffi.Uint16>> lpServiceArgVectors,
) {
return (_StartServiceW ??=
_dylib.lookupFunction<_c_StartServiceW, _dart_StartServiceW>(
'StartServiceW'))(
hService,
dwNumServiceArgs,
lpServiceArgVectors,
);
}