18 lines
479 B
Factor
18 lines
479 B
Factor
|
! Copyright (C) 2010 Anton Gorenko.
|
||
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
USING: alien alien.c-types alien.libraries combinators kernel
|
||
|
system
|
||
|
gobject-introspection glib.ffi gobject.ffi gstreamer.ffi ;
|
||
|
IN: gstreamer.interfaces.ffi
|
||
|
|
||
|
<<
|
||
|
"gstreamer.interfaces" {
|
||
|
{ [ os winnt? ] [ drop ] }
|
||
|
{ [ os macosx? ] [ drop ] }
|
||
|
{ [ os unix? ] [ "libgstinterfaces-0.10.so" cdecl add-library ] }
|
||
|
} cond
|
||
|
>>
|
||
|
|
||
|
GIR: vocab:gstreamer/interfaces/GstInterfaces-0.10.gir
|
||
|
|