getCurrentSharedModeEnginePeriod method

int getCurrentSharedModeEnginePeriod(
  1. Pointer<Pointer<WAVEFORMATEX>> ppFormat,
  2. Pointer<Uint32> pCurrentPeriodInFrames
)

Implementation

int getCurrentSharedModeEnginePeriod(Pointer<Pointer<WAVEFORMATEX>> ppFormat,
        Pointer<Uint32> pCurrentPeriodInFrames) =>
    (ptr.ref.vtable + 19)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<Pointer<WAVEFORMATEX>> ppFormat,
                            Pointer<Uint32> pCurrentPeriodInFrames)>>>()
            .value
            .asFunction<
                int Function(Pointer, Pointer<Pointer<WAVEFORMATEX>> ppFormat,
                    Pointer<Uint32> pCurrentPeriodInFrames)>()(
        ptr.ref.lpVtbl, ppFormat, pCurrentPeriodInFrames);