hedgewars/uIO.pas
changeset 2716 b9ca1bfca24f
parent 2699 249adefa9c1c
child 2905 f3c79f7193a9
--- a/hedgewars/uIO.pas	Tue Jan 26 04:13:37 2010 +0000
+++ b/hedgewars/uIO.pas	Tue Jan 26 21:55:51 2010 +0000
@@ -22,10 +22,12 @@
 interface
 uses SDLh;
 
-const ipcPort: Word = 0;
-var hiTicks: Word;
+var ipcPort: Word;
+    hiTicks: Word;
 
 procedure init_uIO;
+procedure free_uIO;
+
 procedure SendIPC(s: shortstring);
 procedure SendIPCXY(cmd: char; X, Y: SmallInt);
 procedure SendIPCRaw(p: pointer; len: Longword);
@@ -352,6 +354,12 @@
 
 	hiTicks:= 0;
 	SendEmptyPacketTicks:= 0;
+	ipcPort:= 0;
+end;
+
+procedure free_uIO;
+begin
+
 end;
 
 end.