]> gitweb.factorcode.org Git - factor.git/blob - basis/atk/ffi/ffi.factor
change directories structure (add */ffi/ffi.factor files)
[factor.git] / basis / atk / ffi / ffi.factor
1 ! Copyright (C) 2009 Anton Gorenko.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: alien alien.libraries alien.syntax combinators kernel
4 system
5 gir glib.ffi gobject.ffi ;
6 IN: atk.ffi
7
8 <<
9 "atk" {
10     { [ os winnt? ] [ "libatk-1.0-0.dll" cdecl add-library ] }
11     { [ os macosx? ] [ drop ] }
12     { [ os unix? ] [ "libatk-1.0.so" cdecl add-library ] }
13 } cond
14 >>
15
16 TYPEDEF: guint64 AtkState
17 TYPEDEF: GSList AtkAttributeSet
18
19 GIR: vocab:atk/Atk-1.0.gir
20