The MASM Forum

Projects => MASM32 => Topic started by: ragdog on September 23, 2012, 09:19:53 PM

Title: Ansii and unicode strings
Post by: ragdog on September 23, 2012, 09:19:53 PM
Hi

How i can use Ansii and Unicode string in my source for ansii and unicode build?

QuoteIFDEF __UNICODE__
WSTR            szProcessName,"Process name"   

ELSE
szProcessName    db "Process name",0

ENDIF
Title: Re: Ansii and unicode strings
Post by: hutch-- on September 23, 2012, 11:54:49 PM
Well, how about reading the reference material in the MASM32 SDK, thats what its there for. Multiple systems including advanced macros the qword wrote. There are also examples of how to use these things.
Title: Re: Ansii and unicode strings
Post by: Mikl__ on December 16, 2012, 01:24:09 AM
I used macro "du" du macro string
local bslash
bslash = 0
irpc c,<string>
if bslash eq 0
if '&c' eq "/"
        bslash = 1
elseif '&c'gt 127
db ('&c'- 0B0h),4
else
dw '&c'
endif
else
           bslash = 0
           if '&c' eq "n"
           DW 0Dh,0Ah
           elseif '&c' eq "/"
           dw '/'
           elseif '&c' eq "r"
           dw 0Dh
           elseif '&c' eq "l"
           dw 0Ah
           elseif '&c' eq "s"
           dw 20h
           elseif '&c' eq "c"
           dw 3Bh
           elseif '&c' eq "t"
           dw 9
   endif
endif
endm
dw 0
endm
for example wHello: du <Hello, world>