You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
Move find_apk_path to Rust
This commit is contained in:
@@ -202,6 +202,13 @@ struct byte_data : public byte_view {
|
||||
std::vector<size_t> patch(byte_view from, byte_view to);
|
||||
};
|
||||
|
||||
template<size_t N>
|
||||
struct byte_array : public byte_data {
|
||||
byte_array() : byte_data(arr, N), arr{0} {}
|
||||
private:
|
||||
uint8_t arr[N];
|
||||
};
|
||||
|
||||
class byte_channel;
|
||||
|
||||
struct heap_data : public byte_data {
|
||||
|
||||
Reference in New Issue
Block a user