Tizen 2.0 Release
[sdk/emulator/qemu.git] / tizen / src / option.h
1 /* 
2  * Emulator
3  *
4  * Copyright (C) 2011, 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: 
7  * SeokYeon Hwang <syeon.hwang@samsung.com>
8  * HyunJun Son <hj79.son@samsung.com>
9  * MunKyu Im <munkyu.im@samsung.com>
10  * GiWoong Kim <giwoong.kim@samsung.com>
11  * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License
15  * as published by the Free Software Foundation; either version 2
16  * of the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
26  *
27  * Contributors:
28  * - S-Core Co., Ltd
29  *
30  */
31
32 #ifndef __OPTION_H__
33 #define __OPTION_H__
34
35 #include <glib.h>
36 #ifndef _WIN32
37 #include <error.h>
38 #endif
39 #include <sys/types.h>
40 #include <dirent.h>
41 #include <unistd.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45
46 int gethostDNS(char *dns1, char *dns2);
47 int gethostproxy(char *proxy);
48 #endif
49