blob: 4bda69c23e18921e930a3551e854530dd761ccb9 [file] [log] [blame]
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -08001/* Copyright (C) 2007-2008 The Android Open Source Project
2**
3** This software is licensed under the terms of the GNU General Public
4** License version 2, as published by the Free Software Foundation, and
5** may be copied, distributed, and modified under those terms.
6**
7** This program is distributed in the hope that it will be useful,
8** but WITHOUT ANY WARRANTY; without even the implied warranty of
9** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10** GNU General Public License for more details.
11*/
12#ifndef _ANDROID_GLOBALS_H
13#define _ANDROID_GLOBALS_H
14
15#include "android/avd/info.h"
16#include "android/avd/hw-config.h"
17
David 'Digit' Turner2cab5d52014-02-27 18:40:34 +010018/* Maximum numbers of emulators that can run concurrently without
19 * forcing their port numbers with the -port option.
20 * This is not a hard limit. Instead, when starting up, the program
21 * will trying to bind to localhost ports 5554 + n*2, for n in
22 * [0..MAX_EMULATORS), if it fails, it will refuse to start.
23 * You can route around this by using the -port or -ports options
24 * to specify the ports manually.
25 */
26#define MAX_ANDROID_EMULATORS 64
27
The Android Open Source Project8b23a6c2009-03-03 19:30:32 -080028/* this structure is setup when loading the virtual device
29 * after that, you can read the 'flags' field to determine
30 * wether a data or cache wipe has been in effect.
31 */
32extern AvdInfoParams android_avdParams[1];
33
34/* a pointer to the android virtual device information
35 * object, which can be queried for the paths of various
36 * image files or the skin
37 */
38extern AvdInfo* android_avdInfo;
39
40/* the hardware configuration for this specific virtual device */
41extern AndroidHwConfig android_hw[1];
42
43#endif /* _ANDROID_GLOBALS_H */