noteChangeTime method

int noteChangeTime(
  1. int dwRegister,
  2. Pointer<FILETIME> pfiletime
)

Implementation

int noteChangeTime(int dwRegister, Pointer<FILETIME> pfiletime) =>
    (ptr.ref.vtable + 7)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Uint32 dwRegister,
                            Pointer<FILETIME> pfiletime)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer, int dwRegister, Pointer<FILETIME> pfiletime)>()(
        ptr.ref.lpVtbl, dwRegister, pfiletime);