IXcall Interface

The IXcall interface must be implemented by all classes which are COM implementations of XCALL routines. A Visual BASIC XCALL will be implemented as a Class containing the following declaration:

Implements ASHW32Lib.IXcall

It will also contain implementations of the two IXcall interface methods:

Private Sub IXcall_Execute( _
        ByVal XcallBlock As ASHW32Lib.IXcallBlock, _
        ByVal ArgCount As Integer)   
    …
End Sub

And:

Private Function IXcall_Ping(_
        ByVal XcallBlock As ASHW32Lib.IXcallBlock) As Boolean
  …
End Function

Subtopics