Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
staticintPASCALErrnoToException(intnErrno**);**
Return Value
Enumerated value that corresponds to a given run-time library error value.
Parameters
nErrno
An integer error code as defined in the run-time include file ERRNO.H.
Remarks
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.
Example
//example for CFileException::ErrnoToException
#include <errno.h>
ASSERT( CFileException::ErrnoToException( EACCES ) ==
CFileException::accessDenied );
CFileException Overview | Class Members | Hierarchy Chart
See Also CFileException::OsErrorToException