PDA

View Full Version : Sharing thinBasic variables



Charles Pegge
17-03-2009, 23:05
The at keyword is used to map a variable or set of variables to a specific location. The # prefix is used to indicate that it will map to a thinBasic variable.

Note that thinBasic uses direct BSTRings for its dynamic strings, whereas Oxygen strings use indirect BSTRings. So any strings shared between the two requires Oxygen to use the direct BSTR form.






'SHARING THINBASIC VARIABLES

uses "oxygen"
dim src as string

dim tll(10) as long, tdd(10) as double, tss(10) as string

src = "

basic
dim
vll(10) at #tll as long,
vdd(10) at #tdd as double,
vss(10) at #tss as bstr ' NB: THINBASIC STRING

vss(7) =`The Answer is: `
vdd(7) = 42

"
o2_asmo src

'msgbox 0, o2_view "o2h "+src

if len(o2_error) then
msgbox 0, o2_error : stop
end if

o2_exec

msgbox 0,tss(7) & tdd(7)