From bb2c564579a402a92dbaa513b6a4c9641523efc5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 27 Apr 2011 23:27:41 +0000 Subject: Don't hide pointers behind typedefs. git-svn-id: http://svn.drobilla.net/sord/trunk@91 3d64ff67-21c5-427c-a301-fe4f08042e5a --- src/sord_internal.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/sord_internal.h') diff --git a/src/sord_internal.h b/src/sord_internal.h index 8f6f9e8..567b56c 100644 --- a/src/sord_internal.h +++ b/src/sord_internal.h @@ -25,16 +25,16 @@ typedef intptr_t SordCount; ///< Count of nodes or triples /** Node */ -struct _SordNode { +struct SordNodeImpl { uint8_t* buf; ///< Value (string) const char* lang; ///< Literal language (interned string) - SordNode datatype; ///< Literal data type (ID of a URI node, or 0) + SordNode* datatype; ///< Literal data type (ID of a URI node, or 0) size_t n_bytes; ///< Length of data in bytes (including terminator) SordCount refs; ///< Reference count (i.e. number of containing quads) SordNodeType type; ///< SordNodeType }; const char* -sord_intern_lang(SordWorld world, const char* lang); +sord_intern_lang(SordWorld* world, const char* lang); #endif /* SORD_SORD_INTERNAL_H_ */ -- cgit v1.2.1