getPropertyInfoByHandle method

int getPropertyInfoByHandle(
  1. int lHandle,
  2. Pointer<Pointer<Utf16>> pstrName,
  3. Pointer<Int32> pType
)

Implementation

int getPropertyInfoByHandle(
  int lHandle,
  Pointer<Pointer<Utf16>> pstrName,
  Pointer<Int32> pType,
) => (ptr.ref.vtable + 34)
    .cast<
      Pointer<
        NativeFunction<
          Int32 Function(
            Pointer,
            Int32 lHandle,
            Pointer<Pointer<Utf16>> pstrName,
            Pointer<Int32> pType,
          )
        >
      >
    >()
    .value
    .asFunction<
      int Function(
        Pointer,
        int lHandle,
        Pointer<Pointer<Utf16>> pstrName,
        Pointer<Int32> pType,
      )
    >()(ptr.ref.lpVtbl, lHandle, pstrName, pType);