-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhotkey.h
33 lines (33 loc) · 2.1 KB
/
hotkey.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*----------------------------------------------------------------------------*/
/* hotkey.h */
/*----------------------------------------------------------------------------*/
/* copyright : (C) 2002 by Dao Hai Lam */
/* VISC Software & Security Consultant Company */
/* Hall 3, Quang Trung Software City */
/* Tan Chanh Hiep Ward, District 12, */
/* Ho Chi Minh city, VIETNAM */
/* website : http://www.visc-network.com */
/* email : lam@visc-network.com */
/* last modify : Sun, 4 Aug 2002 15:34:55 +0700 */
/*----------------------------------------------------------------------------*/
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License, or */
/* (at your option) any later version. */
/* */
/*----------------------------------------------------------------------------*/
#ifndef __HOTKEY_H
#define __HOTKEY_H
/*----------------------------------------------------------------------------*/
#include "vkeydefs.h"
/*----------------------------------------------------------------------------*/
void VKCreateHotkeyWindow();
void VKDestroyHotkeyWindow();
void VKShowHotkeyWindow();
void VKHideHotkeyWindow();
/*----------------------------------------------------------------------------*/
void VKParseHotkey(char *s, int *state, KeySym *sym);
void VKSetHotkeyProperty(int state, KeySym sym);
/*----------------------------------------------------------------------------*/
#endif