getFieldProps method

int getFieldProps(
  1. int mb,
  2. Pointer<Uint32> pClass,
  3. Pointer<Utf16> szField,
  4. int cchField,
  5. Pointer<Uint32> pchField,
  6. Pointer<Uint32> pdwAttr,
  7. Pointer<Pointer<Uint8>> ppvSigBlob,
  8. Pointer<Uint32> pcbSigBlob,
  9. Pointer<Uint32> pdwCPlusTypeFlag,
  10. Pointer<Pointer<NativeType>> ppValue,
  11. Pointer<Uint32> pcchValue,
)

Implementation

int getFieldProps(
  int mb,
  Pointer<Uint32> pClass,
  Pointer<Utf16> szField,
  int cchField,
  Pointer<Uint32> pchField,
  Pointer<Uint32> pdwAttr,
  Pointer<Pointer<Uint8>> ppvSigBlob,
  Pointer<Uint32> pcbSigBlob,
  Pointer<Uint32> pdwCPlusTypeFlag,
  Pointer<Pointer> ppValue,
  Pointer<Uint32> pcchValue,
) => (ptr.ref.vtable + 57)
    .cast<
      Pointer<
        NativeFunction<
          Int32 Function(
            Pointer,
            Uint32 mb,
            Pointer<Uint32> pClass,
            Pointer<Utf16> szField,
            Uint32 cchField,
            Pointer<Uint32> pchField,
            Pointer<Uint32> pdwAttr,
            Pointer<Pointer<Uint8>> ppvSigBlob,
            Pointer<Uint32> pcbSigBlob,
            Pointer<Uint32> pdwCPlusTypeFlag,
            Pointer<Pointer> ppValue,
            Pointer<Uint32> pcchValue,
          )
        >
      >
    >()
    .value
    .asFunction<
      int Function(
        Pointer,
        int mb,
        Pointer<Uint32> pClass,
        Pointer<Utf16> szField,
        int cchField,
        Pointer<Uint32> pchField,
        Pointer<Uint32> pdwAttr,
        Pointer<Pointer<Uint8>> ppvSigBlob,
        Pointer<Uint32> pcbSigBlob,
        Pointer<Uint32> pdwCPlusTypeFlag,
        Pointer<Pointer> ppValue,
        Pointer<Uint32> pcchValue,
      )
    >()(
  ptr.ref.lpVtbl,
  mb,
  pClass,
  szField,
  cchField,
  pchField,
  pdwAttr,
  ppvSigBlob,
  pcbSigBlob,
  pdwCPlusTypeFlag,
  ppValue,
  pcchValue,
);