22 lines
		
	
	
		
			486 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			486 B
		
	
	
	
		
			Factor
		
	
	
| ! Copyright (C) 2010 Anton Gorenko.
 | |
| ! See http://factorcode.org/license.txt for BSD license.
 | |
| USING: alien alien.libraries alien.syntax combinators
 | |
| gobject-introspection kernel system vocabs ;
 | |
| IN: gstreamer.controller.ffi
 | |
| 
 | |
| <<
 | |
| "gstreamer.ffi" require
 | |
| >>
 | |
| 
 | |
| LIBRARY: gstreamer.controller
 | |
| 
 | |
| <<
 | |
| "gstreamer.controller" {
 | |
|     { [ os windows? ] [ drop ] }
 | |
|     { [ os macosx? ] [ drop ] }
 | |
|     { [ os unix? ] [ "libgstcontroller-0.10.so" cdecl add-library ] }
 | |
| } cond
 | |
| >>
 | |
| 
 | |
| GIR: GstController-0.10.gir
 |