annotate devhelpers/structslinux/structs.c @ 124:c39d1446f191

Added dev tools, so they are not in the release code.
author Frank Benoit <benoit@tionex.de>
date Mon, 21 Jul 2008 22:54:04 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
124
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
1 // Author: Frank Benoit
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
2 // This prints the sizes of some C struct how the GCC sees them
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
3 // Build with:
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
4 // gcc structs.c `pkg-config --cflags xtst cairo-xlib-xrender gtk+-2.0 gtk+-x11-2.0 pangox gdk-2.0 fontconfig gthread-2.0 cairo-xlib cairo pango gtk+-unix-print-2.0` 2>&1 | head -n 20
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
5
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
6 #include <gtk/gtk.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
7 #include <gdk/gdk.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
8 #include <glib.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
9 #include <pango/pango.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
10 #include <cairo.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
11 #include <atk/atk.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
12 #include <gconv.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
13 #include <GL/glx.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
14 #include <GL/gl.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
15 #include <gtk/gtkprintunixdialog.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
16 #include <gtk/gtkpagesetupunixdialog.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
17 #include <X11/extensions/XInput.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
18 #include <X11/extensions/Xrender.h>
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
19
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
20 typedef struct {
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
21 const char* name;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
22 int size;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
23 } TSizeValue;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
24
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
25 const TSizeValue size_values[] = {
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
26 { "AtkValueIface", sizeof( AtkValueIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
27 { "AtkMiscClass", sizeof( AtkMiscClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
28 { "AtkMisc", sizeof( AtkMisc ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
29 { "AtkTableIface", sizeof( AtkTableIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
30 { "AtkStreamableContentIface", sizeof( AtkStreamableContentIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
31 { "AtkStateSetClass", sizeof( AtkStateSetClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
32 { "AtkSelectionIface", sizeof( AtkSelectionIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
33 { "AtkRelationSetClass", sizeof( AtkRelationSetClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
34 { "AtkRelationClass", sizeof( AtkRelationClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
35 { "AtkRelation", sizeof( AtkRelation ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
36 { "AtkRegistryClass", sizeof( AtkRegistryClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
37 { "AtkRegistry", sizeof( AtkRegistry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
38 { "AtkNoOpObjectFactoryClass", sizeof( AtkNoOpObjectFactoryClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
39 { "AtkNoOpObjectFactory", sizeof( AtkNoOpObjectFactory ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
40 { "AtkObjectFactoryClass", sizeof( AtkObjectFactoryClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
41 { "AtkObjectFactory", sizeof( AtkObjectFactory ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
42 { "AtkNoOpObjectClass", sizeof( AtkNoOpObjectClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
43 { "AtkNoOpObject", sizeof( AtkNoOpObject ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
44 { "AtkImageIface", sizeof( AtkImageIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
45 { "AtkHypertextIface", sizeof( AtkHypertextIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
46 { "AtkHyperlinkImplIface", sizeof( AtkHyperlinkImplIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
47 { "AtkHyperlinkClass", sizeof( AtkHyperlinkClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
48 { "AtkHyperlink", sizeof( AtkHyperlink ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
49 { "AtkGObjectAccessibleClass", sizeof( AtkGObjectAccessibleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
50 { "AtkGObjectAccessible", sizeof( AtkGObjectAccessible ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
51 { "AtkEditableTextIface", sizeof( AtkEditableTextIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
52 { "AtkTextRange", sizeof( AtkTextRange ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
53 { "AtkTextRectangle", sizeof( AtkTextRectangle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
54 { "AtkTextIface", sizeof( AtkTextIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
55 { "AtkDocumentIface", sizeof( AtkDocumentIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
56 { "AtkRectangle", sizeof( AtkRectangle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
57 { "AtkComponentIface", sizeof( AtkComponentIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
58 { "AtkKeyEventStruct", sizeof( AtkKeyEventStruct ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
59 { "AtkUtilClass", sizeof( AtkUtilClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
60 { "AtkUtil", sizeof( AtkUtil ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
61 { "AtkActionIface", sizeof( AtkActionIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
62 { "AtkPropertyValues", sizeof( AtkPropertyValues ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
63 { "AtkStateSet", sizeof( AtkStateSet ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
64 { "AtkRelationSet", sizeof( AtkRelationSet ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
65 { "AtkObjectClass", sizeof( AtkObjectClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
66 { "AtkObject", sizeof( AtkObject ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
67 { "AtkImplementorIface", sizeof( AtkImplementorIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
68 { "AtkAttribute", sizeof( AtkAttribute ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
69 { "cairo_path_t", sizeof( cairo_path_t ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
70 { "cairo_path_data_t", sizeof( cairo_path_data_t ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
71 { "cairo_font_extents_t", sizeof( cairo_font_extents_t ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
72 { "cairo_text_extents_t", sizeof( cairo_text_extents_t ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
73 { "cairo_glyph_t", sizeof( cairo_glyph_t ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
74 { "cairo_rectangle_list_t", sizeof( cairo_rectangle_list_t ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
75 { "cairo_rectangle_t", sizeof( cairo_rectangle_t ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
76 { "cairo_user_data_key_t", sizeof( cairo_user_data_key_t ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
77 { "cairo_matrix_t", sizeof( cairo_matrix_t ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
78 { "GdkWindowObjectClass", sizeof( GdkWindowObjectClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
79 { "GdkWindowObject", sizeof( GdkWindowObject ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
80 { "GdkPointerHooks", sizeof( GdkPointerHooks ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
81 { "GdkWindowAttr", sizeof( GdkWindowAttr ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
82 { "GdkGeometry", sizeof( GdkGeometry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
83 { "GdkScreenClass", sizeof( GdkScreenClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
84 { "GdkPixmapObjectClass", sizeof( GdkPixmapObjectClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
85 { "GdkPixmapObject", sizeof( GdkPixmapObject ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
86 { "GdkPangoAttrEmbossColor", sizeof( GdkPangoAttrEmbossColor ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
87 { "GdkPangoAttrEmbossed", sizeof( GdkPangoAttrEmbossed ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
88 { "GdkPangoAttrStipple", sizeof( GdkPangoAttrStipple ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
89 { "GdkPangoRendererClass", sizeof( GdkPangoRendererClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
90 { "GdkPangoRenderer", sizeof( GdkPangoRenderer ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
91 { "GdkDisplayManagerClass", sizeof( GdkDisplayManagerClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
92 { "GdkKeymapClass", sizeof( GdkKeymapClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
93 { "GdkKeymap", sizeof( GdkKeymap ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
94 { "GdkKeymapKey", sizeof( GdkKeymapKey ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
95 { "GdkImageClass", sizeof( GdkImageClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
96 { "GdkTrapezoid", sizeof( GdkTrapezoid ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
97 { "GdkDrawableClass", sizeof( GdkDrawableClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
98 { "GdkGCClass", sizeof( GdkGCClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
99 { "GdkGCValues", sizeof( GdkGCValues ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
100 { "GdkDisplayPointerHooks", sizeof( GdkDisplayPointerHooks ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
101 { "GdkDisplayClass", sizeof( GdkDisplayClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
102 { "GdkEvent", sizeof( GdkEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
103 { "GdkEventGrabBroken", sizeof( GdkEventGrabBroken ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
104 { "GdkEventSetting", sizeof( GdkEventSetting ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
105 { "GdkEventWindowState", sizeof( GdkEventWindowState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
106 { "GdkEventDND", sizeof( GdkEventDND ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
107 { "GdkEventClient", sizeof( GdkEventClient ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
108 { "GdkEventProximity", sizeof( GdkEventProximity ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
109 { "GdkEventOwnerChange", sizeof( GdkEventOwnerChange ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
110 { "GdkEventSelection", sizeof( GdkEventSelection ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
111 { "GdkEventProperty", sizeof( GdkEventProperty ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
112 { "GdkEventConfigure", sizeof( GdkEventConfigure ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
113 { "GdkEventCrossing", sizeof( GdkEventCrossing ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
114 { "GdkEventFocus", sizeof( GdkEventFocus ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
115 { "GdkEventKey", sizeof( GdkEventKey ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
116 { "GdkEventScroll", sizeof( GdkEventScroll ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
117 { "GdkEventButton", sizeof( GdkEventButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
118 { "GdkEventMotion", sizeof( GdkEventMotion ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
119 { "GdkEventVisibility", sizeof( GdkEventVisibility ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
120 { "GdkEventNoExpose", sizeof( GdkEventNoExpose ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
121 { "GdkEventExpose", sizeof( GdkEventExpose ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
122 { "GdkEventAny", sizeof( GdkEventAny ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
123 { "GdkTimeCoord", sizeof( GdkTimeCoord ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
124 { "GdkDevice", sizeof( GdkDevice ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
125 { "GdkDeviceAxis", sizeof( GdkDeviceAxis ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
126 { "GdkDeviceKey", sizeof( GdkDeviceKey ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
127 { "GdkDragContextClass", sizeof( GdkDragContextClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
128 { "GdkDragContext", sizeof( GdkDragContext ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
129 { "GdkPixbufLoaderClass", sizeof( GdkPixbufLoaderClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
130 { "GdkPixbufLoader", sizeof( GdkPixbufLoader ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
131 { "GdkRgbCmap", sizeof( GdkRgbCmap ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
132 { "GdkColormapClass", sizeof( GdkColormapClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
133 { "GdkScreen", sizeof( GdkScreen ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
134 { "GdkDisplay", sizeof( GdkDisplay ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
135 { "GdkDrawable", sizeof( GdkDrawable ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
136 { "GdkVisual", sizeof( GdkVisual ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
137 { "GdkImage", sizeof( GdkImage ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
138 { "GdkGC", sizeof( GdkGC ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
139 { "GdkFont", sizeof( GdkFont ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
140 { "GdkCursor", sizeof( GdkCursor ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
141 { "GdkColormap", sizeof( GdkColormap ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
142 { "GdkColor", sizeof( GdkColor ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
143 { "GdkSpan", sizeof( GdkSpan ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
144 { "GdkSegment", sizeof( GdkSegment ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
145 { "GdkRectangle", sizeof( GdkRectangle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
146 { "GdkPoint", sizeof( GdkPoint ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
147 { "GStaticMutex", sizeof( GStaticMutex ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
148 { "GSystemThread", sizeof( GSystemThread ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
149 { "GValueArray", sizeof( GValueArray ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
150 { "GTypePluginClass", sizeof( GTypePluginClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
151 { "GTypeModuleClass", sizeof( GTypeModuleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
152 { "GTypeModule", sizeof( GTypeModule ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
153 { "GParamSpecGType", sizeof( GParamSpecGType ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
154 { "GParamSpecOverride", sizeof( GParamSpecOverride ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
155 { "GParamSpecObject", sizeof( GParamSpecObject ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
156 { "GParamSpecValueArray", sizeof( GParamSpecValueArray ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
157 { "GParamSpecPointer", sizeof( GParamSpecPointer ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
158 { "GParamSpecBoxed", sizeof( GParamSpecBoxed ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
159 { "GParamSpecParam", sizeof( GParamSpecParam ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
160 { "GParamSpecString", sizeof( GParamSpecString ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
161 { "GParamSpecDouble", sizeof( GParamSpecDouble ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
162 { "GParamSpecFloat", sizeof( GParamSpecFloat ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
163 { "GParamSpecFlags", sizeof( GParamSpecFlags ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
164 { "GParamSpecEnum", sizeof( GParamSpecEnum ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
165 { "GParamSpecUnichar", sizeof( GParamSpecUnichar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
166 { "GParamSpecUInt64", sizeof( GParamSpecUInt64 ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
167 { "GParamSpecInt64", sizeof( GParamSpecInt64 ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
168 { "GParamSpecULong", sizeof( GParamSpecULong ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
169 { "GParamSpecLong", sizeof( GParamSpecLong ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
170 { "GParamSpecUInt", sizeof( GParamSpecUInt ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
171 { "GParamSpecInt", sizeof( GParamSpecInt ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
172 { "GParamSpecBoolean", sizeof( GParamSpecBoolean ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
173 { "GParamSpecUChar", sizeof( GParamSpecUChar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
174 { "GParamSpecChar", sizeof( GParamSpecChar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
175 { "GObjectConstructParam", sizeof( GObjectConstructParam ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
176 { "GObjectClass", sizeof( GObjectClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
177 { "GObject", sizeof( GObject ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
178 { "GSignalInvocationHint", sizeof( GSignalInvocationHint ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
179 { "GSignalQuery", sizeof( GSignalQuery ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
180 { "GCClosure", sizeof( GCClosure ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
181 { "GClosureNotifyData", sizeof( GClosureNotifyData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
182 { "GClosure", sizeof( GClosure ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
183 { "GParamSpecTypeInfo", sizeof( GParamSpecTypeInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
184 { "GParameter", sizeof( GParameter ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
185 { "GParamSpecClass", sizeof( GParamSpecClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
186 { "GParamSpec", sizeof( GParamSpec ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
187 { "GFlagsValue", sizeof( GFlagsValue ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
188 { "GEnumValue", sizeof( GEnumValue ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
189 { "GFlagsClass", sizeof( GFlagsClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
190 { "GEnumClass", sizeof( GEnumClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
191 { "GTypeQuery", sizeof( GTypeQuery ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
192 { "GTypeValueTable", sizeof( GTypeValueTable ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
193 { "GInterfaceInfo", sizeof( GInterfaceInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
194 { "GTypeFundamentalInfo", sizeof( GTypeFundamentalInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
195 { "GTypeInfo", sizeof( GTypeInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
196 { "GTypeInstance", sizeof( GTypeInstance ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
197 { "GTypeInterface", sizeof( GTypeInterface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
198 { "GTypeClass", sizeof( GTypeClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
199 { "GValue", sizeof( GValue ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
200 { "GThreadPool", sizeof( GThreadPool ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
201 { "GTokenValue", sizeof( GTokenValue ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
202 { "GScannerConfig", sizeof( GScannerConfig ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
203 { "GScanner", sizeof( GScanner ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
204 { "GTuples", sizeof( GTuples ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
205 { "GQueue", sizeof( GQueue ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
206 { "GOptionEntry", sizeof( GOptionEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
207 { "GNode", sizeof( GNode ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
208 { "GMarkupParser", sizeof( GMarkupParser ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
209 { "GIOFuncs", sizeof( GIOFuncs ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
210 { "GIOChannel", sizeof( GIOChannel ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
211 { "GString", sizeof( GString ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
212 { "GPollFD", sizeof( GPollFD ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
213 { "GSourceFuncs", sizeof( GSourceFuncs ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
214 { "GSourceCallbackFuncs", sizeof( GSourceCallbackFuncs ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
215 { "GSource", sizeof( GSource ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
216 { "GSList", sizeof( GSList ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
217 { "GHookList", sizeof( GHookList ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
218 { "GHook", sizeof( GHook ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
219 { "GDate", sizeof( GDate ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
220 { "GCompletion", sizeof( GCompletion ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
221 { "GList", sizeof( GList ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
222 { "GMemVTable", sizeof( GMemVTable ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
223 { "GOnce", sizeof( GOnce ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
224 { "GStaticRWLock", sizeof( GStaticRWLock ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
225 { "GStaticRecMutex", sizeof( GStaticRecMutex ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
226 { "GThreadFunctions", sizeof( GThreadFunctions ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
227 { "GStaticPrivate", sizeof( GStaticPrivate ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
228 { "GThread", sizeof( GThread ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
229 { "GTrashStack", sizeof( GTrashStack ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
230 { "GDebugKey", sizeof( GDebugKey ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
231 { "GError", sizeof( GError ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
232 { "GPtrArray", sizeof( GPtrArray ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
233 { "GByteArray", sizeof( GByteArray ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
234 { "GArray", sizeof( GArray ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
235 { "GTimeVal", sizeof( GTimeVal ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
236 { "GFloatIEEE754", sizeof( GFloatIEEE754 ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
237 { "GDoubleIEEE754", sizeof( GDoubleIEEE754 ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
238 { "GLXEvent", sizeof( GLXEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
239 { "GLXPbufferClobberEvent", sizeof( GLXPbufferClobberEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
240 { "GtkVSeparatorClass", sizeof( GtkVSeparatorClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
241 { "GtkVSeparator", sizeof( GtkVSeparator ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
242 { "GtkVScaleClass", sizeof( GtkVScaleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
243 { "GtkVScale", sizeof( GtkVScale ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
244 { "GtkVRulerClass", sizeof( GtkVRulerClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
245 { "GtkVRuler", sizeof( GtkVRuler ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
246 { "GtkVPanedClass", sizeof( GtkVPanedClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
247 { "GtkVPaned", sizeof( GtkVPaned ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
248 { "GtkVolumeButtonClass", sizeof( GtkVolumeButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
249 { "GtkVButtonBoxClass", sizeof( GtkVButtonBoxClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
250 { "GtkVButtonBox", sizeof( GtkVButtonBox ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
251 { "GtkUIManagerClass", sizeof( GtkUIManagerClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
252 { "GtkUIManager", sizeof( GtkUIManager ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
253 { "GtkTreeStoreClass", sizeof( GtkTreeStoreClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
254 { "GtkTreeStore", sizeof( GtkTreeStore ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
255 { "GtkTreeModelSortClass", sizeof( GtkTreeModelSortClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
256 { "GtkTreeModelSort", sizeof( GtkTreeModelSort ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
257 { "GtkTreeDragDestIface", sizeof( GtkTreeDragDestIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
258 { "GtkTreeDragSourceIface", sizeof( GtkTreeDragSourceIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
259 { "GtkToolbarClass", sizeof( GtkToolbarClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
260 { "GtkToolbar", sizeof( GtkToolbar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
261 { "GtkToolbarChild", sizeof( GtkToolbarChild ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
262 { "GtkTipsQueryClass", sizeof( GtkTipsQueryClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
263 { "GtkTipsQuery", sizeof( GtkTipsQuery ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
264 { "GtkTextViewClass", sizeof( GtkTextViewClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
265 { "GtkTextView", sizeof( GtkTextView ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
266 { "GtkTextBufferClass", sizeof( GtkTextBufferClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
267 { "GtkTextMarkClass", sizeof( GtkTextMarkClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
268 { "GtkTextMark", sizeof( GtkTextMark ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
269 { "GtkTextTagTableClass", sizeof( GtkTextTagTableClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
270 { "GtkTearoffMenuItemClass", sizeof( GtkTearoffMenuItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
271 { "GtkTearoffMenuItem", sizeof( GtkTearoffMenuItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
272 { "GtkTableRowCol", sizeof( GtkTableRowCol ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
273 { "GtkTableChild", sizeof( GtkTableChild ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
274 { "GtkTableClass", sizeof( GtkTableClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
275 { "GtkTable", sizeof( GtkTable ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
276 { "GtkStockItem", sizeof( GtkStockItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
277 { "GtkStatusIconClass", sizeof( GtkStatusIconClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
278 { "GtkStatusIcon", sizeof( GtkStatusIcon ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
279 { "GtkStatusbarClass", sizeof( GtkStatusbarClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
280 { "GtkStatusbar", sizeof( GtkStatusbar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
281 { "GtkSpinButtonClass", sizeof( GtkSpinButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
282 { "GtkSpinButton", sizeof( GtkSpinButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
283 { "GtkSizeGroupClass", sizeof( GtkSizeGroupClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
284 { "GtkSizeGroup", sizeof( GtkSizeGroup ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
285 { "GtkSeparatorToolItemClass", sizeof( GtkSeparatorToolItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
286 { "GtkSeparatorToolItem", sizeof( GtkSeparatorToolItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
287 { "GtkSeparatorMenuItemClass", sizeof( GtkSeparatorMenuItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
288 { "GtkSeparatorMenuItem", sizeof( GtkSeparatorMenuItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
289 { "GtkScrolledWindowClass", sizeof( GtkScrolledWindowClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
290 { "GtkScrolledWindow", sizeof( GtkScrolledWindow ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
291 { "GtkViewportClass", sizeof( GtkViewportClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
292 { "GtkViewport", sizeof( GtkViewport ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
293 { "GtkScaleButtonClass", sizeof( GtkScaleButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
294 { "GtkScaleButton", sizeof( GtkScaleButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
295 { "GtkRecentChooserWidgetClass", sizeof( GtkRecentChooserWidgetClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
296 { "GtkRecentChooserWidget", sizeof( GtkRecentChooserWidget ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
297 { "GtkRecentChooserMenuClass", sizeof( GtkRecentChooserMenuClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
298 { "GtkRecentChooserMenu", sizeof( GtkRecentChooserMenu ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
299 { "GtkRecentChooserDialogClass", sizeof( GtkRecentChooserDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
300 { "GtkRecentChooserDialog", sizeof( GtkRecentChooserDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
301 { "GtkRecentChooserIface", sizeof( GtkRecentChooserIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
302 { "GtkRecentFilterInfo", sizeof( GtkRecentFilterInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
303 { "GtkRecentActionClass", sizeof( GtkRecentActionClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
304 { "GtkRecentAction", sizeof( GtkRecentAction ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
305 { "GtkRecentManagerClass", sizeof( GtkRecentManagerClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
306 { "GtkRecentManager", sizeof( GtkRecentManager ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
307 { "GtkRecentData", sizeof( GtkRecentData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
308 { "GtkRadioToolButtonClass", sizeof( GtkRadioToolButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
309 { "GtkRadioToolButton", sizeof( GtkRadioToolButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
310 { "GtkToggleToolButtonClass", sizeof( GtkToggleToolButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
311 { "GtkToggleToolButton", sizeof( GtkToggleToolButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
312 { "GtkRadioMenuItemClass", sizeof( GtkRadioMenuItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
313 { "GtkRadioMenuItem", sizeof( GtkRadioMenuItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
314 { "GtkRadioButtonClass", sizeof( GtkRadioButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
315 { "GtkRadioButton", sizeof( GtkRadioButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
316 { "GtkRadioActionClass", sizeof( GtkRadioActionClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
317 { "GtkRadioAction", sizeof( GtkRadioAction ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
318 { "GtkToggleActionClass", sizeof( GtkToggleActionClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
319 { "GtkToggleAction", sizeof( GtkToggleAction ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
320 { "GtkProgressBarClass", sizeof( GtkProgressBarClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
321 { "GtkProgressBar", sizeof( GtkProgressBar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
322 { "GtkProgressClass", sizeof( GtkProgressClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
323 { "GtkProgress", sizeof( GtkProgress ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
324 { "GtkPrintOperation", sizeof( GtkPrintOperation ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
325 { "GtkPrintOperationClass", sizeof( GtkPrintOperationClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
326 { "GtkPrintOperationPreviewIface", sizeof( GtkPrintOperationPreviewIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
327 { "GtkPageRange", sizeof( GtkPageRange ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
328 { "GtkPreviewClass", sizeof( GtkPreviewClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
329 { "GtkDitherInfo", sizeof( GtkDitherInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
330 { "GtkPreviewInfo", sizeof( GtkPreviewInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
331 { "GtkPreview", sizeof( GtkPreview ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
332 { "GtkPlugClass", sizeof( GtkPlugClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
333 { "GtkPlug", sizeof( GtkPlug ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
334 { "GtkSocketClass", sizeof( GtkSocketClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
335 { "GtkSocket", sizeof( GtkSocket ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
336 { "GtkPixmapClass", sizeof( GtkPixmapClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
337 { "GtkPixmap", sizeof( GtkPixmap ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
338 { "GtkOptionMenuClass", sizeof( GtkOptionMenuClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
339 { "GtkOptionMenu", sizeof( GtkOptionMenu ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
340 { "GtkOldEditableClass", sizeof( GtkOldEditableClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
341 { "GtkOldEditable", sizeof( GtkOldEditable ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
342 { "GtkNotebookClass", sizeof( GtkNotebookClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
343 { "GtkNotebook", sizeof( GtkNotebook ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
344 { "GtkMessageDialogClass", sizeof( GtkMessageDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
345 { "GtkMessageDialog", sizeof( GtkMessageDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
346 { "GtkMenuToolButton", sizeof( GtkMenuToolButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
347 { "GtkMenuToolButtonClass", sizeof( GtkMenuToolButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
348 { "GtkToolButtonClass", sizeof( GtkToolButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
349 { "GtkToolButton", sizeof( GtkToolButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
350 { "GtkToolItemClass", sizeof( GtkToolItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
351 { "GtkToolItem", sizeof( GtkToolItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
352 { "GtkTooltipsData", sizeof( GtkTooltipsData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
353 { "GtkTooltipsClass", sizeof( GtkTooltipsClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
354 { "GtkTooltips", sizeof( GtkTooltips ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
355 { "GtkMenuBarClass", sizeof( GtkMenuBarClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
356 { "GtkMenuBar", sizeof( GtkMenuBar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
357 { "GtkListClass", sizeof( GtkListClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
358 { "GtkList", sizeof( GtkList ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
359 { "GtkListItemClass", sizeof( GtkListItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
360 { "GtkListItem", sizeof( GtkListItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
361 { "GtkLinkButtonClass", sizeof( GtkLinkButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
362 { "GtkLinkButton", sizeof( GtkLinkButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
363 { "GtkLayoutClass", sizeof( GtkLayoutClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
364 { "GtkLayout", sizeof( GtkLayout ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
365 { "GtkInvisibleClass", sizeof( GtkInvisibleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
366 { "GtkInvisible", sizeof( GtkInvisible ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
367 { "GtkInputDialogClass", sizeof( GtkInputDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
368 { "GtkInputDialog", sizeof( GtkInputDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
369 { "GtkIMMulticontextClass", sizeof( GtkIMMulticontextClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
370 { "GtkIMMulticontext", sizeof( GtkIMMulticontext ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
371 { "GtkIMContextSimpleClass", sizeof( GtkIMContextSimpleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
372 { "GtkIMContextSimple", sizeof( GtkIMContextSimple ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
373 { "GtkImageMenuItemClass", sizeof( GtkImageMenuItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
374 { "GtkImageMenuItem", sizeof( GtkImageMenuItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
375 { "GtkIconViewClass", sizeof( GtkIconViewClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
376 { "GtkIconView", sizeof( GtkIconView ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
377 { "GtkIconThemeClass", sizeof( GtkIconThemeClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
378 { "GtkIconTheme", sizeof( GtkIconTheme ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
379 { "GtkIconFactoryClass", sizeof( GtkIconFactoryClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
380 { "GtkHSeparatorClass", sizeof( GtkHSeparatorClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
381 { "GtkHSeparator", sizeof( GtkHSeparator ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
382 { "GtkSeparatorClass", sizeof( GtkSeparatorClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
383 { "GtkSeparator", sizeof( GtkSeparator ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
384 { "GtkHScaleClass", sizeof( GtkHScaleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
385 { "GtkHScale", sizeof( GtkHScale ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
386 { "GtkScaleClass", sizeof( GtkScaleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
387 { "GtkScale", sizeof( GtkScale ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
388 { "GtkHRulerClass", sizeof( GtkHRulerClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
389 { "GtkHRuler", sizeof( GtkHRuler ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
390 { "GtkRulerMetric", sizeof( GtkRulerMetric ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
391 { "GtkRulerClass", sizeof( GtkRulerClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
392 { "GtkRuler", sizeof( GtkRuler ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
393 { "GtkHPanedClass", sizeof( GtkHPanedClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
394 { "GtkHPaned", sizeof( GtkHPaned ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
395 { "GtkPanedClass", sizeof( GtkPanedClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
396 { "GtkPaned", sizeof( GtkPaned ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
397 { "GtkHButtonBoxClass", sizeof( GtkHButtonBoxClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
398 { "GtkHButtonBox", sizeof( GtkHButtonBox ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
399 { "GtkHandleBoxClass", sizeof( GtkHandleBoxClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
400 { "GtkHandleBox", sizeof( GtkHandleBox ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
401 { "GtkGammaCurveClass", sizeof( GtkGammaCurveClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
402 { "GtkGammaCurve", sizeof( GtkGammaCurve ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
403 { "GtkFontSelectionDialogClass", sizeof( GtkFontSelectionDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
404 { "GtkFontSelectionDialog", sizeof( GtkFontSelectionDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
405 { "GtkFontSelectionClass", sizeof( GtkFontSelectionClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
406 { "GtkFontSelection", sizeof( GtkFontSelection ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
407 { "GtkFontButtonClass", sizeof( GtkFontButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
408 { "GtkFontButton", sizeof( GtkFontButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
409 { "GtkFileChooserWidgetClass", sizeof( GtkFileChooserWidgetClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
410 { "GtkFileChooserWidget", sizeof( GtkFileChooserWidget ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
411 { "GtkFileChooserDialogClass", sizeof( GtkFileChooserDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
412 { "GtkFileChooserDialog", sizeof( GtkFileChooserDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
413 { "GtkFileChooserButtonClass", sizeof( GtkFileChooserButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
414 { "GtkFileChooserButton", sizeof( GtkFileChooserButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
415 { "GtkFileFilterInfo", sizeof( GtkFileFilterInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
416 { "GtkFixedChild", sizeof( GtkFixedChild ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
417 { "GtkFixedClass", sizeof( GtkFixedClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
418 { "GtkFixed", sizeof( GtkFixed ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
419 { "GtkFileSelectionClass", sizeof( GtkFileSelectionClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
420 { "GtkFileSelection", sizeof( GtkFileSelection ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
421 { "GtkExpanderClass", sizeof( GtkExpanderClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
422 { "GtkExpander", sizeof( GtkExpander ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
423 { "GtkEventBoxClass", sizeof( GtkEventBoxClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
424 { "GtkEventBox", sizeof( GtkEventBox ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
425 { "GtkCurveClass", sizeof( GtkCurveClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
426 { "GtkCurve", sizeof( GtkCurve ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
427 { "GtkDrawingAreaClass", sizeof( GtkDrawingAreaClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
428 { "GtkDrawingArea", sizeof( GtkDrawingArea ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
429 { "GtkCTreeNode", sizeof( GtkCTreeNode ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
430 { "GtkCTreeRow", sizeof( GtkCTreeRow ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
431 { "GtkCTreeClass", sizeof( GtkCTreeClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
432 { "GtkCTree", sizeof( GtkCTree ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
433 { "GtkComboBoxEntryClass", sizeof( GtkComboBoxEntryClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
434 { "GtkComboBoxEntry", sizeof( GtkComboBoxEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
435 { "GtkComboBoxClass", sizeof( GtkComboBoxClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
436 { "GtkComboBox", sizeof( GtkComboBox ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
437 { "GtkTreeSelectionClass", sizeof( GtkTreeSelectionClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
438 { "GtkTreeSelection", sizeof( GtkTreeSelection ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
439 { "GtkTreeViewClass", sizeof( GtkTreeViewClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
440 { "GtkTreeView", sizeof( GtkTreeView ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
441 { "GtkEntryClass", sizeof( GtkEntryClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
442 { "GtkEntry", sizeof( GtkEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
443 { "GtkEntryCompletionClass", sizeof( GtkEntryCompletionClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
444 { "GtkEntryCompletion", sizeof( GtkEntryCompletion ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
445 { "GtkTreeModelFilterClass", sizeof( GtkTreeModelFilterClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
446 { "GtkTreeModelFilter", sizeof( GtkTreeModelFilter ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
447 { "GtkListStoreClass", sizeof( GtkListStoreClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
448 { "GtkListStore", sizeof( GtkListStore ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
449 { "GtkIMContextClass", sizeof( GtkIMContextClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
450 { "GtkIMContext", sizeof( GtkIMContext ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
451 { "GtkEditableClass", sizeof( GtkEditableClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
452 { "GtkComboClass", sizeof( GtkComboClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
453 { "GtkCombo", sizeof( GtkCombo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
454 { "GtkHBoxClass", sizeof( GtkHBoxClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
455 { "GtkHBox", sizeof( GtkHBox ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
456 { "GtkColorSelectionDialogClass", sizeof( GtkColorSelectionDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
457 { "GtkColorSelectionDialog", sizeof( GtkColorSelectionDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
458 { "GtkColorSelectionClass", sizeof( GtkColorSelectionClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
459 { "GtkColorSelection", sizeof( GtkColorSelection ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
460 { "GtkVBoxClass", sizeof( GtkVBoxClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
461 { "GtkVBox", sizeof( GtkVBox ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
462 { "GtkColorButtonClass", sizeof( GtkColorButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
463 { "GtkColorButton", sizeof( GtkColorButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
464 { "GtkCListDestInfo", sizeof( GtkCListDestInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
465 { "GtkCListCellInfo", sizeof( GtkCListCellInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
466 { "GtkCellWidget", sizeof( GtkCellWidget ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
467 { "GtkCellPixText", sizeof( GtkCellPixText ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
468 { "GtkCellPixmap", sizeof( GtkCellPixmap ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
469 { "GtkCellText", sizeof( GtkCellText ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
470 { "GtkCell", sizeof( GtkCell ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
471 { "GtkCListRow", sizeof( GtkCListRow ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
472 { "GtkCListColumn", sizeof( GtkCListColumn ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
473 { "GtkCListClass", sizeof( GtkCListClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
474 { "GtkCList", sizeof( GtkCList ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
475 { "GtkVScrollbarClass", sizeof( GtkVScrollbarClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
476 { "GtkVScrollbar", sizeof( GtkVScrollbar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
477 { "GtkHScrollbarClass", sizeof( GtkHScrollbarClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
478 { "GtkHScrollbar", sizeof( GtkHScrollbar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
479 { "GtkScrollbarClass", sizeof( GtkScrollbarClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
480 { "GtkScrollbar", sizeof( GtkScrollbar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
481 { "GtkRangeClass", sizeof( GtkRangeClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
482 { "GtkRange", sizeof( GtkRange ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
483 { "GtkTargetPair", sizeof( GtkTargetPair ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
484 { "GtkTargetEntry", sizeof( GtkTargetEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
485 { "GtkTargetList", sizeof( GtkTargetList ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
486 { "GtkTextBuffer", sizeof( GtkTextBuffer ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
487 { "GtkTextChildAnchorClass", sizeof( GtkTextChildAnchorClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
488 { "GtkTextChildAnchor", sizeof( GtkTextChildAnchor ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
489 { "GtkTextAppearance", sizeof( GtkTextAppearance ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
490 { "GtkTextTagClass", sizeof( GtkTextTagClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
491 { "GtkTextTag", sizeof( GtkTextTag ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
492 { "GtkTextAttributes", sizeof( GtkTextAttributes ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
493 { "GtkTextTagTable", sizeof( GtkTextTagTable ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
494 { "GtkTextIter", sizeof( GtkTextIter ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
495 { "GtkCheckMenuItemClass", sizeof( GtkCheckMenuItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
496 { "GtkCheckMenuItem", sizeof( GtkCheckMenuItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
497 { "GtkMenuItemClass", sizeof( GtkMenuItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
498 { "GtkMenuItem", sizeof( GtkMenuItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
499 { "GtkItemClass", sizeof( GtkItemClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
500 { "GtkItem", sizeof( GtkItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
501 { "GtkCheckButtonClass", sizeof( GtkCheckButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
502 { "GtkCheckButton", sizeof( GtkCheckButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
503 { "GtkToggleButtonClass", sizeof( GtkToggleButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
504 { "GtkToggleButton", sizeof( GtkToggleButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
505 { "GtkCellViewClass", sizeof( GtkCellViewClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
506 { "GtkCellView", sizeof( GtkCellView ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
507 { "GtkCellRendererToggleClass", sizeof( GtkCellRendererToggleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
508 { "GtkCellRendererToggle", sizeof( GtkCellRendererToggle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
509 { "GtkCellRendererSpinClass", sizeof( GtkCellRendererSpinClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
510 { "GtkCellRendererSpin", sizeof( GtkCellRendererSpin ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
511 { "GtkCellRendererProgressClass", sizeof( GtkCellRendererProgressClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
512 { "GtkCellRendererProgress", sizeof( GtkCellRendererProgress ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
513 { "GtkCellRendererPixbufClass", sizeof( GtkCellRendererPixbufClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
514 { "GtkCellRendererPixbuf", sizeof( GtkCellRendererPixbuf ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
515 { "GtkCellRendererComboClass", sizeof( GtkCellRendererComboClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
516 { "GtkCellRendererCombo", sizeof( GtkCellRendererCombo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
517 { "GtkCellRendererAccelClass", sizeof( GtkCellRendererAccelClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
518 { "GtkCellRendererAccel", sizeof( GtkCellRendererAccel ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
519 { "GtkCellRendererTextClass", sizeof( GtkCellRendererTextClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
520 { "GtkCellRendererText", sizeof( GtkCellRendererText ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
521 { "GtkCellLayoutIface", sizeof( GtkCellLayoutIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
522 { "GtkTreeViewColumnClass", sizeof( GtkTreeViewColumnClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
523 { "GtkTreeViewColumn", sizeof( GtkTreeViewColumn ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
524 { "GtkTreeSortableIface", sizeof( GtkTreeSortableIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
525 { "GtkTreeModelIface", sizeof( GtkTreeModelIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
526 { "GtkTreeIter", sizeof( GtkTreeIter ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
527 { "GtkCellRendererClass", sizeof( GtkCellRendererClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
528 { "GtkCellRenderer", sizeof( GtkCellRenderer ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
529 { "GtkCellEditableIface", sizeof( GtkCellEditableIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
530 { "GtkCalendarClass", sizeof( GtkCalendarClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
531 { "GtkCalendar", sizeof( GtkCalendar ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
532 { "GtkButtonClass", sizeof( GtkButtonClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
533 { "GtkButton", sizeof( GtkButton ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
534 { "GtkImageIconNameData", sizeof( GtkImageIconNameData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
535 { "GtkImageAnimationData", sizeof( GtkImageAnimationData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
536 { "GtkImageIconSetData", sizeof( GtkImageIconSetData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
537 { "GtkImageStockData", sizeof( GtkImageStockData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
538 { "GtkImagePixbufData", sizeof( GtkImagePixbufData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
539 { "GtkImageImageData", sizeof( GtkImageImageData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
540 { "GtkImagePixmapData", sizeof( GtkImagePixmapData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
541 { "GtkImageClass", sizeof( GtkImageClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
542 { "GtkImage", sizeof( GtkImage ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
543 { "GtkBuildableIface", sizeof( GtkBuildableIface ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
544 { "GtkBuilderClass", sizeof( GtkBuilderClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
545 { "GtkBuilder", sizeof( GtkBuilder ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
546 { "GtkBindingArg", sizeof( GtkBindingArg ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
547 { "GtkBindingSignal", sizeof( GtkBindingSignal ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
548 { "GtkBindingEntry", sizeof( GtkBindingEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
549 { "GtkBindingSet", sizeof( GtkBindingSet ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
550 { "GtkButtonBoxClass", sizeof( GtkButtonBoxClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
551 { "GtkButtonBox", sizeof( GtkButtonBox ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
552 { "GtkBoxChild", sizeof( GtkBoxChild ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
553 { "GtkBoxClass", sizeof( GtkBoxClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
554 { "GtkBox", sizeof( GtkBox ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
555 { "GtkAssistantClass", sizeof( GtkAssistantClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
556 { "GtkAssistant", sizeof( GtkAssistant ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
557 { "GtkAspectFrameClass", sizeof( GtkAspectFrameClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
558 { "GtkAspectFrame", sizeof( GtkAspectFrame ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
559 { "GtkFrameClass", sizeof( GtkFrameClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
560 { "GtkFrame", sizeof( GtkFrame ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
561 { "GtkArrowClass", sizeof( GtkArrowClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
562 { "GtkArrow", sizeof( GtkArrow ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
563 { "GtkAlignmentClass", sizeof( GtkAlignmentClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
564 { "GtkAlignment", sizeof( GtkAlignment ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
565 { "GtkRadioActionEntry", sizeof( GtkRadioActionEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
566 { "GtkToggleActionEntry", sizeof( GtkToggleActionEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
567 { "GtkActionEntry", sizeof( GtkActionEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
568 { "GtkActionGroupClass", sizeof( GtkActionGroupClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
569 { "GtkActionGroup", sizeof( GtkActionGroup ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
570 { "GtkMenuEntry", sizeof( GtkMenuEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
571 { "GtkItemFactoryItem", sizeof( GtkItemFactoryItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
572 { "GtkItemFactoryEntry", sizeof( GtkItemFactoryEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
573 { "GtkItemFactoryClass", sizeof( GtkItemFactoryClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
574 { "GtkItemFactory", sizeof( GtkItemFactory ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
575 { "GtkActionClass", sizeof( GtkActionClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
576 { "GtkAction", sizeof( GtkAction ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
577 { "GtkAccessibleClass", sizeof( GtkAccessibleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
578 { "GtkAccessible", sizeof( GtkAccessible ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
579 { "GtkAccelLabelClass", sizeof( GtkAccelLabelClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
580 { "GtkAccelLabel", sizeof( GtkAccelLabel ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
581 { "GtkLabelClass", sizeof( GtkLabelClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
582 { "GtkLabel", sizeof( GtkLabel ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
583 { "GtkMenuClass", sizeof( GtkMenuClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
584 { "GtkMenu", sizeof( GtkMenu ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
585 { "GtkMenuShellClass", sizeof( GtkMenuShellClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
586 { "GtkMenuShell", sizeof( GtkMenuShell ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
587 { "GtkMiscClass", sizeof( GtkMiscClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
588 { "GtkMisc", sizeof( GtkMisc ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
589 { "GtkAboutDialogClass", sizeof( GtkAboutDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
590 { "GtkAboutDialog", sizeof( GtkAboutDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
591 { "GtkDialogClass", sizeof( GtkDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
592 { "GtkDialog", sizeof( GtkDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
593 { "GtkWindowGroupClass", sizeof( GtkWindowGroupClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
594 { "GtkWindowGroup", sizeof( GtkWindowGroup ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
595 { "GtkWindowClass", sizeof( GtkWindowClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
596 { "GtkBinClass", sizeof( GtkBinClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
597 { "GtkBin", sizeof( GtkBin ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
598 { "GtkContainerClass", sizeof( GtkContainerClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
599 { "GtkContainer", sizeof( GtkContainer ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
600 { "GtkWindow", sizeof( GtkWindow ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
601 { "GtkWidgetShapeInfo", sizeof( GtkWidgetShapeInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
602 { "GtkWidgetAuxInfo", sizeof( GtkWidgetAuxInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
603 { "GtkWidgetClass", sizeof( GtkWidgetClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
604 { "GtkSelectionData", sizeof( GtkSelectionData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
605 { "GtkRequisition", sizeof( GtkRequisition ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
606 { "GtkSettingsValue", sizeof( GtkSettingsValue ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
607 { "GtkSettingsClass", sizeof( GtkSettingsClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
608 { "GtkRcStyleClass", sizeof( GtkRcStyleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
609 { "GtkIconFactory", sizeof( GtkIconFactory ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
610 { "GtkWidget", sizeof( GtkWidget ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
611 { "GtkSettings", sizeof( GtkSettings ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
612 { "GtkRcProperty", sizeof( GtkRcProperty ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
613 { "GtkRcStyle", sizeof( GtkRcStyle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
614 { "GtkStyleClass", sizeof( GtkStyleClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
615 { "GtkStyle", sizeof( GtkStyle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
616 { "GtkBorder", sizeof( GtkBorder ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
617 { "GtkAdjustmentClass", sizeof( GtkAdjustmentClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
618 { "GtkAdjustment", sizeof( GtkAdjustment ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
619 { "GtkObjectClass", sizeof( GtkObjectClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
620 { "GtkTypeInfo", sizeof( GtkTypeInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
621 { "GtkObject", sizeof( GtkObject ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
622 { "GtkArg", sizeof( GtkArg ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
623 { "GtkAccelGroupEntry", sizeof( GtkAccelGroupEntry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
624 { "GtkAccelKey", sizeof( GtkAccelKey ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
625 { "GtkAccelGroupClass", sizeof( GtkAccelGroupClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
626 { "GtkAccelGroup", sizeof( GtkAccelGroup ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
627 { "GtkPrintUnixDialogClass", sizeof( GtkPrintUnixDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
628 { "GtkPrintUnixDialog", sizeof( GtkPrintUnixDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
629 { "GtkPrintJobClass", sizeof( GtkPrintJobClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
630 { "GtkPrintJob", sizeof( GtkPrintJob ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
631 { "GtkPrinterClass", sizeof( GtkPrinterClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
632 { "GtkPrinter", sizeof( GtkPrinter ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
633 { "GtkPageSetupUnixDialogClass", sizeof( GtkPageSetupUnixDialogClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
634 { "GtkPageSetupUnixDialog", sizeof( GtkPageSetupUnixDialog ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
635 { "PangoRendererClass", sizeof( PangoRendererClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
636 { "PangoRenderer", sizeof( PangoRenderer ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
637 { "PangoLayoutLine", sizeof( PangoLayoutLine ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
638 { "PangoGlyphItem", sizeof( PangoGlyphItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
639 { "PangoGlyphString", sizeof( PangoGlyphString ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
640 { "PangoGlyphInfo", sizeof( PangoGlyphInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
641 { "PangoGlyphVisAttr", sizeof( PangoGlyphVisAttr ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
642 { "PangoGlyphGeometry", sizeof( PangoGlyphGeometry ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
643 { "PangoItem", sizeof( PangoItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
644 { "PangoAnalysis", sizeof( PangoAnalysis ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
645 { "PangoAttrShape", sizeof( PangoAttrShape ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
646 { "PangoAttrFontDesc", sizeof( PangoAttrFontDesc ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
647 { "PangoAttrColor", sizeof( PangoAttrColor ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
648 { "PangoAttrFloat", sizeof( PangoAttrFloat ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
649 { "PangoAttrSize", sizeof( PangoAttrSize ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
650 { "PangoAttrInt", sizeof( PangoAttrInt ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
651 { "PangoAttrLanguage", sizeof( PangoAttrLanguage ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
652 { "PangoAttrString", sizeof( PangoAttrString ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
653 { "PangoAttrClass", sizeof( PangoAttrClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
654 { "PangoAttribute", sizeof( PangoAttribute ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
655 { "PangoColor", sizeof( PangoColor ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
656 { "PangoMatrix", sizeof( PangoMatrix ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
657 { "PangoRectangle", sizeof( PangoRectangle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
658 { "PangoLogAttr", sizeof( PangoLogAttr ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
659 { "XExtensionVersion", sizeof( XExtensionVersion ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
660 { "XButtonState", sizeof( XButtonState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
661 { "XKeyState", sizeof( XKeyState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
662 { "XValuatorState", sizeof( XValuatorState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
663 { "XDeviceState", sizeof( XDeviceState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
664 { "XDeviceTimeCoord", sizeof( XDeviceTimeCoord ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
665 { "XEventList", sizeof( XEventList ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
666 { "XDevice", sizeof( XDevice ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
667 { "XInputClassInfo", sizeof( XInputClassInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
668 { "XValuatorInfo", sizeof( XValuatorInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
669 { "XAxisInfo", sizeof( XAxisInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
670 { "XButtonInfo", sizeof( XButtonInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
671 { "XKeyInfo", sizeof( XKeyInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
672 { "XDeviceInfo", sizeof( XDeviceInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
673 { "XDeviceEnableControl", sizeof( XDeviceEnableControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
674 { "XDeviceCoreState", sizeof( XDeviceCoreState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
675 { "XDeviceCoreControl", sizeof( XDeviceCoreControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
676 { "XDeviceAbsAreaControl", sizeof( XDeviceAbsAreaControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
677 { "XDeviceAbsCalibControl", sizeof( XDeviceAbsCalibControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
678 { "XDeviceResolutionState", sizeof( XDeviceResolutionState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
679 { "XDeviceResolutionControl", sizeof( XDeviceResolutionControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
680 { "XDeviceControl", sizeof( XDeviceControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
681 { "XLedFeedbackControl", sizeof( XLedFeedbackControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
682 { "XBellFeedbackControl", sizeof( XBellFeedbackControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
683 { "XIntegerFeedbackControl", sizeof( XIntegerFeedbackControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
684 { "XStringFeedbackControl", sizeof( XStringFeedbackControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
685 { "XKbdFeedbackControl", sizeof( XKbdFeedbackControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
686 { "XPtrFeedbackControl", sizeof( XPtrFeedbackControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
687 { "XFeedbackControl", sizeof( XFeedbackControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
688 { "XLedFeedbackState", sizeof( XLedFeedbackState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
689 { "XBellFeedbackState", sizeof( XBellFeedbackState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
690 { "XStringFeedbackState", sizeof( XStringFeedbackState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
691 { "XIntegerFeedbackState", sizeof( XIntegerFeedbackState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
692 { "XPtrFeedbackState", sizeof( XPtrFeedbackState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
693 { "XKbdFeedbackState", sizeof( XKbdFeedbackState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
694 { "XFeedbackState", sizeof( XFeedbackState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
695 { "XDevicePresenceNotifyEvent", sizeof( XDevicePresenceNotifyEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
696 { "XChangeDeviceNotifyEvent", sizeof( XChangeDeviceNotifyEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
697 { "XDeviceMappingEvent", sizeof( XDeviceMappingEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
698 { "XButtonStatus", sizeof( XButtonStatus ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
699 { "XKeyStatus", sizeof( XKeyStatus ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
700 { "XValuatorStatus", sizeof( XValuatorStatus ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
701 { "XDeviceStateNotifyEvent", sizeof( XDeviceStateNotifyEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
702 { "XInputClass", sizeof( XInputClass ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
703 { "XProximityNotifyEvent", sizeof( XProximityNotifyEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
704 { "XDeviceFocusChangeEvent", sizeof( XDeviceFocusChangeEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
705 { "XDeviceMotionEvent", sizeof( XDeviceMotionEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
706 { "XDeviceButtonEvent", sizeof( XDeviceButtonEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
707 { "XDeviceKeyEvent", sizeof( XDeviceKeyEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
708 { "XIMValuesList", sizeof( XIMValuesList ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
709 { "XIMHotKeyTriggers", sizeof( XIMHotKeyTriggers ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
710 { "XIMHotKeyTrigger", sizeof( XIMHotKeyTrigger ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
711 { "XIMStatusDrawCallbackStruct", sizeof( XIMStatusDrawCallbackStruct ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
712 { "XIMPreeditCaretCallbackStruct", sizeof( XIMPreeditCaretCallbackStruct ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
713 { "XIMPreeditDrawCallbackStruct", sizeof( XIMPreeditDrawCallbackStruct ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
714 { "XIMStringConversionCallbackStruct", sizeof( XIMStringConversionCallbackStruct ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
715 { "XIMStringConversionText", sizeof( XIMStringConversionText ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
716 { "XIMPreeditStateNotifyCallbackStruct", sizeof( XIMPreeditStateNotifyCallbackStruct ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
717 { "XIMText", sizeof( XIMText ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
718 { "XICCallback", sizeof( XICCallback ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
719 { "XIMCallback", sizeof( XIMCallback ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
720 { "XIMStyles", sizeof( XIMStyles ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
721 { "XOMFontInfo", sizeof( XOMFontInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
722 { "XOMOrientation", sizeof( XOMOrientation ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
723 { "XOMCharSetList", sizeof( XOMCharSetList ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
724 { "XwcTextItem", sizeof( XwcTextItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
725 { "XmbTextItem", sizeof( XmbTextItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
726 { "XFontSetExtents", sizeof( XFontSetExtents ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
727 { "XEDataObject", sizeof( XEDataObject ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
728 { "XTextItem16", sizeof( XTextItem16 ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
729 { "XChar2b", sizeof( XChar2b ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
730 { "XTextItem", sizeof( XTextItem ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
731 { "XFontStruct", sizeof( XFontStruct ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
732 { "XFontProp", sizeof( XFontProp ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
733 { "XCharStruct", sizeof( XCharStruct ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
734 { "XEvent", sizeof( XEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
735 { "XAnyEvent", sizeof( XAnyEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
736 { "XErrorEvent", sizeof( XErrorEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
737 { "XMappingEvent", sizeof( XMappingEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
738 { "XClientMessageEvent", sizeof( XClientMessageEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
739 { "XColormapEvent", sizeof( XColormapEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
740 { "XSelectionEvent", sizeof( XSelectionEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
741 { "XSelectionRequestEvent", sizeof( XSelectionRequestEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
742 { "XSelectionClearEvent", sizeof( XSelectionClearEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
743 { "XPropertyEvent", sizeof( XPropertyEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
744 { "XCirculateRequestEvent", sizeof( XCirculateRequestEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
745 { "XCirculateEvent", sizeof( XCirculateEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
746 { "XConfigureRequestEvent", sizeof( XConfigureRequestEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
747 { "XResizeRequestEvent", sizeof( XResizeRequestEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
748 { "XGravityEvent", sizeof( XGravityEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
749 { "XConfigureEvent", sizeof( XConfigureEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
750 { "XReparentEvent", sizeof( XReparentEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
751 { "XMapRequestEvent", sizeof( XMapRequestEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
752 { "XMapEvent", sizeof( XMapEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
753 { "XUnmapEvent", sizeof( XUnmapEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
754 { "XDestroyWindowEvent", sizeof( XDestroyWindowEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
755 { "XCreateWindowEvent", sizeof( XCreateWindowEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
756 { "XVisibilityEvent", sizeof( XVisibilityEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
757 { "XNoExposeEvent", sizeof( XNoExposeEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
758 { "XGraphicsExposeEvent", sizeof( XGraphicsExposeEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
759 { "XExposeEvent", sizeof( XExposeEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
760 { "XKeymapEvent", sizeof( XKeymapEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
761 { "XFocusChangeEvent", sizeof( XFocusChangeEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
762 { "XCrossingEvent", sizeof( XCrossingEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
763 { "XMotionEvent", sizeof( XMotionEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
764 { "XButtonEvent", sizeof( XButtonEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
765 { "XKeyEvent", sizeof( XKeyEvent ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
766 { "XModifierKeymap", sizeof( XModifierKeymap ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
767 { "XTimeCoord", sizeof( XTimeCoord ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
768 { "XKeyboardState", sizeof( XKeyboardState ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
769 { "XKeyboardControl", sizeof( XKeyboardControl ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
770 { "XArc", sizeof( XArc ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
771 { "XRectangle", sizeof( XRectangle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
772 { "XPoint", sizeof( XPoint ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
773 { "XSegment", sizeof( XSegment ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
774 { "XColor", sizeof( XColor ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
775 { "XWindowChanges", sizeof( XWindowChanges ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
776 { "XImage", sizeof( XImage ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
777 { "XServerInterpretedAddress", sizeof( XServerInterpretedAddress ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
778 { "XHostAddress", sizeof( XHostAddress ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
779 { "XWindowAttributes", sizeof( XWindowAttributes ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
780 { "XSetWindowAttributes", sizeof( XSetWindowAttributes ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
781 { "ScreenFormat", sizeof( ScreenFormat ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
782 { "Screen", sizeof( Screen ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
783 { "Depth", sizeof( Depth ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
784 { "Visual", sizeof( Visual ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
785 { "XGCValues", sizeof( XGCValues ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
786 { "XPixmapFormatValues", sizeof( XPixmapFormatValues ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
787 { "XExtCodes", sizeof( XExtCodes ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
788 { "XExtData", sizeof( XExtData ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
789 { "XConicalGradient", sizeof( XConicalGradient ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
790 { "XRadialGradient", sizeof( XRadialGradient ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
791 { "XLinearGradient", sizeof( XLinearGradient ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
792 { "XTrap", sizeof( XTrap ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
793 { "XSpanFix", sizeof( XSpanFix ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
794 { "XAnimCursor", sizeof( XAnimCursor ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
795 { "XIndexValue", sizeof( XIndexValue ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
796 { "XFilters", sizeof( XFilters ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
797 { "XTransform", sizeof( XTransform ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
798 { "XTrapezoid", sizeof( XTrapezoid ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
799 { "XCircle", sizeof( XCircle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
800 { "XTriangle", sizeof( XTriangle ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
801 { "XLineFixed", sizeof( XLineFixed ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
802 { "XPointFixed", sizeof( XPointFixed ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
803 { "XPointDouble", sizeof( XPointDouble ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
804 { "XGlyphElt32", sizeof( XGlyphElt32 ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
805 { "XGlyphElt16", sizeof( XGlyphElt16 ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
806 { "XGlyphElt8", sizeof( XGlyphElt8 ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
807 { "XGlyphInfo", sizeof( XGlyphInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
808 { "XRenderColor", sizeof( XRenderColor ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
809 { "XRenderPictureAttributes", sizeof( XRenderPictureAttributes ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
810 { "XRenderPictFormat", sizeof( XRenderPictFormat ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
811 { "XRenderDirectFormat", sizeof( XRenderDirectFormat ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
812 { "XStandardColormap", sizeof( XStandardColormap ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
813 { "XVisualInfo", sizeof( XVisualInfo ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
814 { "XComposeStatus", sizeof( XComposeStatus ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
815 { "XClassHint", sizeof( XClassHint ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
816 { "XIconSize", sizeof( XIconSize ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
817 { "XTextProperty", sizeof( XTextProperty ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
818 { "XWMHints", sizeof( XWMHints ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
819 { "XSizeHints", sizeof( XSizeHints ) },
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
820 };
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
821
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
822 int main( int n, char** args ){
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
823 int i = 0;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
824 for( i = 0; i < sizeof( size_values )/sizeof( size_values[0] ); i++ ){
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
825 printf( "%s\t%d\n", size_values[i].name, size_values[i].size );
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
826 }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
827 return 0;
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
828 }
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
829
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
830
c39d1446f191 Added dev tools, so they are not in the release code.
Frank Benoit <benoit@tionex.de>
parents:
diff changeset
831