Mesen-X/Utilities/UpsPatcher.h

13 lines
322 B
C
Raw Permalink Normal View History

2017-04-09 22:44:13 -04:00
#pragma once
#include "stdafx.h"
class UpsPatcher
{
private:
2018-03-24 11:22:43 -04:00
static int64_t ReadBase128Number(std::istream &file);
2017-04-09 22:44:13 -04:00
public:
static bool PatchBuffer(std::istream &upsFile, vector<uint8_t> &input, vector<uint8_t> &output);
static bool PatchBuffer(string upsFilepath, vector<uint8_t> &input, vector<uint8_t> &output);
2017-04-09 22:44:13 -04:00
};