repo.or.cz
/
io
/
quag.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed a lazySlot bug where lazy slots in different objects end up pointing to the...
[io/quag.git]
/
libs
/
iovm
/
source
/
IoVMApi.h
blob
f842a140aac1c84fb383124b240b53722b2e54f1
1
#ifndef IOVM_API_H_
2
#define IOVM_API_H_
3
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
10
11
#else
12
#define IOVM_API
13
#endif
14
15
#endif