1 | /*
|
---|
2 | =============================================================================
|
---|
3 | ptselbx.c -- external declarations
|
---|
4 | =============================================================================
|
---|
5 | */
|
---|
6 |
|
---|
7 | #pragma once
|
---|
8 |
|
---|
9 | #include "fields.h"
|
---|
10 | #include "patch.h"
|
---|
11 | #include "stdint.h"
|
---|
12 |
|
---|
13 | /*
|
---|
14 | =============================================================================
|
---|
15 | external variables
|
---|
16 | =============================================================================
|
---|
17 | */
|
---|
18 |
|
---|
19 | extern int8_t datafmt[];
|
---|
20 | extern int16_t datasrc[];
|
---|
21 | extern int16_t defcols[];
|
---|
22 | extern int16_t desdat1[];
|
---|
23 | extern int16_t desdat2[];
|
---|
24 | extern int8_t desdatf[];
|
---|
25 | extern int8_t destfmt[];
|
---|
26 | extern int16_t destype[];
|
---|
27 | extern int16_t dfsttab[];
|
---|
28 | extern int16_t dfsttp[];
|
---|
29 | extern int16_t dstcols[];
|
---|
30 | extern int16_t fpudtab[];
|
---|
31 | extern int16_t fpuetab[];
|
---|
32 | extern int8_t hilitab[][8];
|
---|
33 | extern int16_t omdtab[];
|
---|
34 | extern int16_t omftab[];
|
---|
35 | extern int16_t omtabl[];
|
---|
36 | extern int16_t ptbflag;
|
---|
37 | extern struct selbox ptboxes[];
|
---|
38 | extern int8_t ptdebuf[50];
|
---|
39 | extern struct patch ptebuf;
|
---|
40 | extern int16_t ptecpos;
|
---|
41 | extern uint16_t ptedat1;
|
---|
42 | extern uint16_t ptedat2;
|
---|
43 | extern int16_t ptedata;
|
---|
44 | extern uint16_t ptedef;
|
---|
45 | extern int16_t ptedest;
|
---|
46 | extern int16_t ptedfok;
|
---|
47 | extern int16_t ptedfst;
|
---|
48 | extern int16_t ptedftp;
|
---|
49 | extern int16_t ptedsok;
|
---|
50 | extern int16_t ptedtok;
|
---|
51 | extern int16_t ptegood;
|
---|
52 | extern int16_t ptemenu;
|
---|
53 | extern int16_t ptepred;
|
---|
54 | extern int16_t pteset;
|
---|
55 | extern uint16_t ptespec;
|
---|
56 | extern uint16_t ptestm;
|
---|
57 | extern int16_t ptestok;
|
---|
58 | extern uint16_t ptesuba;
|
---|
59 | extern int16_t ptesucc;
|
---|
60 | extern int8_t *rawdata[];
|
---|
61 | extern int8_t *rawdest[];
|
---|
62 | extern int8_t *rawdfst[];
|
---|
63 | extern int8_t *rawfpud[];
|
---|
64 | extern int8_t *rawmdat[];
|
---|
65 | extern int8_t *rawmode[];
|
---|
66 | extern int16_t stmcols[];
|
---|
67 |
|
---|
68 | /*
|
---|
69 | =============================================================================
|
---|
70 | external functions
|
---|
71 | =============================================================================
|
---|
72 | */
|
---|
73 |
|
---|
74 | extern void aftercm(void);
|
---|
75 | extern void badpdat(void);
|
---|
76 | extern void edefstm(int16_t du, int16_t n);
|
---|
77 | extern void endpsm(int16_t row, int16_t col);
|
---|
78 | extern void epatch(void);
|
---|
79 | extern void hilitpm(int8_t n);
|
---|
80 | extern void movectc(int16_t r, int16_t c);
|
---|
81 | extern void ptdest(int16_t du);
|
---|
82 | extern int16_t ptfnbox(int16_t n);
|
---|
83 | extern void setsubm(int16_t r, int16_t c);
|
---|