Magisk/native/jni/include/resetprop.h
2018-11-04 04:15:51 -05:00

13 lines
450 B
C

/* resetprop.h - API for resetprop
*/
#pragma once
int prop_exist(const char *name);
int setprop(const char *name, const char *value, const bool trigger = true);
char *getprop(const char *name, bool persist = false);
void getprop(void (*callback)(const char *, const char *, void *), void *cookie, bool persist = false);
int deleteprop(const char *name, bool persist = false);
int load_prop_file(const char *filename, const bool trigger = true);