mirror of
https://github.com/yawut/SDL.git
synced 2026-08-02 00:15:12 -05:00
10 lines
145 B
PHP
10 lines
145 B
PHP
; Some common macros for hermes nasm code
|
|
|
|
%macro SDL_FUNC 1
|
|
%ifdef HIDDEN_VISIBILITY
|
|
GLOBAL %1:function hidden
|
|
%else
|
|
GLOBAL %1
|
|
%endif
|
|
%endmacro
|