findFolderFromIDList method

int findFolderFromIDList(
  1. Pointer<ITEMIDLIST> pidl,
  2. Pointer<Pointer<COMObject>> ppkf
)

Implementation

int findFolderFromIDList(
  Pointer<ITEMIDLIST> pidl,
  Pointer<Pointer<COMObject>> ppkf,
) => (ptr.ref.vtable + 11)
    .cast<
      Pointer<
        NativeFunction<
          Int32 Function(
            Pointer,
            Pointer<ITEMIDLIST> pidl,
            Pointer<Pointer<COMObject>> ppkf,
          )
        >
      >
    >()
    .value
    .asFunction<
      int Function(
        Pointer,
        Pointer<ITEMIDLIST> pidl,
        Pointer<Pointer<COMObject>> ppkf,
      )
    >()(ptr.ref.lpVtbl, pidl, ppkf);