vala r1099 - in trunk: . vapi
- From: juergbi svn gnome org
- To: svn-commits-list gnome org
- Subject: vala r1099 - in trunk: . vapi
- Date: Tue, 4 Mar 2008 20:14:54 +0000 (GMT)
Author: juergbi
Date: Tue Mar 4 20:14:54 2008
New Revision: 1099
URL: http://svn.gnome.org/viewvc/vala?rev=1099&view=rev
Log:
2008-03-04 Juerg Billeter <j bitron ch>
* vapi/glib-2.0.vapi: fix GBase64 bindings
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 Tue Mar 4 20:14:54 2008
@@ -1469,12 +1469,12 @@
/* Base64 Encoding */
public static class Base64 {
- public static size_t encode_step (string! _in, size_t len, bool break_lines, string _out, out int state, out int save);
- public static size_t encode_close (bool break_lines, string _out, out int state, out int save);
- public static string encode (string! data, int len);
+ public static size_t encode_step (uchar[] _in, bool break_lines, char* _out, ref int state, ref int save);
+ public static size_t encode_close (bool break_lines, char* _out, ref int state, ref int save);
+ public static string encode (uchar[] data);
+ public static size_t decode_step (char[] _in, uchar* _out, ref int state, ref uint save);
[NoArrayLength]
- public static size_t decode_step (string! _in, size_t len, uchar[] _out, out int state, out uint save);
- public static string decode (string! text, out size_t out_len);
+ public static uchar[] decode (string text, out size_t out_len);
}
/* Data Checksums */
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]