[vala/0.10] glib-2.0: Add g_key_file_get/set_int64 bindings



commit 077e52dbbef5616207409be3c87a13ec46a3303d
Author: Jürg Billeter <j bitron ch>
Date:   Thu Sep 16 22:46:39 2010 +0200

    glib-2.0: Add g_key_file_get/set_int64 bindings

 vapi/glib-2.0.vapi |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)
---
diff --git a/vapi/glib-2.0.vapi b/vapi/glib-2.0.vapi
index 4cf2bfc..61d23c0 100644
--- a/vapi/glib-2.0.vapi
+++ b/vapi/glib-2.0.vapi
@@ -3153,6 +3153,8 @@ namespace GLib {
 		public string get_locale_string (string group_name, string key, string? locale = null) throws KeyFileError;
 		public bool get_boolean (string group_name, string key) throws KeyFileError;
 		public int get_integer (string group_name, string key) throws KeyFileError;
+		public int64 get_int64 (string group_name, string key) throws KeyFileError;
+		public uint64 get_uint64 (string group_name, string key) throws KeyFileError;
 		public double get_double (string group_name, string key) throws KeyFileError;
 		[CCode (array_length_type = "gsize")]
 		public string[] get_string_list (string group_name, string key) throws KeyFileError;
@@ -3170,6 +3172,8 @@ namespace GLib {
 		public void set_locale_string (string group_name, string key, string locale, string str);
 		public void set_boolean (string group_name, string key, bool value);
 		public void set_integer (string group_name, string key, int value);
+		public void set_int64 (string group_name, string key, int64 value);
+		public void set_uint64 (string group_name, string key, uint64 value);
 		public void set_double (string group_name, string key, double value);
 		public void set_string_list (string group_name, string key, [CCode (type = "const gchar* const*")] string[] list);
 		public void set_locale_string_list (string group_name, string key, string locale, string[] list);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]