1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-08-04 20:00:25 +00:00
QB64-PE/source/utilities/const_eval.bi

21 lines
359 B
Text
Raw Normal View History

TYPE ConstFunction
nam AS STRING
ArgCount AS INTEGER ' If positive, this is the number of argument this function accepts
END TYPE
REDIM SHARED ConstFuncs(1000) AS ConstFunction
TYPE ParseNum
f AS _FLOAT
i AS _INTEGER64
ui AS _UNSIGNED _INTEGER64
s AS STRING
typ AS LONG
END TYPE
CONST CONST_EVAL_DEBUG = 0
Set_ConstFunctions