factor/basis/gobject-introspection/common/common.factor

13 lines
333 B
Factor
Raw Normal View History

! Copyright (C) 2010 Anton Gorenko.
! See http://factorcode.org/license.txt for BSD license.
2011-03-06 03:06:00 -05:00
USING: namespaces sequences ;
2010-07-17 07:17:03 -04:00
IN: gobject-introspection.common
SYMBOL: current-namespace-name
SYMBOL: implement-structs
implement-structs [ V{ } ] initialize
2011-03-06 03:06:00 -05:00
: implement-struct? ( c-type -- ? )
implement-structs get-global member? ;