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

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

Definition at line 371 of file IOBufferFile.h.

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

00372     {
00373 #ifdef WIN32
00374 #if _MSC_VER <= 1310
00375         return fseek(fp, offset, origin);
00376 #else
00377         return _fseeki64(fp, offset, origin);
00378 #endif
00379 #else
00380         return fseeko(fp, offset, origin);
00381 #endif
00382     }


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