1 /* AbiSource Application Framework
2  * Copyright (c) 2004 Hubert Figuiere
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA.
18  */
19 
20 
21 #ifndef __AP_FEATURES_H__
22 #define __AP_FEATURES_H__
23 
24 #ifdef HAVE_CONFIG_H
25 #include "config.h"
26 #endif
27 
28 #include "xap_Features.h"
29 
30 /*
31    add platforms here as needed
32 
33    example (win32)
34 
35    #ifdef WIN32
36    #  include "ap_Win32Features.h"
37    #endif
38 */
39 
40 #ifdef EMBEDDED_TARGET
41 #  include "ap_EmbeddedFeatures.h"
42 #endif
43 
44 
45 #ifndef XAP_SIMPLE_MENU
46 #  define XAP_SIMPLE_MENU 0
47 #endif
48 
49 #ifndef XAP_SIMPLE_TOOLBAR
50 #  define XAP_SIMPLE_TOOLBAR 0
51 #endif
52 
53 #endif
54