diff options
Diffstat (limited to 'android/avd/hw-config.h')
-rw-r--r-- | android/avd/hw-config.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/android/avd/hw-config.h b/android/avd/hw-config.h index c79ccad..3c2480a 100644 --- a/android/avd/hw-config.h +++ b/android/avd/hw-config.h @@ -34,6 +34,10 @@ typedef struct { #include "android/avd/hw-config-defs.h" } AndroidHwConfig; +/* Set all default values, based on the target API level */ +void androidHwConfig_init( AndroidHwConfig* hwConfig, + int apiLevel ); + /* reads a hardware configuration file from disk. * returns -1 if the file could not be read, or 0 in case of success. * @@ -50,4 +54,7 @@ int androidHwConfig_read( AndroidHwConfig* hwConfig, int androidHwConfig_write( AndroidHwConfig* hwConfig, IniFile* configFile ); +/* Finalize a given hardware configuration */ +void androidHwConfig_done( AndroidHwConfig* config ); + #endif /* _ANDROID_AVD_HW_CONFIG_H */ |