summaryrefslogtreecommitdiffstats
path: root/slv2/types.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-07-26 03:25:08 +0000
committerDavid Robillard <d@drobilla.net>2006-07-26 03:25:08 +0000
commit2cd84e4209633e59439c445f821bed8410347bab (patch)
treeba34505505795cff5cf35c2958ed21933b822e12 /slv2/types.h
parentdeca2cc89850dffc051d0a0aafc9d681af838934 (diff)
downloadlilv-2cd84e4209633e59439c445f821bed8410347bab.tar.gz
lilv-2cd84e4209633e59439c445f821bed8410347bab.tar.bz2
lilv-2cd84e4209633e59439c445f821bed8410347bab.zip
- Removed all the unsigned char garbage from the API
- Updated types in lv2.h to be non-machine-dependant (removed unsigned long in favour of uint32_t) - Updated schema - Updated example plugin to work with the above (partially) git-svn-id: http://svn.drobilla.net/lad/libslv2@101 a436a847-0d15-0410-975c-d299462d15a1
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;