GetPointerInfoHistory method

int GetPointerInfoHistory(
  1. int pointerId,
  2. Pointer<Uint32> entriesCount,
  3. Pointer<POINTER_INFO> pointerInfo
)

Implementation

int GetPointerInfoHistory(
  int pointerId,
  ffi.Pointer<ffi.Uint32> entriesCount,
  ffi.Pointer<POINTER_INFO> pointerInfo,
) {
  return (_GetPointerInfoHistory ??= _dylib.lookupFunction<
      _c_GetPointerInfoHistory,
      _dart_GetPointerInfoHistory>('GetPointerInfoHistory'))(
    pointerId,
    entriesCount,
    pointerInfo,
  );
}