c0e249e993
This reverts commitdaf3b57e89
, reversing changes made to7a6e0b7d77
.
13 lines
No EOL
322 B
C++
13 lines
No EOL
322 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class UpsPatcher
|
|
{
|
|
private:
|
|
static int64_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);
|
|
}; |