From: Dmitry Kalyanov Date: Wed, 9 Jun 2010 12:06:31 +0000 (+0800) 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=2a8132f9a0e3e679e63d6f5afd64a8373aeaf880 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)