Download Pelles C here: http://www.smorgasbordet.com/pellesc/
sas MACRO var,quoted_text:VARARG
LOCAL txtname
IFNDEF __UNICODE__
.data
txtname db quoted_text,0
align 4
.code
ELSE
.data
txtname dw quoted_text,0
align 4
.code
ENDIF
mov var,OFFSET txtname
ENDM
include sasMacro.inc
.code
start:
sas edx,"This is a test.", " Another test."
invoke StdOut,edx
invoke ExitProcess,0
END start
Page created in 0.022 seconds with 13 queries.