Seregon/Hermes

Hermes/Dyforge is a program written in c++ allows you to inject a dll that can analyze all processes in a program, can be used for mod and reverse engeneering

C/3.8 KB/No license
DyForge/include/CommandTypes.h
Hermes / DyForge / include / CommandTypes.h
1#pragma once
2 
3#include <string>
4 
5namespace DyForge {
6 
7enum class CommandType {
8 START_ANALYSIS,
9 STOP_ANALYSIS,
10 LOAD_MOD,
11 UNLOAD_MOD,
12 LIST_MODS,
13 LIST_HOOKS
14};
15 
16struct Command {
17 CommandType type;
18 std::string parameters;
19};
20 
21enum class ResponseType {
22 SUCCESS,
23 ERROR
24};
25 
26struct Response {
27 ResponseType type;
28 std::string message;
29};
30 
31} // namespace DyForge