surfaces-unies/src/errorcodes.h
2018-11-06 16:08:20 +01:00

15 lines
382 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef ERRORCODES_H
#define ERRORCODES_H
/// Pas derreur
#define NOERROR 0
/// Constante pour les erreurs liées aux arguments
#define ARGERROR 1
/// Constante pour les erreurs liées à \ref darray_t
#define PTR_ERROR 2
/// Constante pour les erreurs liées à la lecture et écriture de fichiers
#define FILE_IO_ERROR 3
#define FILE_FORMAT_ERROR 4
#endif /* ERRORCODES_H */