ENH: add missing files

This commit is contained in:
Bill Hoffman 2005-07-14 13:50:27 -04:00
parent c7de609a37
commit 237e7d34f9
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#include "testlib.h"
float TestLib()
{
return 1.0;
}

View File

@ -0,0 +1,11 @@
#ifdef _WIN32
# ifdef testlib_EXPORTS
# define CM_TEST_LIB_EXPORT __declspec( dllexport )
# else
# define CM_TEST_LIB_EXPORT __declspec( dllimport )
# endif
#else
# define CM_TEST_LIB_EXPORT
#endif
CM_TEST_LIB_EXPORT float TestLib();