getHostType method

int getHostType(
  1. Pointer<Uint32> pdwHostType
)

Implementation

int getHostType(Pointer<Uint32> pdwHostType) => (ptr.ref.vtable + 22)
    .cast<
      Pointer<
        NativeFunction<Int32 Function(Pointer, Pointer<Uint32> pdwHostType)>
      >
    >()
    .value
    .asFunction<int Function(Pointer, Pointer<Uint32> pdwHostType)>()(
  ptr.ref.lpVtbl,
  pdwHostType,
);