mirror of
https://github.com/Aryma-f4/Ares-mythic.git
synced 2026-06-12 21:04:12 +00:00
This is a major rename of the project directory structure from "hummer" to "ares". All project files including source code, headers, resources, build files, and documentation have been moved to the new directory while maintaining their content. The change includes updating Visual Studio solution and project files to reflect the new directory name.
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; |