blob: 1766db9c08ad3d6aca4c844082157baa5fd485aa (
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
159
160
161
162
163
164
165
|
{
Fake GDBCon unit (including base from GDBInt)
**********************************************************************}
unit GDBCon;
interface
uses
GdbInt;
type
PGDBController=^TGDBController;
TGDBController=object(TGDBInterface)
progname : pchar;
progargs : pchar;
in_command,
init_count : longint;
constructor Init;
destructor Done;
procedure CommandBegin(const s:string);virtual;
procedure Command(const s:string);
procedure CommandEnd(const s:string);virtual;
procedure Reset;virtual;
procedure StartTrace;
procedure Run;virtual;
procedure TraceStep;virtual;
procedure TraceNext;virtual;
procedure TraceStepI;virtual;
procedure TraceNextI;virtual;
procedure Continue;virtual;
{ needed for dos because newlines are only #10 (PM) }
procedure WriteErrorBuf;
procedure WriteOutputBuf;
function GetOutput : Pchar;
function GetError : Pchar;
function LoadFile(const fn:string):boolean;
procedure SetDir(const s : string);
procedure SetArgs(const s : string);
procedure ClearSymbols;
end;
{ gdb does not allow \ in dir or filenames }
procedure UnixDir(var s : string);
implementation
procedure UnixDir(var s : string);
var i : longint;
begin
for i:=1 to length(s) do
if s[i]='\' then s[i]:='/';
end;
constructor TGDBController.Init;
begin
inherited Init;
end;
destructor TGDBController.Done;
begin
inherited Done;
end;
procedure TGDBController.Command(const s:string);
begin
end;
procedure TGDBController.CommandBegin(const s:string);
begin
end;
procedure TGDBController.CommandEnd(const s:string);
begin
end;
procedure TGDBController.Reset;
begin
end;
function TGDBController.LoadFile(const fn:string):boolean;
begin
LoadFile:=true;
end;
procedure TGDBController.SetArgs(const s : string);
begin
end;
procedure TGDBController.SetDir(const s : string);
begin
end;
procedure TGDBController.StartTrace;
begin
Run;
end;
procedure TGDBController.Run;
begin
end;
procedure TGDBController.TraceStep;
begin
end;
procedure TGDBController.TraceNext;
begin
end;
procedure TGDBController.TraceStepI;
begin
end;
procedure TGDBController.TraceNextI;
begin
end;
procedure TGDBController.Continue;
begin
end;
procedure TGDBController.ClearSymbols;
begin
end;
procedure TGDBController.WriteErrorBuf;
begin
end;
procedure TGDBController.WriteOutputBuf;
begin
end;
function TGDBController.GetOutput : Pchar;
begin
GetOutput:=nil;
end;
function TGDBController.GetError : Pchar;
begin
GetError:=nil;
end;
end.
|