1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-28 02:35:53 +00:00
QB64-PE/source/utilities/vwatch/vwatch.bi

12 lines
347 B
Plaintext
Raw Normal View History

$CHECKING:OFF
DIM SHARED AS LONG vwatch_linenumber, vwatch_sublevel
DIM SHARED AS STRING vwatch_subname, vwatch_callstack
REDIM SHARED vwatch_breakpoints(0) AS _BYTE
'next lines are just to avoid "unused variable" warnings:
vwatch_linenumber = 0
vwatch_sublevel = 0
vwatch_breakpoints(0) = 0
vwatch_subname = ""
vwatch_callstack = ""
$CHECKING:ON