getFootprintFile method

int getFootprintFile(
  1. int type,
  2. Pointer<Pointer<COMObject>> file
)

Implementation

int getFootprintFile(int type, Pointer<Pointer<COMObject>> file) =>
    (ptr.ref.vtable + 4)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Int32 type,
                            Pointer<Pointer<COMObject>> file)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer, int type, Pointer<Pointer<COMObject>> file)>()(
        ptr.ref.lpVtbl, type, file);