[CCode (cheader_filename = "glib-object.h", cname = "G_TYPE_STRV")]
extern GLib.Type G_TYPE_STRV;
+[CCode (cheader_filename = "glib-object.h", cname = "G_TYPE_ERROR")]
+extern GLib.Type G_TYPE_ERROR;
interface IFoo {
}
FOO
}
+errordomain FooError {
+ FAIL
+}
+
struct FooStruct {
public int i;
}
+[CCode (has_type_id = false)]
+enum BarEnum {
+ BAR
+}
+
+[CCode (has_type_id = false)]
+[Flags]
+enum BarFlag {
+ BAR
+}
+
+[CCode (has_type_id = false)]
+struct BarStruct {
+ public int i;
+}
+
+[CCode (has_type_id = false)]
+[SimpleType]
+struct ManamStruct {
+ public int i;
+}
+
void main () {
assert (typeof (bool) == GLib.Type.BOOLEAN);
assert (typeof (FooStruct).is_a (GLib.Type.BOXED));
assert (typeof (char) == GLib.Type.CHAR);
assert (typeof (double) == GLib.Type.DOUBLE);
assert (typeof (FooEnum).is_a (GLib.Type.ENUM));
+ assert (typeof (FooError) == G_TYPE_ERROR);
assert (typeof (FooFlag).is_a (GLib.Type.FLAGS));
assert (typeof (float) == GLib.Type.FLOAT);
assert (typeof (int) == GLib.Type.INT);
assert (typeof (uint64) == GLib.Type.UINT64);
assert (typeof (ulong) == GLib.Type.ULONG);
assert (typeof (Variant) == GLib.Type.VARIANT);
+
+ assert (typeof (BarEnum) == GLib.Type.INT);
+ assert (typeof (BarFlag) == GLib.Type.UINT);
+ assert (typeof (BarStruct) == GLib.Type.POINTER);
+ assert (typeof (ManamStruct) == GLib.Type.INVALID);
}