GetUserObjectInformationA method

int GetUserObjectInformationA(
  1. Pointer<Void> hObj,
  2. int nIndex,
  3. Pointer<Void> pvInfo,
  4. int nLength,
  5. Pointer<Uint64> lpnLengthNeeded,
)

Implementation

int GetUserObjectInformationA(
  ffi.Pointer<ffi.Void> hObj,
  int nIndex,
  ffi.Pointer<ffi.Void> pvInfo,
  int nLength,
  ffi.Pointer<ffi.Uint64> lpnLengthNeeded,
) {
  return (_GetUserObjectInformationA ??= _dylib.lookupFunction<
      _c_GetUserObjectInformationA,
      _dart_GetUserObjectInformationA>('GetUserObjectInformationA'))(
    hObj,
    nIndex,
    pvInfo,
    nLength,
    lpnLengthNeeded,
  );
}