1 /*
2  * Auto Payment Calculator V1.0.1beta
3  * Copyright (C) 1997  Eric A. Griff
4  *
5  * An Auto Payment Calculator.
6  *
7  * *Portions of this code use xforms-0.86 which is copyrighted as
8  *
9  *    Copyright (C) 1996-1997 by T.C. Zhao and Mark Overmars. ALL RIGHTS
10  *      RESERVED
11  *
12  */
13 
14 #ifndef FD_pymain_h_
15 #define FD_pymain_h_
16 /* Header file generated with fdesign. */
17 
18 /**** Callback routines ****/
19 
20 extern void About(FL_OBJECT *, long);
21 extern void Calculate_Call(FL_OBJECT *, long);
22 extern void SetAmount(FL_OBJECT *, long);
23 extern void SetTerm(FL_OBJECT *, long);
24 extern void SetRate(FL_OBJECT *, long);
25 
26 
27 
28 /**** Forms and Objects ****/
29 
30 typedef struct {
31 	FL_FORM *pymain;
32 	void *vdata;
33 	long ldata;
34 	FL_OBJECT *amount;
35 	FL_OBJECT *term;
36 	FL_OBJECT *ResultW;
37 	FL_OBJECT *rate;
38 	FL_OBJECT *ResultM;
39 } FD_pymain;
40 
41 extern FD_pymain * create_form_pymain(void);
42 typedef struct {
43 	FL_FORM *About_Box;
44 	void *vdata;
45 	long ldata;
46 	FL_OBJECT *Version_Text;
47 	FL_OBJECT *Eric;
48 } FD_About_Box;
49 
50 extern FD_About_Box * create_form_About_Box(void);
51 
52 #endif /* FD_pymain_h_ */
53