Fixed a lazySlot bug where lazy slots in different objects end up pointing to the...
[io/quag.git] / libs / iovm / source / IoVMApi.h
blobf842a140aac1c84fb383124b240b53722b2e54f1
1 #ifndef IOVM_API_H_
2 #define IOVM_API_H_
4 #if !defined(__MINGW32__) && defined(WIN32)
5 #if defined(BUILDING_IOVM_DLL) || defined(BUILDING_IOVMALL_DLL)
6 #define IOVM_API __declspec(dllexport)
7 #else
8 #define IOVM_API __declspec(dllimport)
9 #endif
11 #else
12 #define IOVM_API
13 #endif
15 #endif