Exemplo n.º 1
0
 public static void sendMessageToReceiver(string message, ArrayList arguments, string receiver)
 {
     Platform.sendMessageToReceiver(message, arguments, receiver);
 }
Exemplo n.º 2
0
 public static void sendListToReceiver(ArrayList list, string receiver)
 {
     Platform.sendListToReceiver(list, receiver);
 }
Exemplo n.º 3
0
 public static void subscribe(string symbol, string objectName, string methodName)
 {
     Platform.subscribe(symbol, objectName, methodName);
 }
Exemplo n.º 4
0
 public static void sendSymbolToReceiver(string symbol, string receiver)
 {
     Platform.sendSymbolToReceiver(symbol, receiver);
 }
Exemplo n.º 5
0
 public static void sendBangToReceiver(string receiver)
 {
     Platform.sendBangToReceiver(receiver);
 }
Exemplo n.º 6
0
 public static void sendFloat(float aValue, string receiver)
 {
     Platform.sendFloat(aValue, receiver);
 }
Exemplo n.º 7
0
 public static void stopAudio()
 {
     Platform.stopAudio();
 }
Exemplo n.º 8
0
 public static void pauseAudio()
 {
     Platform.pauseAudio();
 }
Exemplo n.º 9
0
 public static void initPd()
 {
     Platform.initPd();
 }
Exemplo n.º 10
0
 public static void closeFile(int handle)
 {
     Platform.closeFile(handle);
 }
Exemplo n.º 11
0
 /* Public interface for use inside C# / JS code */
 public static int openFile(string filename)
 {
     return(Platform.openFile(filename));
 }