C
Monitor: Verifying the Rendering Output
/**************************************************************************** ** Copyright (C) 2025 The Qt Company Ltd. ** SPDX-License-Identifier: LicenseRef-Qt-Commercial ** ** This file is part of the Qt Safe Renderer module ****************************************************************************/#ifndef CONTROLLER_H #define CONTROLLER_H #include <string.h> #include <stdint.h> #include "errorcode.h" #include "qsafeglobal.h" #include "itemstatedata.h" void sendStateChangeEvent(const ItemState *state, qchar *msgBuf, size_t len, errorFunc errorHandler); void advanceState(qchar *msgBuf, size_t len, errorFunc errorHandler); const qchar *getCurrentSpeedText(void); void showInfoPanelOnError(quint32 show, qchar *msgBuf, size_t len); #endif