summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:08:17 +0000
committerfcolin2007-02-01 10:08:17 +0000
commit94e5dccbb32ef17972a03858a78934bd04399c29 (patch)
treed65a820090487c8e02727b60145d96a7a47ab5b1
parent6b84bafbdc354d0eb7b1606ea74a435b28df4feb (diff)
downloadivy-csharp-94e5dccbb32ef17972a03858a78934bd04399c29.zip
ivy-csharp-94e5dccbb32ef17972a03858a78934bd04399c29.tar.gz
ivy-csharp-94e5dccbb32ef17972a03858a78934bd04399c29.tar.bz2
ivy-csharp-94e5dccbb32ef17972a03858a78934bd04399c29.tar.xz
Utilisateur : Fcolin Date : 8/02/06 Heure : 17:19 Archivé dans $/CSharp/Ivy/IvyProbeConsole Commentaire: (vss 10)
-rw-r--r--CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs b/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
index eac345d..e574057 100644
--- a/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
+++ b/CSharp/Ivy/IvyProbeConsole/IvyProbeConsole.cs
@@ -259,13 +259,13 @@ namespace IvyProbeConsole
println(client.ApplicationName + " disconnected ");
}
- private bool die(IvyClient client, int id, string message)
+ private Ivy.ApplicationExit die(IvyClient client, int id, string message)
{
println("received die msg from " + client.ApplicationName + " good bye cause: "+message);
/* I cannot stop the readLine(), because it is native code */
if (exitOnDie)
System.Environment.Exit(0);
- return true;
+ return Ivy.ApplicationExit.FORCE_EXIT;
}
private void directMessage(IvyClient client, int id, string arg)