getVoices method

int getVoices(
  1. Pointer<Utf16> RequiredAttributes,
  2. Pointer<Utf16> OptionalAttributes,
  3. Pointer<Pointer<COMObject>> ObjectTokens
)

Implementation

int getVoices(
        Pointer<Utf16> RequiredAttributes,
        Pointer<Utf16> OptionalAttributes,
        Pointer<Pointer<COMObject>> ObjectTokens) =>
    (ptr.ref.vtable + 33)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<Utf16> RequiredAttributes,
                            Pointer<Utf16> OptionalAttributes,
                            Pointer<Pointer<COMObject>> ObjectTokens)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<Utf16> RequiredAttributes,
                    Pointer<Utf16> OptionalAttributes,
                    Pointer<Pointer<COMObject>> ObjectTokens)>()(
        ptr.ref.lpVtbl, RequiredAttributes, OptionalAttributes, ObjectTokens);