Rudiments
|
00001 // Copyright (c) 2012 David Muse 00002 // See the COPYING file for more information. 00003 00004 #ifndef RUDIMENTS_DLL_H 00005 #define RUDIMENTS_DLL_H 00006 00007 #ifdef _WIN32 00008 #ifdef LIBRUDIMENTS_EXPORTS 00009 #define RUDIMENTS_DLLSPEC __declspec(dllexport) 00010 #else 00011 #define RUDIMENTS_DLLSPEC __declspec(dllimport) 00012 #endif 00013 #else 00014 #define RUDIMENTS_DLLSPEC 00015 #endif 00016 00017 #endif