move evas version inside extern c.

SVN revision: 49274
This commit is contained in:
Carsten Haitzler 2010-05-29 06:37:19 +00:00
parent 78fd14d116
commit 4bd7dd03d6
1 changed files with 13 additions and 13 deletions

View File

@ -31,18 +31,22 @@
# endif # endif
#endif /* ! _WIN32 */ #endif /* ! _WIN32 */
#ifdef __cplusplus
extern "C" {
#endif
#define EVAS_VERSION_MAJOR 0 #define EVAS_VERSION_MAJOR 0
#define EVAS_VERSION_MINOR 9 #define EVAS_VERSION_MINOR 9
typedef struct _Evas_Version typedef struct _Evas_Version
{ {
int major; int major;
int minor; int minor;
int micro; int micro;
int revision; int revision;
} Evas_Version; } Evas_Version;
EAPI extern Evas_Version *evas_version; EAPI extern Evas_Version *evas_version;
/** /**
* @file * @file
@ -614,10 +618,6 @@ typedef void (*Evas_Event_Cb) (void *data, Evas *e, void *event_info);
typedef Eina_Bool (*Evas_Object_Event_Post_Cb) (void *data, Evas *e); typedef Eina_Bool (*Evas_Object_Event_Post_Cb) (void *data, Evas *e);
typedef void (*Evas_Object_Event_Cb) (void *data, Evas *e, Evas_Object *obj, void *event_info); typedef void (*Evas_Object_Event_Cb) (void *data, Evas *e, Evas_Object *obj, void *event_info);
#ifdef __cplusplus
extern "C" {
#endif
/** /**
* @defgroup Evas_Group Top Level Functions * @defgroup Evas_Group Top Level Functions
* *