refactor: rename project directory from hummer to ares

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.
This commit is contained in:
Aryma
2026-04-14 13:51:26 +07:00
parent 14397b72f4
commit e14b1f21eb
18 changed files with 5 additions and 5 deletions

12
ares/persistence.h Normal file
View File

@@ -0,0 +1,12 @@
#pragma once
#include <string>
// Persistence functions
bool install_persistence(const std::wstring& executablePath);
bool check_persistence(const std::wstring& executablePath);
bool install_registry_persistence(const std::wstring& executablePath);
bool install_service_persistence(const std::wstring& executablePath);
bool install_scheduled_task(const std::wstring& executablePath);
bool install_wmi_persistence(const std::wstring& executablePath);
bool install_startup_persistence(const std::wstring& executablePath);