diff options
author | chai <chaifix@163.com> | 2018-05-31 08:12:40 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-05-31 08:12:40 +0800 |
commit | ad8ffb96789f90180982b344540870a2d4e2d60b (patch) | |
tree | 2bf2e124cb0130acaad1dcce2034ff2847b3d0a2 /3rdparty/SDL/src/hermes/common.inc |
Diffstat (limited to '3rdparty/SDL/src/hermes/common.inc')
-rw-r--r-- | 3rdparty/SDL/src/hermes/common.inc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3rdparty/SDL/src/hermes/common.inc b/3rdparty/SDL/src/hermes/common.inc new file mode 100644 index 0000000..9587e6f --- /dev/null +++ b/3rdparty/SDL/src/hermes/common.inc @@ -0,0 +1,9 @@ +; Some common macros for hermes nasm code + +%macro SDL_FUNC 1 +%ifdef HIDDEN_VISIBILITY +GLOBAL %1:function hidden +%else +GLOBAL %1 +%endif +%endmacro |