mirror of
https://github.com/donnaskiez/ac.git
synced 2024-11-21 22:24:08 +01:00
17 lines
317 B
C++
17 lines
317 B
C++
|
#include "common.hpp"
|
||
|
|
||
|
namespace framework {
|
||
|
class patch
|
||
|
{
|
||
|
private:
|
||
|
char* image_name;
|
||
|
void* image_base;
|
||
|
void* patch_address;
|
||
|
void* original_bytes;
|
||
|
unsigned long patch_size;
|
||
|
|
||
|
public:
|
||
|
patch(char* image_name);
|
||
|
~patch();
|
||
|
};
|
||
|
}
|