Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
CFileException::ErrnoToException
CFileException                              Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  static int ErrnoToException( int nErrno );
 
  Parameter   Description
 
  <nErrno>    An integer error code as defined in the run-time include
              file errno.h.
 
  Remarks
 
  This static function converts a given run-time library error value to a
  CFileException enumerated error value. See CFileException::m_cause for
  a list of the possible enumerated values.
 
  Return Value
 
  Enumerated value that corresponds to a given run-time library error
  value.
 
  Example
 
  #include <errno.h>
  ASSERT( CFileException::ErrnoToException( EACCES ) ==
                    CFileException::accessDenied );
 
 
  See Also
 
  CFileException::OsErrorToException
 
 
                                     -♦-