20 lines
519 B
C
20 lines
519 B
C
#pragma once
|
|
|
|
#include "MID/Mid_Def.h"
|
|
|
|
struct Lgc_Core_Struct_State;
|
|
|
|
struct Lgc_Func_Button_Struct_Config
|
|
{
|
|
QString MacroText = QStringLiteral("HELLO WORLD!");
|
|
quint16 SwapUsageLeft = 0x005C;
|
|
quint16 SwapUsageRight = 0x005D;
|
|
QString WebsiteUrl = QStringLiteral("https://www.deepseek.com/");
|
|
};
|
|
|
|
bool Lgc_Func_Button_Func_SendUsageToWindows(quint16 Usage, bool IsPressed);
|
|
bool Lgc_Func_Button_Func_HandlePressedUsage(
|
|
Lgc_Core_Struct_State* p_State,
|
|
quint16 Usage,
|
|
QString* p_TextStatus);
|