factor/basis/atk/ffi/ffi.factor

24 lines
522 B
Factor
Raw Normal View History

! Copyright (C) 2009 Anton Gorenko.
! See http://factorcode.org/license.txt for BSD license.
USING: alien alien.libraries alien.syntax combinators kernel
system
2010-07-17 07:17:03 -04:00
gobject-introspection glib.ffi gobject.ffi ;
IN: atk.ffi
<<
"atk" {
{ [ os winnt? ] [ "libatk-1.0-0.dll" cdecl add-library ] }
{ [ os macosx? ] [ drop ] }
{ [ os unix? ] [ "libatk-1.0.so" cdecl add-library ] }
} cond
>>
TYPEDEF: guint64 AtkState
TYPEDEF: GSList AtkAttributeSet
2010-05-31 02:42:05 -04:00
! gir: error
C-TYPE: AtkPropertyValues
GIR: vocab:atk/Atk-1.0.gir