Click here to Skip to main content
16,005,121 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: sdi Pin
ashish dogra2-Jul-06 22:36
ashish dogra2-Jul-06 22:36 
GeneralRe: sdi Pin
Hamid_RT2-Jul-06 23:05
Hamid_RT2-Jul-06 23:05 
GeneralRe: sdi Pin
ashish dogra2-Jul-06 22:54
ashish dogra2-Jul-06 22:54 
QuestionUrgent : How to read a unicode file in C/C++ Pin
Rocky Marrone2-Jul-06 21:51
Rocky Marrone2-Jul-06 21:51 
AnswerRe: Urgent : How to read a unicode file in C/C++ Pin
Don Box2-Jul-06 21:55
Don Box2-Jul-06 21:55 
GeneralRe: Urgent : How to read a unicode file in C/C++ Pin
Rocky Marrone2-Jul-06 22:05
Rocky Marrone2-Jul-06 22:05 
GeneralRe: Urgent : How to read a unicode file in C/C++ Pin
Viorel.2-Jul-06 22:15
Viorel.2-Jul-06 22:15 
GeneralRe: Urgent : How to read a unicode file in C/C++ Pin
Rocky Marrone2-Jul-06 22:19
Rocky Marrone2-Jul-06 22:19 
Thnx for the reply first

thnx for giving me some time

here is the peice of code i m not getting the result


FILE* fp = NULL;
wchar_t* buf = (wchar_t*)malloc(sizeof(wchar_t) * 200);
wchar_t* retbuf = NULL;

if ((fp = fopen("d:/GRCasual.txt", "r")) == NULL) // opens the file
{
return 0;
}


while(!feof(fp))
{
/*fseek(fp,sizeof(char),SEEK_CUR); */
retbuf = fgetws(buf, 200, fp);
}


if( fp )
fclose(fp);
return 0;

GeneralRe: Urgent : How to read a unicode file in C/C++ Pin
Viorel.2-Jul-06 22:24
Viorel.2-Jul-06 22:24 
GeneralRe: Urgent : How to read a unicode file in C/C++ Pin
Hamid_RT2-Jul-06 22:21
Hamid_RT2-Jul-06 22:21 
GeneralRe: Urgent : How to read a unicode file in C/C++ Pin
Rocky Marrone2-Jul-06 22:26
Rocky Marrone2-Jul-06 22:26 
GeneralRe: Urgent : How to read a unicode file in C/C++ Pin
Hamid_RT2-Jul-06 22:32
Hamid_RT2-Jul-06 22:32 
GeneralRe: Urgent : How to read a unicode file in C/C++ Pin
Rocky Marrone2-Jul-06 22:49
Rocky Marrone2-Jul-06 22:49 
QuestionAbout Cd-rom? Pin
Syouki_kou2-Jul-06 21:33
Syouki_kou2-Jul-06 21:33 
AnswerRe: About Cd-rom? Pin
Don Box2-Jul-06 21:52
Don Box2-Jul-06 21:52 
AnswerRe: About Cd-rom? Pin
Hamid_RT2-Jul-06 22:39
Hamid_RT2-Jul-06 22:39 
QuestionRe: About Cd-rom? Pin
Syouki_kou3-Jul-06 16:44
Syouki_kou3-Jul-06 16:44 
AnswerRe: About Cd-rom? Pin
Hamid_RT3-Jul-06 18:34
Hamid_RT3-Jul-06 18:34 
QuestionRe: About Cd-rom? Pin
Syouki_kou3-Jul-06 20:38
Syouki_kou3-Jul-06 20:38 
Questionstrange linking error with operator overloading Pin
George_George2-Jul-06 21:27
George_George2-Jul-06 21:27 
AnswerRe: strange linking error with operator overloading Pin
Viorel.2-Jul-06 21:40
Viorel.2-Jul-06 21:40 
GeneralRe: strange linking error with operator overloading Pin
George_George2-Jul-06 21:47
George_George2-Jul-06 21:47 
GeneralRe: strange linking error with operator overloading Pin
Viorel.2-Jul-06 22:02
Viorel.2-Jul-06 22:02 
GeneralRe: strange linking error with operator overloading Pin
George_George2-Jul-06 23:37
George_George2-Jul-06 23:37 
GeneralRe: strange linking error with operator overloading Pin
Viorel.3-Jul-06 0:08
Viorel.3-Jul-06 0:08 

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.