File: keybinder.vapi

package info (click to toggle)
keybinder 0.3.1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,880 kB
  • sloc: sh: 11,397; ansic: 602; makefile: 151; 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 ();
}