File: keybinder.vapi

package info (click to toggle)
keybinder 0.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,488 kB
  • ctags: 158
  • sloc: sh: 10,224; ansic: 520; makefile: 105; python: 10
file content (12 lines) | stat: -rw-r--r-- 411 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12

[CCode (cprefix = "KEYBINDER", lower_case_cprefix = "keybinder_",
        cheader_filename="keybinder.h")]
namespace Keybinder {
	[CCode (has_target=false)]
	public delegate void Handler (string keystring, void *udata);

	public void init();
	public bool bind (string keystring, Handler hander, void *udata);
	public void unbind (string keystring, Handler handler);
	public uint32 get_current_event_time ();
}