Bug fix TIVI-839 ,change the design and permit operation of the music player while...
[profile/ivi/ico-uxf-homescreen.git] / ico-app-framework / ico_apf_apimacro.h
1 /*
2  * Copyright (c) 2013, TOYOTA MOTOR CORPORATION.
3  *
4  * This program is licensed under the terms and conditions of the
5  * Apache License, version 2.0.  The full text of the Apache License is at
6  * http://www.apache.org/licenses/LICENSE-2.0
7  *
8  */
9 /**
10  * @brief   header file of AppsController interface(API) macros
11  *
12  * @date    Feb-28-2013
13  */
14
15 #ifndef __ICO_APF_APIMACRO_H__
16 #define __ICO_APF_APIMACRO_H__
17
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21
22 /* Macros                                       */
23 #if defined(__GNUC__) && __GNUC__ >= 4
24 #define ICO_APF_API __attribute__ ((visibility("default")))
25 #else
26 #define ICO_APF_API
27 #endif
28
29 #ifdef  __cplusplus
30 }
31 #endif
32 #endif /*__ICO_APF_APIMACRO_H__*/
33