hiFlushInfo
hiFlushInfo( ) => t
Description
Processes exposure events to allow the output of the previous program to be displayed in the CIW during SKILL code processing.
Arguments
Value Returned
|
The output of the previous program is visible in the CIW when a SKILL code is run. |
Examples
The following example ensures that any output from the printf statement is immediately visible in the CIW.
(defun CalculateDifficultProblem ( )
(let (IsItFinished (WhichStep 0)
)
while( IsItFinished == nil
++WhichStep
printf("Processing step %d\n" WhichStep)
hiFlushInfo()
IsItFinished = ProcessStep(WhichStep)
)
)
)
Related Topics
General Environmental Functions
Return to top