vala r1374 - in trunk: . vapi
- From: juergbi svn gnome org
- To: svn-commits-list gnome org
- Subject: vala r1374 - in trunk: . vapi
- Date: Mon, 12 May 2008 16:17:01 +0100 (BST)
Author: juergbi
Date: Mon May 12 15:17:01 2008
New Revision: 1374
URL: http://svn.gnome.org/viewvc/vala?rev=1374&view=rev
Log:
2008-05-12 Juerg Billeter <j bitron ch>
* vapi/glib-2.0.vapi:
Add time_t and struct tm bindings,
based on patch by Evan Nemerson, fixes bug 527778
Modified:
trunk/ChangeLog
trunk/vapi/glib-2.0.vapi
Modified: trunk/vapi/glib-2.0.vapi
==============================================================================
--- trunk/vapi/glib-2.0.vapi (original)
+++ trunk/vapi/glib-2.0.vapi Mon May 12 15:17:01 2008
@@ -375,6 +375,12 @@
public string to_string (string format = "%g");
}
+[CCode (cheader_filename = "time.h")]
+public struct time_t {
+ [CCode (cname = "time")]
+ public time_t ();
+}
+
[SimpleType]
[CCode (cname = "gunichar", cprefix = "g_unichar_", cheader_filename = "glib.h", get_value_function = "g_value_get_int", set_value_function = "g_value_set_int", default_value = "0U")]
[IntegerType (rank = 7)]
@@ -1603,16 +1609,12 @@
public bool valid ();
}
- [CCode (free_function = "g_date_free")]
- public class Date : Boxed {
- public Date ();
- public Date.dmy (DateDay day, DateMonth month, DateYear year);
- public Date.julian (uint julian_day);
+ public struct Date {
public void clear (uint n_dates = 1);
public void set_day (DateDay day);
public void set_month (DateMonth month);
public void set_year (DateYear year);
- public void set_dmy (DateDay day, DateMonth month, DateYear y);
+ public void set_dmy (DateDay day, int month, DateYear y);
public void set_julian (uint julian_day);
public void set_time_val (TimeVal timeval);
public void set_parse (string str);
@@ -1639,6 +1641,8 @@
public uint get_iso8601_week_of_year ();
[CCode (instance_pos = -1)]
public size_t strftime (char[] s, string format);
+ [CCode (cname = "g_date_to_struct_tm")]
+ public void to_time (out Time tm);
public bool valid ();
public static uchar get_days_in_month (DateMonth month, DateYear year);
public static bool valid_day (DateDay day);
@@ -1647,7 +1651,40 @@
public static bool valid_weekday (DateWeekday weekday);
}
- public struct Time : int32 {
+ [CCode (cname = "struct tm", cheader_filename="time.h")]
+ public struct Time {
+ [CCode (cname = "tm_sec")]
+ public int second;
+ [CCode (cname = "tm_min")]
+ public int minute;
+ [CCode (cname = "tm_hour")]
+ public int hour;
+ [CCode (cname = "tm_mday")]
+ public int day;
+ [CCode (cname = "tm_mon")]
+ public int month;
+ [CCode (cname = "tm_year")]
+ public int year;
+ [CCode (cname = "tm_wday")]
+ public int weekday;
+ [CCode (cname = "tm_yday")]
+ public int day_of_year;
+ [CCode (cname = "tm_isdst")]
+ public int isdst;
+
+ [CCode (cname = "gmtime_r", instance_pos = -1)]
+ public Time.gm (time_t time);
+ [CCode (cname = "localtime_r", instance_pos = -1)]
+ public Time.local (time_t time);
+
+ [CCode (cname = "asctime_r")]
+ public string to_string (char* buffer = new char[26]);
+ public time_t mktime ();
+
+ [CCode (instance_pos = -1)]
+ public size_t strftime (char[] s, string format);
+ [CCode (instance_pos = -1)]
+ public weak string? strptime (string buf, string format);
}
/* Random Numbers */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]