mirror of
https://github.com/Aryma-f4/Ares-mythic.git
synced 2026-06-18 18:14:12 +00:00
12 lines
264 B
C
12 lines
264 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
|
||
|
|
// Mythic integration functions
|
||
|
|
bool initialize_mythic();
|
||
|
|
void cleanup_mythic();
|
||
|
|
std::string mythic_checkin();
|
||
|
|
std::string execute_command(const std::string& command);
|
||
|
|
|
||
|
|
// External variables
|
||
|
|
extern std::atomic<bool> mythic_running;
|