File: keybinder-3.0.vapi

package info (click to toggle)
synapse 0.2.99.4-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,148 kB
  • sloc: sh: 4,721; makefile: 276; sed: 16
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 ();
}