GetServiceDirectory method
Implementation
int GetServiceDirectory(
ffi.Pointer<SERVICE_STATUS_HANDLE__> hServiceStatus,
int eDirectoryType,
ffi.Pointer<ffi.Uint16> lpPathBuffer,
int cchPathBufferLength,
ffi.Pointer<ffi.Uint64> lpcchRequiredBufferLength,
) {
return (_GetServiceDirectory ??= _dylib.lookupFunction<
_c_GetServiceDirectory,
_dart_GetServiceDirectory>('GetServiceDirectory'))(
hServiceStatus,
eDirectoryType,
lpPathBuffer,
cchPathBufferLength,
lpcchRequiredBufferLength,
);
}