Tagged Questions

4
votes
2answers
3k views

strcmp or _tcscmp in UNICODE

For comparing strings in UNICODE versions is it advisable to use strcmp or _tcscmp? Thanks in advance
2
votes
1answer
111 views

GIT: does not handle filenames which contain unicode char(e.g. chinese/korean)

Issues: Using ls in GIT shows all unicode in filenames as '?' (i.e. ???.mp3). When using git add -A the following error is returned: "fatal: unable to stat 'example/???.mp3': no such file or ...
0
votes
2answers
859 views

UNICODE_STRING to Null terminated

I need to convert a UNICODE_STRING structure to a simple NULL TERMINATED STRING. typedef struct _UNICODE_STRING { USHORT Length; USHORT MaximumLength; PWSTR Buffer; } ...