mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-28 04:25:27 +00:00
22 lines
365 B
C
22 lines
365 B
C
|
/* resetprop.h - API for resetprop
|
||
|
*/
|
||
|
|
||
|
#ifndef _RESETPROP_H_
|
||
|
#define _RESETPROP_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
int init_resetprop();
|
||
|
int setprop(const char *name, const char *value);
|
||
|
int setprop2(const char *name, const char *value, int trigger);
|
||
|
char *getprop(const char *name);
|
||
|
int deleteprop(const char *name);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|