CALLS
From QB64 Wiki
CALLS is a statement that transfers control to a procedure written in a different programming language.
- CALLS name [(argumentlist)]
- Currently NOT supported in QB64
- The arguments are passed by reference as far addresses, unlike CALL which passes arguments by value as default. You cannot use BYVAL or SEG in a CALLS argumentlist.
CALLS is the same as using CALL with a SEG before each argument.
See also: