QueryServiceLockStatusW method

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

Implementation

int QueryServiceLockStatusW(
  ffi.Pointer<SC_HANDLE__> hSCManager,
  ffi.Pointer<QUERY_SERVICE_LOCK_STATUSW> lpLockStatus,
  int cbBufSize,
  ffi.Pointer<ffi.Uint64> pcbBytesNeeded,
) {
  return _QueryServiceLockStatusW(
    hSCManager,
    lpLockStatus,
    cbBufSize,
    pcbBytesNeeded,
  );
}