-
Notifications
You must be signed in to change notification settings - Fork 0
/
PFA.H
56 lines (48 loc) · 1.19 KB
/
PFA.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
Information
ßßßßßßßßßßß
Prog name : Personal Financial Assistant
Author : Stephen Kittelson
Start date : 1999-12-05 (That is when I started Budget (PFA 1.0))
2000-05-31 (Estimated start of PFA 2.0)
Last update : 2000-12-06 341
OS : DOS
Desc : Program to make the management of personal finances
much more efficient than pen & paper
*/
#ifndef _PFA_H_
#define _PFA_H_
#define EMAIL_ADDR "[email protected]"
#define EXIT_NORMAL 0
#define EXIT_NOTITHOWED 1
#define EXIT_TITHOWED 2
#define EXIT_INVCMDLN 3
#define EXIT_OUTOFMEM 4
#define EXIT_DEVELOPMENTERROR 5
#define EXIT_INVFILE 6
/*
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <bios.h>
#include <go32.h>
#include <fcntl.h>
#include <errno.h>
#include <unistd.h>
#include <time.h>
#include <io.h>
#include <sys/movedata.h>
#include <sys/segments.h>
#include <sys/stat.h>
#include <myalleg.h>
*/
#define FILENAME_SIZE 60
#define MAX_AMOUNT 10000000.00
#define MIN_AMOUNT -10000000.00
#define MAX_BDDIGITS 8
#define MAX_ADDIGITS 2
/*
#include LIBDIR"std.h"
#include LIBDIR"djgpp.h"
*/
#endif //_PFA_H_