yaze 0.2.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
bps.h
Go to the documentation of this file.
1#ifndef YAZE_UTIL_BPS_H
2#define YAZE_UTIL_BPS_H
3
4#include <cstdint>
5#include <vector>
6
7namespace yaze {
8namespace util {
9
10void CreateBpsPatch(const std::vector<uint8_t> &source,
11 const std::vector<uint8_t> &target,
12 std::vector<uint8_t> &patch);
13
14void ApplyBpsPatch(const std::vector<uint8_t> &source,
15 const std::vector<uint8_t> &patch,
16 std::vector<uint8_t> &target);
17
18} // namespace util
19} // namespace yaze
20
21#endif // YAZE_UTIL_BPS_H
void CreateBpsPatch(const std::vector< uint8_t > &source, const std::vector< uint8_t > &target, std::vector< uint8_t > &patch)
Definition bps.cc:47
void ApplyBpsPatch(const std::vector< uint8_t > &source, const std::vector< uint8_t > &patch, std::vector< uint8_t > &target)
Definition bps.cc:136
Main namespace for the application.
Definition controller.cc:18