enumCustomAttributes method
Implementation
int enumCustomAttributes(
Pointer<Pointer> phEnum,
int tk,
int tkType,
Pointer<Uint32> rCustomAttributes,
int cMax,
Pointer<Uint32> pcCustomAttributes,
) => (ptr.ref.vtable + 53)
.cast<
Pointer<
NativeFunction<
Int32 Function(
Pointer,
Pointer<Pointer> phEnum,
Uint32 tk,
Uint32 tkType,
Pointer<Uint32> rCustomAttributes,
Uint32 cMax,
Pointer<Uint32> pcCustomAttributes,
)
>
>
>()
.value
.asFunction<
int Function(
Pointer,
Pointer<Pointer> phEnum,
int tk,
int tkType,
Pointer<Uint32> rCustomAttributes,
int cMax,
Pointer<Uint32> pcCustomAttributes,
)
>()(
ptr.ref.lpVtbl,
phEnum,
tk,
tkType,
rCustomAttributes,
cMax,
pcCustomAttributes,
);