9 lines
206 B
C
9 lines
206 B
C
|
#pragma once
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
|
||
|
class IpsPatcher
|
||
|
{
|
||
|
public:
|
||
|
static bool PatchBuffer(string ipsFilepath, uint8_t* inputBuffer, size_t inputBufferSize, uint8_t** outputBuffer, size_t &outputBufferSize);
|
||
|
};
|