[vala] readline: Fix cname of several delegates



commit 654c8460155de60f0d3d85c305906786d52ce1d7
Author: Luca Bruno <lucabru src gnome org>
Date:   Mon Aug 8 12:59:48 2011 +0200

    readline: Fix cname of several delegates
    
    Fixes bug 656146.

 vapi/readline.vapi |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/vapi/readline.vapi b/vapi/readline.vapi
index f897466..e130fef 100644
--- a/vapi/readline.vapi
+++ b/vapi/readline.vapi
@@ -43,23 +43,23 @@ namespace Readline {
 	public delegate int      GetcFunc (GLib.FileStream s);
 	[CCode (cname = "rl_linebuf_func_t", has_target = false)]
 	public delegate int      LinebufFunc (string s, int a);
-	[CCode (cname = "rl_int_func_t", has_target = false)]
+	[CCode (cname = "rl_intfunc_t", has_target = false)]
 	public delegate int      IntFunc (int a);
-	[CCode (cname = "rl_icp_func_t", has_target = false)]
+	[CCode (cname = "rl_icpfunc_t", has_target = false)]
 	public delegate int      IcpFunc (string s);
-	[CCode (cname = "rl_icpp_func_t", has_target = false)]
+	[CCode (cname = "rl_icppfunc_t", has_target = false)]
 	public delegate int      IcppFunc (string[] s);
-	[CCode (cname = "rl_void_func_t", has_target = false)]
+	[CCode (cname = "rl_voidfunc_t", has_target = false)]
 	public delegate void     VoidFunc ();
-	[CCode (cname = "rl_vint_func_t", has_target = false)]
+	[CCode (cname = "rl_vintfunc_t", has_target = false)]
 	public delegate void     VintFunc (int a);
-	[CCode (cname = "rl_vcp_func_t", has_target = false)]
+	[CCode (cname = "rl_vcpfunc_t", has_target = false)]
 	public delegate void     VcpFunc (string s);
-	[CCode (cname = "rl_vcpp_func_t", has_target = false)]
+	[CCode (cname = "rl_vcppfunc_t", has_target = false)]
 	public delegate void     VcppFunc (string[] s);
-	[CCode (cname = "rl_cpv_func_t", has_target = false)]
+	[CCode (cname = "rl_cpvfunc_t", has_target = false)]
 	public delegate unowned string?   CpvFunc ();
-	[CCode (cname = "rl_cpi_func_t", has_target = false)]
+	[CCode (cname = "rl_cpifunc_t", has_target = false)]
 	public delegate unowned string?   CpiFunc (int s);
 
 	[CCode (cname = "KEYMAP_ENTRY")]



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