]> git.pond.sub.org Git - empserver/blobdiff - include/treaty.h
Fix generation numbers for autonav
[empserver] / include / treaty.h
index 8a0cadc839f516b3e5a957998aa9471365bf1ede..e70c2f98678b49730bc6ab78a3e01a02e713bcdf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -26,7 +26,7 @@
  *  ---
  *
  *  treaty.h: Definitions for treaties
- * 
+ *
  *  Known contributors to this file:
  *      Steve McClure, 1998
  */
 #include "types.h"
 
 struct trtstr {
+    /* initial part must match struct empobj */
     short ef_type;
-    natid trt_cna;             /* proposer */
     short trt_uid;
+    unsigned trt_seqno;
+    unsigned trt_generation;
+    time_t trt_timestamp;
+    /* end of part matching struct empobj */
+    natid trt_cna;             /* proposer */
     natid trt_cnb;             /* acceptor */
     signed char trt_status;    /* treaty status */
     char trt_fill;
@@ -69,6 +74,6 @@ struct trtstr {
 
 #define gettre(n, p) ef_read(EF_TREATY, (n), (p))
 #define puttre(n, p) ef_write(EF_TREATY, (n), (p))
-#define gettrep(n) (struct trtstr *)ef_ptr(EF_TREATY, (n))
+#define gettrep(n) ((struct trtstr *)ef_ptr(EF_TREATY, (n)))
 
 #endif