fbdbg  3.0
FreeBASIC Debugger
multi_action.bas
Go to the documentation of this file.
1 
6 
7 
8 SUB act_runto CDECL ALIAS "act_runto" ( _
9  BYVAL action AS GtkAction PTR, _
10  BYVAL user_data AS gpointer) EXPORT
11 
12 ?" --> callback act_runto"
13 
14 END SUB
15 
16 
17 SUB act_step CDECL ALIAS "act_step" ( _
18  BYVAL action AS GtkAction PTR, _
19  BYVAL user_data AS gpointer) EXPORT
20 
21 ' place your source code here / eigenen Quelltext hier einfuegen
22 ?" --> callback act_step, ToDo: insert code"
23 
24 access_viol( _
25  222 _
26  , "D:\a\b\c\d\debuggee.bas" _
27  , "TEST" _
28  , 279 _
29  , "Print ""Line with crash"": Poke testa, 10 'for access violation" _ _
30  )
31 
32 END SUB
33 
34 
35 SUB act_step_over CDECL ALIAS "act_step_over" ( _
36  BYVAL action AS GtkAction PTR, _
37  BYVAL user_data AS gpointer) EXPORT
38 
39 ?" --> callback act_step_over"
40 
41 END SUB
42 
43 
44 SUB act_step_out CDECL ALIAS "act_step_out" ( _
45  BYVAL action AS GtkAction PTR, _
46  BYVAL user_data AS gpointer) EXPORT
47 
48 ?" --> callback act_step_out"
49 
50 END SUB
51 
52 
53 SUB act_step_start CDECL ALIAS "act_step_start" ( _
54  BYVAL action AS GtkAction PTR, _
55  BYVAL user_data AS gpointer) EXPORT
56 
57 ?" --> callback act_step_start"
58 
59 END SUB
60 
61 
62 SUB act_step_end CDECL ALIAS "act_step_end" ( _
63  BYVAL action AS GtkAction PTR, _
64  BYVAL user_data AS gpointer) EXPORT
65 
66 ?" --> callback act_step_end"
67 
68 END SUB
69 
70 
71 SUB act_run CDECL ALIAS "act_run" ( _
72  BYVAL button AS GtkButton PTR, _
73  BYVAL user_data AS gpointer) EXPORT
74 
75 ?" --> callback act_run"
76 
77 END SUB
78 
79 
80 SUB act_fastrun CDECL ALIAS "act_fastrun" ( _
81  BYVAL action AS GtkAction PTR, _
82  BYVAL user_data AS gpointer) EXPORT
83 
84 ?" --> callback act_fastrun"
85 
86 END SUB
87 
88 
89 SUB act_stop CDECL ALIAS "act_stop" ( _
90  BYVAL action AS GtkAction PTR, _
91  BYVAL user_data AS gpointer) EXPORT
92 
93 ?" --> callback act_stop"
94 
95 END SUB
96 
97 
98 SUB act_kill CDECL ALIAS "act_kill" ( _
99  BYVAL action AS GtkAction PTR, _
100  BYVAL user_data AS gpointer) EXPORT
101 
102 ?" --> callback act_kill"
103 SRC->removeAll()
104 
105 END SUB
106 
107 
108 SUB act_auto CDECL ALIAS "act_auto" ( _
109  BYVAL action AS GtkAction PTR, _
110  BYVAL user_data AS gpointer) EXPORT
111 
112 ?" --> callback act_auto"
113 
114 END SUB
115 
116 
117 SUB act_automulti CDECL ALIAS "act_automulti" ( _
118  BYVAL action AS GtkAction PTR, _
119  BYVAL user_data AS gpointer) EXPORT
120 
121 ' place your source code here / eigenen Quelltext hier einfuegen
122 ?" --> callback act_automulti, ToDo: insert code"
123 
124 END SUB
125 
126 
127 SUB act_exemod CDECL ALIAS "act_exemod" ( _
128  BYVAL action AS GtkAction PTR, _
129  BYVAL user_data AS gpointer) EXPORT
130 
131 ?" --> callback act_exemod"
132 
133 END SUB
134 
135 
136 SUB act_vardump CDECL ALIAS "act_vardump" ( _
137  BYVAL action AS GtkAction PTR, _
138  BYVAL user_data AS gpointer) EXPORT
139 
140 ' place your source code here / eigenen Quelltext hier einfuegen
141 ?" --> callback act_vardump, ToDo: insert code"
142 
143 END SUB
144 
145 
146 SUB act_varedit CDECL ALIAS "act_varedit" ( _
147  BYVAL action AS GtkAction PTR, _
148  BYVAL user_data AS gpointer) EXPORT
149 
150 ' place your source code here / eigenen Quelltext hier einfuegen
151 ?" --> callback act_varedit, ToDo: insert code"
152 
153 END SUB
154 
155 
156 '??? same as action 116 ???
157 SUB act_varexpand CDECL ALIAS "act_varexpand" ( _
158  BYVAL action AS GtkAction PTR, _
159  BYVAL user_data AS gpointer) EXPORT
160 
161 ' place your source code here / eigenen Quelltext hier einfuegen
162 ?" --> callback act_varexpand, ToDo: insert code"
163 
164 END SUB
165 
166 
167 SUB act_stringshow CDECL ALIAS "act_stringshow" ( _
168  BYVAL action AS GtkAction PTR, _
169  BYVAL user_data AS gpointer) EXPORT
170 
171 ' place your source code here / eigenen Quelltext hier einfuegen
172 ?" --> callback act_stringshow, ToDo: insert code"
173 
174 END SUB
175 
176 
177 '' act_Shortcut in shortcuts.bas
178 
179 
180 SUB act_procbacktrack CDECL ALIAS "act_procbacktrack" ( _
181  BYVAL action AS GtkAction PTR, _
182  BYVAL user_data AS gpointer) EXPORT
183 
184 ' place your source code here / eigenen Quelltext hier einfuegen
185 ?" --> callback act_procbacktrack, ToDo: insert code"
186 
187 END SUB
188 
189 
190 SUB act_procchain CDECL ALIAS "act_procchain" ( _
191  BYVAL action AS GtkAction PTR, _
192  BYVAL user_data AS gpointer) EXPORT
193 
194 ' place your source code here / eigenen Quelltext hier einfuegen
195 ?" --> callback act_procchain, ToDo: insert code"
196 
197 END SUB
198 
199 
200 SUB act_procasm CDECL ALIAS "act_procasm" ( _
201  BYVAL action AS GtkAction PTR, _
202  BYVAL user_data AS gpointer) EXPORT
203 
204 ' place your source code here / eigenen Quelltext hier einfuegen
205 ?" --> callback act_procasm, ToDo: insert code"
206 
207 END SUB
208