A
active
In windows XP and VB.NET should the "W" functions in the Windows API be
used or should the "A" functions be used
I'm looking at a type library and see things like the following:
#ifdef UNICODE
entry("lstrlenW"),
#else
entry("lstrlenA"),
#endif
I think both VB and XP use unicode so it seems that converting to ASCII is
not necessary. I'm not sure VB and XP can talk to each other in Unicode. Can
they?
used or should the "A" functions be used
I'm looking at a type library and see things like the following:
#ifdef UNICODE
entry("lstrlenW"),
#else
entry("lstrlenA"),
#endif
I think both VB and XP use unicode so it seems that converting to ASCII is
not necessary. I'm not sure VB and XP can talk to each other in Unicode. Can
they?