Whoops, these macros are needed! Putting them back.
This commit is contained in:
parent
7c9a732b9f
commit
946f0f4632
16
yasm_mac.inc
16
yasm_mac.inc
@ -1,3 +1,19 @@
|
||||
%macro G_LABEL 1
|
||||
%ifdef GSYM_PREFIX
|
||||
_%1:
|
||||
%else
|
||||
%1:
|
||||
%endif
|
||||
%endmacro
|
||||
|
||||
%macro G_EXPORT 1
|
||||
%ifdef GSYM_PREFIX
|
||||
global _%1:function
|
||||
%else
|
||||
global %1:function
|
||||
%endif
|
||||
%endmacro
|
||||
|
||||
%macro G_EXTERN 1
|
||||
%ifdef GSYM_PREFIX
|
||||
extern _%1
|
||||
|
Loading…
Reference in New Issue
Block a user