42 |
}; |
}; |
43 |
|
|
44 |
|
|
|
struct reg_hotkey_s { |
|
|
const char *reg_entry; |
|
|
char key[2]; /* the hotkey as a char ('A'). */ |
|
|
int enabled; /* 1=enable this hotkey. */ |
|
|
}; |
|
|
typedef struct reg_hotkey_s * reg_hotkey_t; |
|
|
|
|
45 |
struct winpt_reg_prefs_s { |
struct winpt_reg_prefs_s { |
46 |
int no_hotkeys; /* disable ALL hotkeys */ |
int no_hotkeys; /* disable ALL hotkeys */ |
47 |
int word_wrap; /* set word wrapping (0 means to disable it) */ |
int word_wrap; /* set word wrapping (0 means to disable it) */ |
69 |
} gpg; |
} gpg; |
70 |
}; |
}; |
71 |
|
|
72 |
|
/* Registry hotkey context. */ |
73 |
|
struct reg_hotkey_s { |
74 |
|
const char *reg_entry; |
75 |
|
char key[2]; /* the hotkey as a char ('A'). */ |
76 |
|
int enabled; /* 1=enable this hotkey. */ |
77 |
|
}; |
78 |
|
typedef struct reg_hotkey_s *reg_hotkey_t; |
79 |
|
|
80 |
extern reg_hotkey_s reg_hotkeys[]; |
extern reg_hotkey_s reg_hotkeys[]; |
81 |
extern winpt_reg_prefs_s reg_prefs; |
extern winpt_reg_prefs_s reg_prefs; |
82 |
|
|