glib-2.0: add unichar.to_string method
[vala-lang.git] / vapi / libbonoboui-2.0.vapi
blobe1cb2a8677ffa5a8654c563c0238de316bdb7e01
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 weak string cname;
10                 public weak 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         [CCode (has_target = false)]
20         public delegate void VerbFn (Component component, void* user_data, string cname);