summaryrefslogtreecommitdiffstats
path: root/slv2/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'slv2/types.h')
-rw-r--r--slv2/types.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/slv2/types.h b/slv2/types.h
index 79b1e0f..f93eea2 100644
--- a/slv2/types.h
+++ b/slv2/types.h
@@ -26,16 +26,13 @@ extern "C" {
#include <stddef.h>
-typedef unsigned char uchar;
-
-
/* A property, resulting from a query.
*
* Note that properties may have many values.
*/
struct _Property {
- size_t num_values;
- unsigned char** values;
+ size_t num_values;
+ char** values;
};
typedef struct _Property* SLV2Property;