caeefd811d
- refactoring - ... and more
23 lines
425 B
C
23 lines
425 B
C
#ifndef __H5_ERRNO_H
|
|
#define __H5_ERRNO_H
|
|
|
|
#define H5_SUCCESS 0
|
|
#define H5_ERR -1
|
|
#define H5_ERR_BADF -9
|
|
#define H5_ERR_NOMEM -12
|
|
#define H5_ERR_INVAL -22
|
|
#define H5_ERR_BADFD -77
|
|
|
|
#define H5_ERR_LAYOUT -100
|
|
#define H5_ERR_NOENT -101
|
|
|
|
#define H5_ERR_INIT -200
|
|
#define H5_ERR_NOENTRY -201
|
|
|
|
#define H5_ERR_MPI -201
|
|
#define H5_ERR_HDF5 -202
|
|
#define H5_ERR_INTERNAL -253
|
|
#define H5_ERR_NOT_IMPLEMENTED -254
|
|
|
|
#endif
|