wmcalc: Bump to version 0.6.
[dockapps.git] / wmcalc / wmcalc_c.h
blob71fb001f15303c29116e047409ef063f3507b6ae
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"
21 #define VER 0
22 #define REL 6
24 #define LMASK 100
25 #define MMASK 200
26 #define RMASK 300
28 #define CALCDONE 20 /* Anything >= 10 should work */
29 #define DISPSIZE 10 /* Number of characters in display */
30 #define NUM_BUTTONS 21
31 #define NUM_MEM_CELLS 10
33 #define APP_WIDTH 64
34 #define APP_HEIGHT 64
36 #define NO_BUTTON -1
38 #endif