chiark
/
gitweb
/
~mdw
/
clg
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
df2a890
)
Definition of type gclosure moved before it's first use in the file
author
espen
<espen>
Sun, 19 Feb 2006 19:53:52 +0000
(19:53 +0000)
committer
espen
<espen>
Sun, 19 Feb 2006 19:53:52 +0000
(19:53 +0000)
glib/gcallback.lisp
patch
|
blob
|
blame
|
history
diff --git
a/glib/gcallback.lisp
b/glib/gcallback.lisp
index 0598e445824ae61fbf9a7cfad07ff3ce67be40d4..1d3dd14abe9471fe497b629bcd4ba1b784c66646 100644
(file)
--- 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.
;; 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.3
0 2006-02-19 19:31:14
espen Exp $
+;; $Id: gcallback.lisp,v 1.3
1 2006-02-19 19:53:52
espen Exp $
(in-package "GLIB")
(in-package "GLIB")
@@
-29,6
+29,9
@@
(use-prefix "g")
;;;; Callback invokation
;;;; 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))
(defun register-callback-function (function)
(check-type function (or null symbol function))
(register-user-data function))
@@
-317,9
+320,6
@@
(defbinding signal-handler-is-connected-p () boolean
(instance ginstance)
(handler-id unsigned-int))
(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)
(defbinding (callback-closure-new "clg_callback_closure_new") () gclosure
(callback-id unsigned-int)
(callback callback)