Home | History | Annotate | Download | only in include
      1 /**
      2  * @file     morpho_api.h
      3  * @brief    API`}N
      4  * @version  1.0.0
      5  * @date     Tue Sep 21 17:37:35 2010
      6  *
      7  * Copyright (C) 2006-2012 Morpho, Inc.
      8  */
      9 
     10 #ifndef MORPHO_API_H
     11 #define MORPHO_API_H
     12 
     13 /**
     14  * API`gp.
     15  * WindowsDLL\
     16  */
     17 #if defined(MORPHO_DLL) && defined(_WIN32)
     18 #define MORPHO_API(type) __declspec(dllexport) extern type
     19 #else
     20 #define MORPHO_API(type) extern type
     21 #endif
     22 
     23 #endif /* #ifndef MORPHO_API_H */
     24