Under the topic CALL DWORD
USING This option is used to define a model procedure declaration which matches all
of the calling conventions desired to be used in this case.
For example the following 2 calls to the function MySubCall
are equivalent:
DECLARE SUB MySubCall(Param1%, Param2%)
DIM PtrMySubCall as DWORD
PtrMySubCall= CODEPTR(MySubCall)
Call DWORD PtrMySubCall USING MySubCall(x1%, x2%)
Thre is only one call.
------------------
USING This option is used to define a model procedure declaration which matches all
of the calling conventions desired to be used in this case.
For example the following 2 calls to the function MySubCall
are equivalent:
DECLARE SUB MySubCall(Param1%, Param2%)
DIM PtrMySubCall as DWORD
PtrMySubCall= CODEPTR(MySubCall)
Call DWORD PtrMySubCall USING MySubCall(x1%, x2%)
Thre is only one call.
------------------
Comment