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

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

Definition at line 416 of file IOBufferFile.h.

Referenced by DoNativeTypeRead(), DoNativeTypeWrite(), Gets(), IOBufferFile(), Puts(), ReadLine(), and Write().

00417     {
00418 #ifdef WIN32
00419 #if _MSC_VER <= 1310
00420         return ftell(fp);
00421 #else
00422         return _ftelli64(fp);
00423 #endif
00424 #else
00425         return ftello(fp);
00426 #endif
00427 }


Generated on Thu Jan 13 09:24:17 2011 for ImpalaSrc by  doxygen 1.5.1