]> git.pond.sub.org Git - empserver/blobdiff - include/treaty.h
Remove unused members of struct lndstr, lonstr, nukstr, trtstr
[empserver] / include / treaty.h
index ba072745a46b5d7b7b62c697e820dcfad76c9044..bef96d5998480fef6cde33b597c5b41e1f0ebe08 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2008, 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;
+    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;
     short trt_acond;           /* conditions for proposer */
     short trt_bcond;           /* conditions for accepter */
-    float trt_bond;            /* amount of bond involved (unused) */
     time_t trt_exp;            /* expiration date */
 };