GridAPI.h

00001 #ifndef GRID_API
00002 
00003 #ifndef _WIN32
00004 
00005 #define GRID_API 
00006 
00007 #else
00008 
00009 #ifdef grid_EXPORTS
00010 #define GRID_EXPORTS
00011 #endif
00012 
00013 #ifdef GRID_EXPORTS
00014 #define GRID_API  __declspec(dllexport)
00015 #else
00016 #define GRID_API  __declspec(dllimport)
00017 #endif
00018 
00019 #endif
00020 
00021 namespace Fiber
00022 {
00023 
00029 
00030 extern GRID_API int GridInit();
00031 
00032 }
00033 
00034 #endif // GRID_API 
00035