Initial account class implementation
[python-purple] / glib.pxd
index d00dfdf..3a87384 100644 (file)
--- a/glib.pxd
+++ b/glib.pxd
 #
 
 cdef extern from "glib.h":
 #
 
 cdef extern from "glib.h":
-    ctypedef void* gpointer
+    ctypedef void  *gpointer
     ctypedef int gint
     ctypedef unsigned int guint
     ctypedef gint gboolean
 
     # GHashTable is an opaque data structure
     ctypedef struct GHashTable:
     ctypedef int gint
     ctypedef unsigned int guint
     ctypedef gint gboolean
 
     # GHashTable is an opaque data structure
     ctypedef struct GHashTable:
-        void* none
+        void *none
 
     struct _GSList:
         gpointer data
 
     struct _GSList:
         gpointer data