blob: 30369ee34da14db0194878edf18b45a8cddff8e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _Storage_OpenMode_HeaderFile
#define _Storage_OpenMode_HeaderFile
//! Error codes returned by the ErrorStatus <br>
//! function on a Storage_Data set of data during a <br>
//! storage or retrieval operation : <br>
//! - Storage_VSOk : no problem has been detected <br>
//! - Storage_VSOpenError : an error has <br>
//! occurred when opening the driver <br>
//! - Storage_VSModeError : the driver has not <br>
//! been opened in the correct mode <br>
//! - Storage_VSCloseError : an error has <br>
//! occurred when closing the driver <br>
//! - Storage_VSAlreadyOpen : the driver is already open <br>
//! - Storage_VSNotOpen : the driver is not open <br>
//! - Storage_VSSectionNotFound : a section <br>
//! has not been found in the driver <br>
//! - Storage_VSWriteError : an error occurred when writing the driver <br>
//! - Storage_VSFormatError : the file format is wrong <br>
//! - Storage_VSUnknownType : a type is not known from the schema <br>
//! - Storage_VSTypeMismatch : trying to read a wrong type <br>
//! - Storage_VSInternalError : an internal error has been detected <br>
//! - Storage_VSExtCharParityError : an error <br>
//! has occurred while reading 16 bit characte <br>
enum Storage_OpenMode {
Storage_VSNone,
Storage_VSRead,
Storage_VSWrite,
Storage_VSReadWrite
};
#ifndef _Standard_PrimitiveTypes_HeaderFile
#include <Standard_PrimitiveTypes.hxx>
#endif
#endif
|