4 * Copyright 1998 Marcel Baur <mbaur@g26.ethz.ch>
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #include "clock_res.h"
23 #define MAX_STRING_LEN 255
24 #define MAX_PATHNAME_LEN 1024
25 #define MAX_LANGUAGE_NUMBER (CL_LAST_LANGUAGE - CL_FIRST_LANGUAGE)
27 #define HELPFILE "clock.hlp"
28 #define DEFAULTICON OIC_WINLOGO
30 /* hide the following from winerc */
40 HMENU hPropertiesMenu;
47 UINT wStringTableOffset;
59 extern CLOCK_GLOBALS Globals;
61 /* function prototypes */
62 VOID MAIN_FileChooseFont(VOID);
67 extern CHAR STRING_MENU_Xx[];
69 #define STRINGID(id) (0x##id + Globals.wStringTableOffset)
71 #else /* RC_INVOKED */
73 #define STRINGID(id) id
77 /* string table index */
78 #define IDS_LANGUAGE_ID STRINGID(00)
79 #define IDS_LANGUAGE_MENU_ITEM STRINGID(01)
80 #define IDS_CLOCK STRINGID(02)
81 #define IDS_MENU_ON_TOP STRINGID(03)
88 #define CL_DIGITAL 101
90 #define CL_WITHOUT_TITLE 103
91 #define CL_SECONDS 104
94 #define CL_LANGUAGE 200
97 #define CL_INFO_LICENSE 302
98 #define CL_INFO_NO_WARRANTY 303
99 #define CL_INFO_ABOUT_WINE 304
101 #define CL_FIRST_LANGUAGE 200
102 #define CL_LAST_LANGUAGE 220