2007-09-06 Juerg Billeter <j@bitron.ch>
* vapi/glib-2.0.vala: add GTypeDebugFlags and GNode
svn path=/trunk/; revision=587
+2007-09-06 Jürg Billeter <j@bitron.ch>
+
+ * vapi/glib-2.0.vala: add GTypeDebugFlags and GNode
+
2007-09-06 Jürg Billeter <j@bitron.ch>
* vapi/packages/gio-standalone/: updated to currrent git
public Type get_type ();
}
+ [CCode (cprefix = "G_TYPE_DEBUG_")]
+ public enum TypeDebugFlags {
+ NONE,
+ OBJECTS,
+ SIGNALS,
+ MASK
+ }
+
public interface TypePlugin {
}
public class ByteArray {
}
+ /* N-ary Trees */
+
+ [CCode (free_function = "g_node_destroy")]
+ public class Node<G> {
+ public G data;
+ public Node next;
+ public Node prev;
+ public Node parent;
+ public Node children;
+ }
+
/* Quarks */
public struct Quark {