From: Dmitry Kalyanov Date: Wed, 9 Jun 2010 12:06:31 +0000 (+0400) Subject: Add gsize types for PPC32 and PPC64 archs X-Git-Url: http://repo.macrolet.net/gitweb/?p=cl-gtk2.git;a=commitdiff_plain;h=048366cff2b1d25b7e32bcb7067f83e9cf493177 Add gsize types for PPC32 and PPC64 archs --- diff --git a/glib/glib.lisp b/glib/glib.lisp index 8398148..cdd1d1a 100644 --- a/glib/glib.lisp +++ b/glib/glib.lisp @@ -156,6 +156,8 @@ In this example, for every @code{class}, @code{(initialize-gobject-class-g-type (cond ((cffi-features:cffi-feature-p :x86-64) (defctype gsize :uint64)) ((cffi-features:cffi-feature-p :x86) (defctype gsize :ulong)) + ((cffi-features:cffi-feature-p :ppc32) (defctype gsize :uint32)) + ((cffi-features:cffi-feature-p :ppc64) (defctype gsize :uint64)) (t (error "Can not define 'gsize', unknown CPU architecture (known are x86 and x86-64)")))) (defctype gssize :long)