Tagged Questions

8
votes
7answers
20k views

What is the simplest way to convert char[] to/from tchar[] in C/C++(ms)?

This seems like a pretty softball question, but I always have a hard time looking up this function because there seem there are so many variations regarding the referencing of char and tchar.
4
votes
4answers
215 views

should I eliminate TCHAR from Windows code?

I am revising some very old (10 years) C code. The code compiles on Unix/Mac with GCC and cross-compiles for Windows with MinGW. Currently there are TCHAR strings throughout. I'd like to get rid of ...
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
2answers
307 views

How to open a file using _TCHAR* as a file name? c/c++

My main has the following signature: int _tmain(int argc, _TCHAR* argv[]) I would like to preform the following: FILE *inputFilePtr; inputFilePtr = fopen(argv[2], "_r"); But there is a type ...
0
votes
2answers
192 views

Array stores name retrieved from GetVolumeInformation weirdly in Visual C++?

I would like to use the GetVolumeInformation call to retrieve the name of a removable device. I can retrieve the name just fine and store into a TCHAR array variable szVolNameBuff. Here is my code for ...