mirror of
https://github.com/libretro/Mesen.git
synced 2024-12-13 20:42:24 +00:00
13 lines
323 B
C++
13 lines
323 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class UpsPatcher
|
|
{
|
|
private:
|
|
static uint64_t ReadBase128Number(std::istream &file);
|
|
|
|
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);
|
|
}; |