diff -r 0e4e0db79e2a -r b9ca1bfca24f hedgewars/uIO.pas --- 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.