1 /* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap:
2 *----------------------------------------------------------------------------
4 *----------------------------------------------------------------------------
5 * This file is part of emufs.
7 * emufs is free software; you can redistribute it and/or modify it under the
8 * terms of the GNU General Public License as published by the Free Software
9 * Foundation; either version 2 of the License, or (at your option) any later
12 * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
13 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * You should have received a copy of the GNU General Public License along
18 * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place, Suite 330, Boston, MA 02111-1307 USA
20 *----------------------------------------------------------------------------
21 * Creado: dom abr 18 00:33:47 ART 2004
22 * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23 * Ricardo Markiewicz <rmarkie@fi.uba.ar>
24 * Leandro Lucarella <llucare@fi.uba.ar>
25 *----------------------------------------------------------------------------
33 * Utilidades para el manejo de errores.
35 * En este archivo se encuentran definidas las constantes de error y otras
36 * utilidades destinadas a facilitar el manejo de errores en EMUFS.
40 #ifndef _EMUFS_ERROR_H_
41 #define _EMUFS_ERROR_H_
43 /** Códigos de error. */
45 EMUFS_OK = 0, /**< Operación exitosa. */
46 EMUFS_ERROR_WRONG_ARGUMENT, /**< Se recibió un parámetro incorrecto. */
47 EMUFS_ERROR_OUT_OF_MEMORY, /**< No se pudo reservar memoria. */
48 EMUFS_ERROR_CANT_OPEN_FILE, /**< No se puede abrir un archivo. */
49 EMUFS_ERROR_FILE_READ, /**< Error al leer un archivo. */
50 EMUFS_ERROR_WRITE_FILE, /**< Error al escribir un archivo. */
51 EMUFS_ERROR_SEEK_FILE, /**< Error al posicionarse en un archivo. */
52 EMUFS_ERROR_TELL_FILE, /**< Error al obtener posición de un archivo. */
53 EMUFS_ERROR_TRUNCATE_FILE, /**< Error al truncar un archvio. */
54 EMUFS_ERROR_BLOCK_TOO_SMALL /**< El tamaño de bloque es muy pequeño. */
57 #endif /* _EMUFS_ERROR_H_ */