Difference between revisions of "ISInterface:Relay"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
===Syntax===
 
===Syntax===
 +
*void Relay(char *Session, char *Command)
  
 
== Purpose ==
 
== Purpose ==
 
+
To relay commands from one session to another
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 
+
*char *Session
=== Return Value ===
+
:'''[in]''' Name of the session to give the command to
 
+
*char *Command
 +
:'''[in]''' Command to send to the other session
 
== Examples ==
 
== Examples ==
 
+
*pISInterface->Relay("is2","echo hello is1");
  
 
== See Also ==
 
== See Also ==

Latest revision as of 00:36, 3 September 2005

Syntax

  • void Relay(char *Session, char *Command)

Purpose

To relay commands from one session to another

Usage

Parameters

  • char *Session
[in] Name of the session to give the command to
  • char *Command
[in] Command to send to the other session

Examples

  • pISInterface->Relay("is2","echo hello is1");

See Also