blob: f944f6796ba5a21703ca92f0fee84b61d36bf9cc (
plain)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
//-*- mode: c++; indent-tabs-mode-nil; coding: utf-8; show-trailing-whitespace: t -*-
// file dekspy.hpp
#ifndef _DEKSPY_HPP
#define _DEKSPY_HPP
#include <iostream>
#include <iomanip>
#include <sstream>
#include <string>
#include <list>
#include <vector>
extern char *cFilByt;
extern double *pPltBuf;
extern double pForByt[ 600 ];
extern bool bLogVar;
namespace spycom {
extern void *pMFiles[ 16 ];
//
extern char cChar1;
extern char pByteBuf[ 20 ];
extern char pDigit[ 10 ];
//
extern long int nITExp;
extern long int nNumSym;
extern long int nJJRoll;
extern long int nMaxArg;
extern long int nKilPer;
extern long int nKFile5;
extern long int nKLevel;
extern long int nKVerfy;
extern long int nJWord;
extern long int nIBegCL;
extern long int nIEndCL;
extern long int nLIdnt1;
extern long int nLIdnt2;
extern long int nNBreak;
extern long int nLinNow;
extern long int nLinSPN;
extern long int nNumKey;
extern long int nIndBuf;
extern long int nIndBeg;
extern long int nMFlush;
extern long int nNewVec;
extern long int nMaxFLG;
extern long int nKSPSav;
extern long int nMemKAR;
extern long int nNoBack;
extern long int nLSerLC;
extern long int nKSerLC;
extern long int nKBRSer;
extern long int nLockBR;
extern long int nKErase;
extern long int nKomAdd;
extern long int nIprSpy;
extern long int nMonitR;
extern long int nMonitS;
extern long int nKBreak;
extern long int nLimBuf;
extern long int nKOLOut;
extern long int nNexMod;
extern long int nNextSN;
extern long int nIncHlp;
extern long int nKSymbl;
extern long int nKopyIt;
extern long int nKSlowR;
extern long int nKWTSpy;
extern long int nNumRMP;
extern long int nLUntSP;
extern long int nLogVar;
extern long int nNumex;
//
extern long int pIASCII[ 1000 ];
extern long int pIndXRP[ 20 ];
extern long int pIVec[ 1000 ];
extern long int pLabels[ 15];
extern long int pKYRamp[ 20 ];
extern long int pLocate[ 1000 ];
extern long int pKSMSpy[ 3 ];
extern long int pNLine[ 1000 ];
extern long int pLimArr[ 4 ];
extern long int pIMin[ 55 ];
extern long int pIMax[ 55 ];
extern long int pLocOut[ 55 ];
extern long int pIntOut[ 55 ];
extern long int pLoopRP[ 20 ];
extern long int pN10RMP[ 20 ];
extern long int pKonTAC[ 14 ];
extern long int pKonAdd[ 14 ];
extern long int pKBegTX[ 85 ];
extern long int pKar1[ 1 ];
extern long int pKar2[ 2 ];
//
extern double *pFKar1;
extern double *pFKar2;
extern double *pPltBuf;
// equivalence (kar1, fkar1), (kar2, fkar2)
extern double nTMinRP;
extern double nTMaxRP;
extern double nTBreak;
extern double nEPSKOn[ 14 ];
extern double pFBegRP[ 20 ];
extern double pFEndRP[ 20 ];
extern double pForByt[ 600 ];
extern double pRampCN[ 20 ];
extern double pRampSL[ 20 ];
extern double pTBegRP[ 20 ];
extern double pTEndRP[ 20 ];
//
extern long int nLimCRD;
extern long int nNumCRD;
//
extern std::vector<long int> sMemRMP;
}
namespace spyf77 {
extern char cChar1;
extern char pDigit[ 10 ];
extern char pCol[ 25 ];
extern char pFilExt[ 10 ];
//
extern std::string sANSW80;
extern std::string sBlan80;
extern std::string sBroBus;
extern std::string sBuff77;
extern std::string sBytBuf;
extern std::string sBytFnd;
extern std::string sOutLin;
extern std::string pSymb[ 1000 ];
extern std::string sSymbRP[ 20 ];
extern std::string sABufSV;
extern std::string sJunker;
extern std::string pFile6B[ 20 ];
extern std::string sProm80;
extern std::string pTexPar[ 10 ];
extern std::string sSpyCD2;
//
extern std::stringstream sANSI8;
extern std::stringstream sANSI16;
extern std::stringstream sANSI32;
extern std::stringstream sMFile6;
extern std::stringstream sOutSav;
extern std::stringstream sHeding;
extern std::string pTexSpy[ 1250 ];
//
extern std::vector<std::string> sSpyKWD;
//
extern std::vector<std::string> sFile6;
}
#endif // _DEKSPY_HPP
// end of file dekspy.hpp
|