! Copyright (C) 2010 Anton Gorenko. ! See http://factorcode.org/license.txt for BSD license. USING: alien alien.c-types alien.destructors alien.libraries alien.syntax combinators kernel gobject-introspection gobject-introspection.standard-types system vocabs.loader ; IN: pango.ffi << "gobject.ffi" require >> LIBRARY: pango << "pango" { { [ os windows? ] [ "libpango-1.0-0.dll" cdecl add-library ] } { [ os unix? ] [ drop ] } } cond >> IMPLEMENT-STRUCTS: PangoRectangle ; GIR: vocab:pango/Pango-1.0.gir DESTRUCTOR: pango_font_description_free DESTRUCTOR: pango_layout_iter_free !