wmcalc: Use version number from autoconf.
[dockapps.git] / wmcalc / wmcalc_c.h
blob836df56f2f115851e63e9810df86d6e06b58414b
1 /* File: wmcalc_c.h
2 * Author: Edward H. Flora <ehflora@access1.net>
3 * Version: 0.2
5 * Description:
6 * This file contains the constants settings for the wmcalc program,
7 * except for the error constants, which are contained in the file wmcalc_err.h
9 * Change History:
10 * Date Modification
11 * 10/25/00 Original file creation, extracted from wmcalc.h
13 #ifndef WMCALC_C_H
14 #define WMCALC_C_H
16 #define CONFIGFILEMAX 128
17 #define CALC_CMD_SIZE 128
18 #define CONFFILENAME "/.wmcalc"
19 #define CONFTEMPFILE "/tmp/wmcalc.tmp"
20 #define CONFIGGLOBAL CONF"/wmcalc.conf"
22 #define LMASK 100
23 #define MMASK 200
24 #define RMASK 300
26 #define CALCDONE 20 /* Anything >= 10 should work */
27 #define DISPSIZE 10 /* Number of characters in display */
28 #define NUM_BUTTONS 21
29 #define NUM_MEM_CELLS 10
31 #define APP_WIDTH 64
32 #define APP_HEIGHT 64
34 #define NO_BUTTON -1
36 #endif