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