OSSP CVS Repository

ossp - Difference in ossp-pkg/val/val.h versions 1.1 and 1.2
Not logged in
[Honeypot]  [Browse]  [Home]  [Login]  [Reports
[Search]  [Ticket]  [Timeline
  [History

ossp-pkg/val/val.h 1.1 -> 1.2

--- val.h        2002/01/09 10:44:28     1.1
+++ val.h        2002/01/16 14:17:56     1.2
@@ -31,5 +31,40 @@
 #ifndef __VAL_H__
 #define __VAL_H__
 
+#include <stdarg.h>
+
+enum {
+    VAL_TYPE_VAL    = 1<<0,
+    VAL_TYPE_PTR    = 1<<1,
+    VAL_TYPE_CHAR   = 1<<2,
+    VAL_TYPE_SHORT  = 1<<3,
+    VAL_TYPE_INT    = 1<<4,
+    VAL_TYPE_LONG   = 1<<5,
+    VAL_TYPE_FLOAT  = 1<<6,
+    VAL_TYPE_DOUBLE = 1<<7
+};
+
+typedef enum {
+    VAL_OK,
+    VAL_ERR_ARG,
+    VAL_ERR_USE,
+    VAL_ERR_MEM,
+    VAL_ERR_SYS
+} val_rc_t;
+
+struct val_s;
+typedef struct val_s val_t;
+
+typedef val_rc_t (*val_cb_t)(void *, const char *, int, const char *, void *);
+
+val_rc_t val_create  (val_t **);
+val_rc_t val_destroy (val_t *);
+val_rc_t val_reg     (val_t *, const char *, int, const char *, void *);
+val_rc_t val_set     (val_t *, const char *, ...);
+val_rc_t val_get     (val_t *, const char *, ...);
+val_rc_t val_vset    (val_t *, const char *, va_list);
+val_rc_t val_vget    (val_t *, const char *, va_list);
+val_rc_t val_apply   (val_t *, const char *, int, val_cb_t, void *);
+
 #endif /* __VAL_H__ */
 

CVSTrac 2.0.1