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
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.
Thank you hutch :U
thank you MaN i finally FOUND it