1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-09-18 02:14:47 +00:00
qb64/source/utilities/vwatch/vwatch.bi
2021-07-18 22:02:41 -03:00

10 lines
307 B
Text

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