ENH: add missing files
This commit is contained in:
parent
c7de609a37
commit
237e7d34f9
|
@ -0,0 +1,6 @@
|
|||
#include "testlib.h"
|
||||
|
||||
float TestLib()
|
||||
{
|
||||
return 1.0;
|
||||
}
|
|
@ -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();
|
Loading…
Reference in New Issue