Difference between revisions of "ISInterface:ResumeScripts"

From Lavish Software Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 +
== Syntax ==
 +
*unsigned long ResumeScripts()
 
== Purpose ==
 
== Purpose ==
 
Resumes all running scripts after being paused by PauseScripts
 
Resumes all running scripts after being paused by PauseScripts
Line 10: Line 12:
  
 
== Examples ==
 
== Examples ==
 
+
int count=0;
 +
do
 +
{
 +
count=pISInterface->ResumeScripts();
 +
}
 +
while (count!=0)
 
== See Also ==
 
== See Also ==
* [[ISXDK:ISInterface|ISInterface]]::[[ISInterface:PauseScripts|PauseScripts]]
+
* [[ISInterface:PauseScripts|PauseScripts]]
 
* [[ISXDK:ISInterface|ISInterface]]
 
* [[ISXDK:ISInterface|ISInterface]]
  
 
[[Category:ISXDK]]
 
[[Category:ISXDK]]
 
[[Category:ISInterface]]
 
[[Category:ISInterface]]

Latest revision as of 21:18, 2 September 2005

Syntax

  • unsigned long ResumeScripts()

Purpose

Resumes all running scripts after being paused by PauseScripts

Usage

Parameters

none

Return Value

  • unsigned long
The number of additional times ResumeScripts must be called for script execution to be resumed

Examples

int count=0;
do
{
count=pISInterface->ResumeScripts();
}
while (count!=0)

See Also