cmake/Tests/MacRuntimePath/A/framework2.h

18 lines
293 B
C
Raw Normal View History

2013-11-03 12:27:13 +02:00
#ifndef framework2_h
#define framework2_h
#ifdef WIN32
2018-08-09 18:06:22 +02:00
# ifdef framework2_EXPORTS
# define FRAMEWORK2_EXPORT __declspec(dllexport)
# else
# define FRAMEWORK2_EXPORT __declspec(dllimport)
# endif
2013-11-03 12:27:13 +02:00
#else
2018-08-09 18:06:22 +02:00
# define FRAMEWORK2_EXPORT
2013-11-03 12:27:13 +02:00
#endif
void FRAMEWORK2_EXPORT framework2();
#endif