12 lines
No EOL
206 B
C++
12 lines
No EOL
206 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
class UpsPatcher
|
|
{
|
|
private:
|
|
static uint64_t ReadBase128Number(ifstream &file);
|
|
|
|
public:
|
|
static vector<uint8_t> PatchBuffer(string upsFilepath, vector<uint8_t> input);
|
|
}; |