Magisk/jni/resetprop/resetprop.h

23 lines
444 B
C
Raw Normal View History

2017-04-14 00:06:41 +02:00
/* resetprop.h - API for resetprop
*/
#ifndef _RESETPROP_H_
#define _RESETPROP_H_
#ifdef __cplusplus
extern "C" {
#endif
2017-06-11 14:22:10 +02:00
int prop_exist(const char *name);
2017-04-14 00:06:41 +02:00
int setprop(const char *name, const char *value);
2017-04-30 19:58:52 +02:00
int setprop2(const char *name, const char *value, const int trigger);
2017-04-14 00:06:41 +02:00
char *getprop(const char *name);
int deleteprop(const char *name);
2017-04-30 19:58:52 +02:00
int read_prop_file(const char* filename, const int trigger);
2017-04-14 00:06:41 +02:00
#ifdef __cplusplus
}
#endif
#endif