Click here to Skip to main content
15,910,981 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: fopen and wfopen Pin
David Crow20-Aug-07 5:18
David Crow20-Aug-07 5:18 
AnswerRe: fopen and wfopen Pin
George_George20-Aug-07 17:43
George_George20-Aug-07 17:43 
GeneralRe: fopen and wfopen Pin
David Crow21-Aug-07 2:55
David Crow21-Aug-07 2:55 
GeneralRe: fopen and wfopen Pin
George_George21-Aug-07 3:09
George_George21-Aug-07 3:09 
GeneralRe: fopen and wfopen Pin
David Crow21-Aug-07 3:21
David Crow21-Aug-07 3:21 
AnswerRe: fopen and wfopen Pin
Paresh Chitte20-Aug-07 20:09
Paresh Chitte20-Aug-07 20:09 
GeneralRe: fopen and wfopen Pin
George_George20-Aug-07 20:28
George_George20-Aug-07 20:28 
GeneralRe: fopen and wfopen Pin
Paresh Chitte21-Aug-07 18:19
Paresh Chitte21-Aug-07 18:19 
FILE *fopen( const char *filename, const char *mode );<br />
FILE *_wfopen( const wchar_t *filename, const wchar_t *mode );


The fopen function opens the file specified by filename. _wfopen is a wide-character version of fopen; the arguments to _wfopen are wide-character strings. _wfopen and fopen behave identically otherwise.

If the symbol _UNICODE is defined for your program, parameter "filename" is of type pointer to wchar_t, a 16-bit character type; otherwise, it is of type pointer to char, the normal 8-bit character type.

Please refer below websites for more information,
http://www.i18nguy.com/unicode/c-unicode.html[^]
http://msdn2.microsoft.com/en-us/library/yeby3zcb(VS.80).aspx[^] - Look at "Generic-Text Routine Mappings".

Regards,
Paresh.
GeneralRe: fopen and wfopen Pin
George_George21-Aug-07 20:59
George_George21-Aug-07 20:59 
QuestionTimeout settings Pin
Daria Faucci20-Aug-07 4:25
Daria Faucci20-Aug-07 4:25 
GeneralPlain C++ equivalent of FileSystemWatcher [modified] Pin
benjymous20-Aug-07 4:15
benjymous20-Aug-07 4:15 
QuestionHow to Update Dialog values Pin
simoncoul20-Aug-07 3:44
simoncoul20-Aug-07 3:44 
AnswerRe: How to Update Dialog values Pin
David Crow20-Aug-07 3:54
David Crow20-Aug-07 3:54 
GeneralRe: How to Update Dialog values Pin
simoncoul20-Aug-07 4:12
simoncoul20-Aug-07 4:12 
GeneralRe: How to Update Dialog values Pin
Manfred Staiger20-Aug-07 4:21
Manfred Staiger20-Aug-07 4:21 
QuestionRe: How to Update Dialog values Pin
David Crow20-Aug-07 4:22
David Crow20-Aug-07 4:22 
AnswerRe: How to Update Dialog values Pin
simoncoul20-Aug-07 4:32
simoncoul20-Aug-07 4:32 
GeneralRe: How to Update Dialog values Pin
David Crow20-Aug-07 4:38
David Crow20-Aug-07 4:38 
GeneralRe: How to Update Dialog values Pin
simoncoul20-Aug-07 4:45
simoncoul20-Aug-07 4:45 
GeneralRe: How to Update Dialog values Pin
jhwurmbach20-Aug-07 5:46
jhwurmbach20-Aug-07 5:46 
Questioncan anybody tell me how to read the data from a .cvs file Pin
philiptabraham20-Aug-07 3:30
philiptabraham20-Aug-07 3:30 
AnswerRe: can anybody tell me how to read the data from a .cvs file Pin
Maximilien20-Aug-07 3:55
Maximilien20-Aug-07 3:55 
QuestionRe: can anybody tell me how to read the data from a .cvs file Pin
David Crow20-Aug-07 3:56
David Crow20-Aug-07 3:56 
AnswerRe: can anybody tell me how to read the data from a .cvs file Pin
Justin Perez20-Aug-07 3:58
Justin Perez20-Aug-07 3:58 
GeneralRe: can anybody tell me how to read the data from a .cvs file Pin
David Crow20-Aug-07 4:00
David Crow20-Aug-07 4:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.