summaryrefslogtreecommitdiff
path: root/vapi/curses.vapi
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2020-10-21 21:59:41 +0200
committerRico Tzschichholz <ricotz@ubuntu.com>2020-10-21 21:59:41 +0200
commit980cb7da20fc4cc3f733a8af1f0dc3f4a247d832 (patch)
tree75b8df11c69368f8751155941d18c71a3be4158b /vapi/curses.vapi
parent0695f9e52a7ab5eece7f18dd1047d5dc050bc953 (diff)
downloadvala-980cb7da20fc4cc3f733a8af1f0dc3f4a247d832.tar.gz
curses: Remove initial “w” from some Window method names for consistency
Diffstat (limited to 'vapi/curses.vapi')
-rw-r--r--vapi/curses.vapi9
1 files changed, 6 insertions, 3 deletions
diff --git a/vapi/curses.vapi b/vapi/curses.vapi
index 6dcc78e43..8e20a1b4d 100644
--- a/vapi/curses.vapi
+++ b/vapi/curses.vapi
@@ -150,9 +150,12 @@ namespace Curses {
public int untouchwin();
[CCode (cname = "waddch")]
public int addch(ulong ch);
- public int waddchnstr([CCode (array_length = false)] ulong[] chstr, int n);
- public int waddchstr([CCode (array_length = false)] ulong[] chstr);
- public int waddnstr(string str, int n);
+ [CCode (cname = "waddchnstr")]
+ public int addchnstr([CCode (array_length = false)] ulong[] chstr, int n);
+ [CCode (cname = "waddchstr")]
+ public int addchstr([CCode (array_length = false)] ulong[] chstr);
+ [CCode (name = "waddnstr")]
+ public int addnstr(string str, int n);
[CCode (cname = "waddstr")]
public int addstr(string str);
[CCode (cname = "wattron")]