Release 950319
[wine] / include / texts.h
1
2 /*
3  * texts.h - String constants are read from Xresources/app-defaults
4  * (c) 1994 Jochen Hein ( Hein@Student.TU-Clausthal.de )
5  */
6
7 /*
8  * Type-description for buttons
9  */
10
11 typedef struct tButtonDesc {
12   char *Label;              /* Label of the Button */
13   char Hotkey;               /* Hotkey to press this Button */
14 } ButtonDesc;
15
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;
25
26