Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

PositionType Impala::Util::IOBufferFile::FTell ( FILE *  fp  )  [inline, private]

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 }


Generated on Fri Mar 19 11:40:56 2010 for ImpalaSrc by  doxygen 1.5.1