From bae1bc39312d5019bd9a5b8d840a529213a69a17 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Tue, 3 Mar 2009 14:04:15 -0800 Subject: auto import from //depot/cupcake/@132589 --- android/user-config.h | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 android/user-config.h (limited to 'android/user-config.h') diff --git a/android/user-config.h b/android/user-config.h deleted file mode 100644 index 5fc6325..0000000 --- a/android/user-config.h +++ /dev/null @@ -1,51 +0,0 @@ -/* Copyright (C) 2009 The Android Open Source Project -** -** This software is licensed under the terms of the GNU General Public -** License version 2, as published by the Free Software Foundation, and -** may be copied, distributed, and modified under those terms. -** -** This program is distributed in the hope that it will be useful, -** but WITHOUT ANY WARRANTY; without even the implied warranty of -** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -** GNU General Public License for more details. -*/ -#ifndef _ANDROID_USER_CONFIG_H -#define _ANDROID_USER_CONFIG_H - -#include "android/avd/info.h" -#include - -/* a structure used to model the user-configuration settings - * - * At the moment, this is only used to store the last position - * of the emulator window and a unique 64-bit UUID. We might - * add more AVD-specific preferences here in the future. - * - * By definition, these settings should be optional and we - * should be able to work without them, unlike the AVD - * configuration information found in config.ini - */ -typedef struct AUserConfig AUserConfig; - -/* Create a new AUserConfig object from a given AvdInfo */ -AUserConfig* auserConfig_new( AvdInfo* info ); - -/* Retrieve the unique UID for this AVD */ -uint64_t auserConfig_getUUID( AUserConfig* uconfig ); - -/* Retrieve the stored window position for this AVD */ -void auserConfig_getWindowPos( AUserConfig* uconfig, int *pX, int *pY ); - -/* Change the stored window position for this AVD */ -void auserConfig_setWindowPos( AUserConfig* uconfig, int x, int y ); - -/* Save the user configuration back to the content directory. - * Should be used in an atexit() handler. This will effectively - * only save the user configuration to disk if its content - * has changed. - */ -void auserConfig_save( AUserConfig* uconfig ); - -/* */ - -#endif /* _ANDROID_USER_CONFIG_H */ -- cgit v1.1