Tou could add this at the top of your file:
typedef unsigned char UChar;
or (uglier):
#define UChar (unsigned char)
It's a matter of taste. I guess jkr's solution is better.
Main Topics
Browse All TopicsI am a Foxpro/VB programmer but have been asked to put together an app which must be done in Visual C++. I have a block of C code which runs fine, but when I try to cut and paste into a MFC Visual C++ app (created with the wizard), I get the same error messages. The line of code is:
UChar FileName = "\\\\.\\NTDS0";
That line is in the NTDSDlg.cpp file immediately after the #include statements
The errors return when I try to compile are:
NTDSDlg.cpp (21)error C2146 syntax error missing ";" before identifier
NTDSDlg.cpp (21)error C2501 "UChar" missing storage-class or type specifiers
NTDSDlg.cpp (21)error C1004 fatal error - unexpected end of file encountered
I am absolutely new to C/C++ and trying to learn as fast as I can. Any help would be appreciated.
Raymond_Miller@s-s-t-i.com
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
The problem is that UChar is not a type. The type you want is an unsigned char. You can either use unsigned char in your code
unsigned char FileName = "\\\\.\\NTDS0";
or you can use UCHAR as jkr mentioned, since it is defined in VC++ standard includes. Or if you want to be able to use UChar, you need to typedef it yourself, as nivel has already explained.
Oh, but wait, there's more.
I don't know what you want UChar to be ... We all assumed that you wanted an unsigned character, since that's generally what that means. But you cannot do:
unsigned char FileName = "\\\\.\\NTDS0";
OR UCHAR or a UChar if it is typedef'd to unsigned char.
"\\\\.\\NTDS0" is not a character. It's an ARRAY of characters.
What you need to do depends on what your going to do with FileName, but you will probably want to do:
unsigned char* FileName = "\\\\.\\NTDS0";
You say "I have a block of C code which runs fine" ... So that means you compiled it and it ran fine ... ?!?! What did you use to compile it, since it does not work in VC? What was UChar defined to in that project?
Sorry conchita. I tried to post this yesterday but I think EE was having some problems. I'm giving jkr the points because changing the case from UChar to UCHAR did the trick. I didn't compile it with UChar. The CD came with a demo program and source but the demo was already compiled when I got it so I have no way of knowing if the source file I got was slightly different from what they actually compiled for the exe.
I do have another problem though. I'm trying to update and edit box's variable with a numeric value as I process a loop. The counter is type long and with each pass through the loop I try to display the progress in an edit box with a line like:
m_display = loopCounter;
UpdateData(FALSE);
(m_display is the CString variable attached to the editbox)
On the next pass through the loop I want to continue the progress with something like:
m_display = m_display + loopCounter;
UpdateData(FALSE);
The goal is to have the edit box update with each pass like this:
1 2 3 4 5 ... 50
I keep getting errors. Is there a function to convert the long type to a character type like there is in VB and Foxpro?
Thanks for your help guys. jkr, I'm holding off assigning the points just for a day or two to see if I get any further response. Thanks again to all.
Well, I'm glad you got things working, I guess, although it would be a lot better if you understood things. I will say one more time, and I think everyone (including jkr) will agree with me here - you cannot do:
UCHAR FileName = "\\\\.\\NTDS0";
Which is what you have said you have done. It will not compile. It will not work. If what you have compiles, it does not look like that.
Business Accounts
Answer for Membership
by: jkrPosted on 2001-01-22 at 11:46:09ID: 167287
Well, the compiler does not know about 'UChar'. But VC++ knows about UCHAR, so the easiest way is to change 'UChar' to read 'UCHAR' (there would be some 'tricks' to not have to do that, but since you mentioned you're beginner, I don't want to confuse you)