QueryServiceLockStatusA method

int QueryServiceLockStatusA(
  1. Pointer<SC_HANDLE__> hSCManager,
  2. Pointer<QUERY_SERVICE_LOCK_STATUSA> lpLockStatus,
  3. int cbBufSize,
  4. Pointer<Uint64> pcbBytesNeeded,
)

Implementation

int QueryServiceLockStatusA(
  ffi.Pointer<SC_HANDLE__> hSCManager,
  ffi.Pointer<QUERY_SERVICE_LOCK_STATUSA> lpLockStatus,
  int cbBufSize,
  ffi.Pointer<ffi.Uint64> pcbBytesNeeded,
) {
  return _QueryServiceLockStatusA(
    hSCManager,
    lpLockStatus,
    cbBufSize,
    pcbBytesNeeded,
  );
}