You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
10 lines
314 B
C++
10 lines
314 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
std::string get_prop(const char *name, bool persist = false);
|
|
int delete_prop(const char *name, bool persist = false);
|
|
int set_prop(const char *name, const char *value, bool skip_svc = false);
|
|
void load_prop_file(const char *filename, bool skip_svc = false);
|