update for 0.4.0 release
[vala-lang.git] / vapi / libbonoboui-2.0.vapi
blobcb45f9cffb8fea758f53c4026b2e641f97277a42
1 /*
2  * WARNING: this vapi file is provided only to support development of gnome-panel applets
3  * since libbonoboui is deprecated (http://library.gnome.org/devel/references.html.en_GB)
4  */
6 [CCode (cheader_filename = "libbonoboui.h")]
7 namespace BonoboUI {
8         public struct Verb {
9                 public string cname;
10                 public VerbFn cb;
11                 public void* user_data;
12         }
14         [CCode (type_check_function = "BONOBO_IS_UI_COMPONENT")]
15         public class Component : GLib.Object
16         {
17         }
19         public static delegate void VerbFn (Component component, void* user_data, string cname);