Kommandos: ggf IDs an _process_command() uebergeben
Durch Uebergabe der Kommando-ID (aus AddCmd-Aufruf) koennen
Kommandos selektiv durch Ueberschreiben der
_process_command() identifiziert und abgebrochen werden
Change-Id: Ica5a0483fb2d81cb2583b255126405755d64ba7f
diff --git a/sys/thing/commands.h b/sys/thing/commands.h
index 2f9dfc7..8f48587 100644
--- a/sys/thing/commands.h
+++ b/sys/thing/commands.h
@@ -33,8 +33,8 @@
// internal
static int _execute(mixed fun, string str, mixed *parsed);
-static int _process_command(string str, string *noparsestr,mixed fun, mixed flag, mixed rule);
-
+static int _process_command(string str, string *noparsestr,mixed fun,
+ mixed flag, mixed rule, mixed id);
public int _cl(string str);
#endif // __THING_COMMANDS_H_PROTO__