mirror of
https://github.com/chmod760/CopyReadProcessMemory
synced 2026-06-06 15:24:30 +00:00
14 lines
455 B
C++
14 lines
455 B
C++
#pragma once
|
|
#include "argumentParser.h"
|
|
|
|
void print_help();
|
|
void print_version();
|
|
|
|
void execute_selected_mode(const ParsedArguments& args);
|
|
|
|
char* handle_string_inject(const std::string& value, size_t& out_size);
|
|
char* handle_file_path(const std::string& value, size_t& out_size);
|
|
char* handle_remote_payload(const std::string& value, size_t& out_size);
|
|
|
|
void run_execute_logic(const ParsedArguments& args, void * data, size_t size); // --execute flag
|