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

int Impala::Util::IOBufferFile::FSeek ( FILE *  fp,
PositionType  offset,
int  origin 
) [inline, private]

Definition at line 430 of file IOBufferFile.h.

Referenced by DoNativeTypeRead(), Gets(), IOBufferFile(), Read(), ReadLine(), and SetPosition().

00431     {
00432 #ifdef WIN32
00433 #if _MSC_VER <= 1310
00434         return fseek(fp, offset, origin);
00435 #else
00436         return _fseeki64(fp, offset, origin);
00437 #endif
00438 #else
00439         return fseeko(fp, offset, origin);
00440 #endif
00441     }


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