Home | History | Annotate | Download | only in hermes
      1 ; Some common macros for hermes nasm code
      2 
      3 %macro SDL_FUNC 1
      4 %ifdef HIDDEN_VISIBILITY
      5 GLOBAL %1:function hidden
      6 %else
      7 GLOBAL %1
      8 %endif
      9 %endmacro
     10