Example #1
0
//===============================================================================================
// FUNCTION: Seek
// PURPOSE:  Change the current position of the file pointer.
//
inline BOOL CFileDescriptor::Seek(LONGLONG llOffset, UINT uFlag, LONGLONG *pllNewOffset)
{
//   MEMBERASSERT();
   return m_File.Seek(llOffset, uFlag, pllNewOffset);
}