News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Unicode data declaration

Started by jj2007, January 01, 2023, 12:58:08 AM

Previous topic - Next topic

jj2007

include \masm32\include\masm32rt.inc
include _dw.asm
.code
_dw HelloW$, "Hello World", 0
start:
  invoke MessageBoxW, 0, addr HelloW$, uni$("Just a test:"), MB_OK
  exit
end start