X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/56ccd5b731e30f2d195cefc4cbf0b8640fac2c92..b238749d7115db31b5fd93210853aa0a7180937b:/glib/gcallback.lisp diff --git a/glib/gcallback.lisp b/glib/gcallback.lisp index 0598e44..1d3dd14 100644 --- a/glib/gcallback.lisp +++ b/glib/gcallback.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: gcallback.lisp,v 1.30 2006-02-19 19:31:14 espen Exp $ +;; $Id: gcallback.lisp,v 1.31 2006-02-19 19:53:52 espen Exp $ (in-package "GLIB") @@ -29,6 +29,9 @@ ;;;; Callback invokation +(deftype gclosure () 'pointer) +(register-type 'gclosure '|g_closure_get_type|) + (defun register-callback-function (function) (check-type function (or null symbol function)) (register-user-data function)) @@ -317,9 +320,6 @@ (instance ginstance) (handler-id unsigned-int)) -(deftype gclosure () 'pointer) -(register-type 'gclosure '|g_closure_get_type|) - (defbinding (callback-closure-new "clg_callback_closure_new") () gclosure (callback-id unsigned-int) (callback callback)