2025-02-19 02:06:45 +00:00
|
|
|
#pragma once
|
|
|
|
#ifndef PRINTMSGTOQDEBUG_H_
|
|
|
|
#define PRINTMSGTOQDEBUG_H_
|
|
|
|
#include "BaseConstVariable.h"
|
2025-03-06 08:41:28 +00:00
|
|
|
#include <format>
|
2025-02-19 02:06:45 +00:00
|
|
|
extern "C" BASECONSTVARIABLEAPI void PrintMsgToQDebug(char* msg);
|
2025-03-06 08:41:28 +00:00
|
|
|
extern "C" BASECONSTVARIABLEAPI void PrintfToQDebug(const char* msg);
|
2025-02-19 04:29:15 +00:00
|
|
|
extern "C" BASECONSTVARIABLEAPI void PrintTipMsgToQDebug(const char* tip, const char* msg);
|
2025-03-06 08:41:28 +00:00
|
|
|
extern "C" BASECONSTVARIABLEAPI void printfinfo(const char* format, ...);
|
2025-02-19 02:06:45 +00:00
|
|
|
#endif // !PRINTMSGTOQDEBUG_H_
|
|
|
|
|
|
|
|
|
|
|
|
|