Use new GBoxed in GDK and GTK
[cl-gtk2.git] / gdk / gdk.package.lisp
1 (defpackage :gdk
2   (:use :cl :gobject :cffi)
3   (:export #:gdk-window-events
4            #:gdk-gc-set-rgb-fg-color
5            #:gdk-drawable-get-size
6            #:gdk-draw-line
7            #:gdk-gc-new
8            #:drawable-get-size
9            #:gdk-draw-layout
10            #:gdk-atom-as-string))
11
12 (in-package :gdk)
13
14 (eval-when (:compile-toplevel :load-toplevel :execute)
15   (define-foreign-library gdk
16     (:unix (:or "libgdk-x11-2.0.so.0" "libgdk-x11-2.0.so"))
17     (t "libgdk-2.0")))
18
19 (use-foreign-library gdk)