2007-11-24 12:14:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Vreixo Formoso
|
|
|
|
*
|
|
|
|
* This file is part of the libisofs project; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation. See COPYING file for details.
|
|
|
|
*/
|
2007-11-24 15:58:36 +00:00
|
|
|
#ifndef LIBISO_ERROR_H_
|
|
|
|
#define LIBISO_ERROR_H_
|
2007-11-24 12:14:45 +00:00
|
|
|
|
2007-11-24 15:58:36 +00:00
|
|
|
/*
|
|
|
|
* Return values for libisofs functions, mainly error codes
|
|
|
|
* TODO #00003 make this header public
|
|
|
|
*/
|
2007-11-24 12:14:45 +00:00
|
|
|
|
2007-11-24 15:58:36 +00:00
|
|
|
#define ISO_SUCCESS 1
|
2007-11-25 15:46:21 +00:00
|
|
|
#define ISO_ERROR -1
|
|
|
|
#define ISO_NULL_POINTER -2
|
|
|
|
#define ISO_OUT_OF_MEM -3
|
|
|
|
#define ISO_MEM_ERROR -4
|
|
|
|
#define ISO_INTERRUPTED -5
|
|
|
|
#define ISO_WRONG_ARG_VALUE -6
|
2007-11-24 12:14:45 +00:00
|
|
|
|
2007-11-25 15:46:21 +00:00
|
|
|
#define ISO_FILE_ERROR -100
|
|
|
|
#define ISO_FILE_ALREADY_OPENNED -101
|
|
|
|
#define ISO_FILE_ACCESS_DENIED -102
|
|
|
|
#define ISO_FILE_BAD_PATH -103
|
|
|
|
#define ISO_FILE_DOESNT_EXIST -104
|
|
|
|
#define ISO_FILE_NOT_OPENNED -105
|
|
|
|
#define ISO_FILE_IS_DIR -106
|
|
|
|
#define ISO_FILE_READ_ERROR -107
|
|
|
|
#define ISO_FILE_IS_NOT_DIR -108
|
|
|
|
#define ISO_FILE_IS_NOT_SYMLINK -109
|
2007-11-24 15:58:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
#endif /*LIBISO_ERROR_H_*/
|