Difference between revisions of "ISInterface:ResumeScripts"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
 +
== Syntax ==
 +
*unsigned long ResumeScripts()
 
== Purpose ==
 
== Purpose ==
 +
Resumes all running scripts after being paused by PauseScripts
  
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 +
''none''
 
=== Return Value ===
 
=== Return Value ===
 +
* unsigned long
 +
: The number of additional times ResumeScripts must be called for script execution to be resumed
  
 
== Examples ==
 
== Examples ==
 
+
int count=0;
 +
do
 +
{
 +
count=pISInterface->ResumeScripts();
 +
}
 +
while (count!=0)
 
== See Also ==
 
== See Also ==
 +
* [[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