1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-08 18:25:13 +00:00
qb64/source/utilities/vwatch.bi

9 lines
259 B
Plaintext
Raw Normal View History

$CHECKING:OFF
DIM SHARED AS LONG vwatch_linenumber, vwatch_sublevel
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
$CHECKING:ON