News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

question about UTF-8 ...

Started by winge, October 03, 2005, 08:00:45 PM

Previous topic - Next topic

winge

i just curious ...

i was trying to use notepad write an program in UTF-8 encode, i found it will not be complie by MASM32. error msg shows: "error A2119: language type must be specified". and ... if i use Unicode for my .asm file, i will have: "only white space or comment can follow backslash" for including lib. and all the way "syntax error" for my codes.

i know my questions probably weird or stupid ... but i wanna know how to use UNICODE or UTF-8 encoding in my program. any answer will be appreciated, thank you in advanced :red

hutch--

Basically ML.EXE does not recognise the non ANSI text so it generates an error. This is generally the case with most compilers and things like system settings. MASM is capable of producing UNICODE programs using the UNICODE APIs and resource APIs.
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

winge


bluex

thank you MaN i finally FOUND it