Definition at line 357 of file IOBufferFile.h. Referenced by DoNativeTypeRead(), DoNativeTypeWrite(), Gets(), IOBufferFile(), Puts(), ReadLine(), and Write(). 00358 { 00359 #ifdef WIN32 00360 #if _MSC_VER <= 1310 00361 return ftell(fp); 00362 #else 00363 return _ftelli64(fp); 00364 #endif 00365 #else 00366 return ftello(fp); 00367 #endif 00368 }
|