00001 #ifdef WIN32 00002 #ifdef VGSAPI_EXPORTS 00003 #define VGS_API __declspec(dllexport) 00004 #pragma message ( "VGSAPI_EXPORTS defined, using dllexport" ) 00005 #else 00006 #define VGS_API __declspec(dllimport) 00007 #pragma message ( "VGSAPI_EXPORTS not defined, using dllimport" ) 00008 #endif 00009 #else 00010 /* Make the definition empty for non-windows systems. */ 00011 #define VGS_API 00012 #endif