KillInterpreters Function
Prototype
Public Declare Function KillInterpreters Lib "TclBridge.dll" (ByVal plFlags As Long) As Long
Input
The "plFlags" parameter, which is reserved for future use and must be zero.
Output
None.
Returns
A standard COM automation HRESULT (long integer).
COM Results
Not applicable.
Side Effects
None.
Description
All interpreters in the process that were created by the CreateInterpreter method are deleted. If an interpreter is not busy, it is deleted immediately. If an interpreter is busy, it is deleted when it is no longer busy.
Notes
The declaration for this function is in the "TclBridgeSupport" (TCLBSUPT.BAS) module.
Example
Private Sub Command1_Click()
    Call KillInterpreters(0&)
End Sub