summaryrefslogtreecommitdiff
path: root/Tests/MacRuntimePath/A/framework2.h
blob: 4576d12dcba79486c875e627b22a1b4b306bf158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#ifndef framework2_h
#define framework2_h

#ifdef WIN32
# ifdef framework2_EXPORTS
#  define FRAMEWORK2_EXPORT __declspec(dllexport)
# else
#  define FRAMEWORK2_EXPORT __declspec(dllimport)
# endif
#else
# define FRAMEWORK2_EXPORT
#endif

void FRAMEWORK2_EXPORT framework2();

#endif