GLOBAL szAppName AS ASCIIZ*9 defines how long the ASCIIZ is, 8
full characters plus the terminating null.
TCHAR szAppName[]=TEXT ("XXXXXXX"); is an undefined string array
in C. Without a value in the brackets, you can make the string
length to your liking, sorta like Basics dynamic string.
Just so happens that in C you can define and initialize in the
same statement. Hope this helps!!!
Cheers,
Cecil

------------------
Leave a comment: