Release 941017
[wine/gsoc-2012-control.git] / include / texts.h
blob343b399e8acae2fe2c6b849a6603e7e8d6e9067d
2 /*
3 * texts.h - String constants are read from Xresources/app-defaults
4 * (c) 1994 Jochen Hein ( Hein@Student.TU-Clausthal.de )
5 */
7 /*
8 * Type-description for buttons
9 */
11 typedef struct tButtonDesc {
12 char *Label; /* Label of the Button */
13 char Hotkey; /* Hotkey to press this Button */
14 } ButtonDesc;
16 typedef struct tButtonTexts {
17 ButtonDesc Yes;
18 ButtonDesc No;
19 ButtonDesc Ok;
20 ButtonDesc Cancel;
21 ButtonDesc Abort;
22 ButtonDesc Retry;
23 ButtonDesc Ignore;
24 } ButtonTexts;