11
Scripting Languages / CBASIC
« Last post by John on February 14, 2021, 09:24:49 pm »I'm thinking about enhancing CBASIC for writing ScriptBasic extension modules. My plan is to use ScriptBasic's own API for strings, arrays and other BASIC functions missing in C. Doing this keeps variables within ScriptBasic's thread safe memory model.
Most of the extension modules I have done in the past are using CBASIC.
Example:
This allows me use this string to call any of the ScriptBasic API (syntax) without using the ScriptBasic execution interpreter.
Most of the extension modules I have done in the past are using CBASIC.
Example:
Code: [Select]
DIM wrkstr AS SB_STRING
This allows me use this string to call any of the ScriptBasic API (syntax) without using the ScriptBasic execution interpreter.