1 #include <cutils/properties.h> 2 3 extern "C" { 4 property_get(const char * key,char * value,const char * default_value)5 int property_get(const char* key, char* value, const char* default_value) 6 { 7 return 0; 8 } 9 10 } 11