ossp-pkg/l2/l2.h 1.19 -> 1.20
--- l2.h 2001/09/06 11:56:15 1.19
+++ l2.h 2001/09/06 14:37:53 1.20
@@ -81,7 +81,12 @@
/* list of return values */
typedef enum {
L2_OK,
- L2_ERROR
+ L2_ERR_ARG, /* invalid argument */
+ L2_ERR_USE, /* invalid usage */
+ L2_ERR_MEM, /* no more memory available */
+ L2_ERR_SYS, /* system error (see errno) */
+ L2_ERR_FMT, /* message formating error */
+ L2_ERR_INT /* internal error */
} l2_result_t;
/* context union for storing data */
|
|