[vala] glib-2.0: Add g_key_file_get/set_int64 bindings
- From: Jürg Billeter <juergbi src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [vala] glib-2.0: Add g_key_file_get/set_int64 bindings
- Date: Thu, 16 Sep 2010 20:47:59 +0000 (UTC)
commit 03070394571e88ef085c8bce30934adad8424041
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 1b916c7..f179e4e 100644
--- a/vapi/glib-2.0.vapi
+++ b/vapi/glib-2.0.vapi
@@ -3167,6 +3167,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;
@@ -3184,6 +3186,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]