gwenhywfar  4.3.3
cocoa_gui.h
Go to the documentation of this file.
00001 /***************************************************************************
00002  begin       : August 03 2010
00003  copyright   : (C) 2010 by Samuel Strupp
00004  
00005  ***************************************************************************
00006  *          Please see toplevel file COPYING for license details           *
00007  ***************************************************************************/
00008 
00009 
00010 
00011 #ifndef COCOA_GUI_H
00012 #define COCOA_GUI_H
00013 
00014 
00015 
00016 #if defined __GNUC__ && (! defined (__sun)) && (__GNUC__ >= 4 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3))
00017 # ifdef BUILDING_COCOA_GUI
00018 #   define COCOAGUI_API __attribute__ ((visibility("default")))
00019 # else
00020 #   define COCOAGUI_API
00021 # endif
00022 #else
00023 # define COCOAGUI_API
00024 #endif
00025 
00026 
00027 #include <gwenhywfar/gui.h>
00028 #include <gwenhywfar/gui_be.h>
00029 
00030 
00031 #ifdef __cplusplus
00032 extern "C" {
00033 #endif
00034 
00035 
00036 COCOAGUI_API GWEN_GUI *Cocoa_Gui_new();
00037 
00038 
00039 #ifdef __cplusplus
00040 }
00041 #endif
00042 
00043 
00044 
00045 #endif
00046