2017-04-10 18:29:44 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
|
|
class BpsPatcher
|
|
|
|
{
|
|
|
|
private:
|
2017-04-12 17:29:38 -04:00
|
|
|
static uint64_t ReadBase128Number(ifstream &file);
|
2017-04-10 18:29:44 -04:00
|
|
|
|
|
|
|
public:
|
|
|
|
static vector<uint8_t> PatchBuffer(string bpsFilepath, vector<uint8_t> input);
|
|
|
|
};
|