getTimeOfLastChange method

int getTimeOfLastChange(
  1. Pointer<COMObject> pmkObjectName,
  2. Pointer<FILETIME> pfiletime
)

Implementation

int getTimeOfLastChange(
        Pointer<COMObject> pmkObjectName, Pointer<FILETIME> pfiletime) =>
    (ptr.ref.vtable + 8)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(Pointer, Pointer<COMObject> pmkObjectName,
                        Pointer<FILETIME> pfiletime)>>>()
        .value
        .asFunction<
            int Function(
                Pointer,
                Pointer<COMObject> pmkObjectName,
                Pointer<FILETIME>
                    pfiletime)>()(ptr.ref.lpVtbl, pmkObjectName, pfiletime);