home · contact · privacy
Server/py: Minor fixes in actor_move().
[plomrogue] / src / client / cleanup.h
index ce4866dc1648792dc7d32c84b5f4ced3291851b2..a9dd2f9cf604540010bb64778f07a9c8458851e3 100644 (file)
@@ -1,4 +1,8 @@
 /* src/client/cleanup.h
+ *
+ * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+ * or any later version. For details on its copyright, license, and warranties,
+ * see the file NOTICE in the root directory of the PlomRogue source package.
  *
  * Stuff defining / performing the cleanup called by rexit.h's exit functions.
  */
@@ -16,7 +20,9 @@ enum cleanup_flag
 {
     CLEANUP_NCURSES    = 0x0001,
     CLEANUP_INTERFACE  = 0x0002,
-    CLEANUP_COMMANDS   = 0x0004
+    CLEANUP_COMMANDS   = 0x0004,
+    CLEANUP_SERVER_IN  = 0x0008,
+    CLEANUP_SERVER_OUT = 0x0008
 };
 
 extern void set_cleanup_flag(enum cleanup_flag flag);