public const string USERPIC_PATH;
public const string TEMPLATES_PATH;
public const string AUTHORS;
+
+ public const string CONS_KEY;
+ public const string CONS_SEC;
}
+namespace Gtk\r
+{\r
+ [CCode (cprefix = "GTKSPELL_ERROR_", cheader_filename = "gtkspell/gtkspell.h")]\r
+ public errordomain SpeelError\r
+ {\r
+ ERROR_BACKEND\r
+ }\r
+\r
+ [Compact]
+ [CCode (cheader_filename = "gtkspell/gtkspell.h", free_function = "")]\r
+ public class Spell\r
+ {\r
+ [CCode (cname = "gtkspell_new_attach")]\r
+ public Spell.attach (TextView view, string? lang) throws GLib.Error;\r
+ [CCode (cname = "gtkspell_get_from_text_view")]\r
+ public static Spell get_from_text_view (TextView view);\r
+ [CCode (cname = "gtkspell_detach")]\r
+ public void detach ();\r
+ [CCode (cname = "gtkspell_set_language")]\r
+ public bool set_language (string lang) throws GLib.Error;\r
+ [CCode (cname = "gtkspell_recheck_all")]\r
+ public void recheck_all ();
+ }\r
+}\r
+
+/*
+[CCode (cheader_filename = "sha1.h")]
+namespace SHA1
+{
+ [CCode (cname = "_oauth_hmac_sha1")]
+ public void hmac (string key, string message, out uchar[] output);
+}
+*/