]> git.pond.sub.org Git - empserver/blobdiff - include/loan.h
Update copyright notice
[empserver] / include / loan.h
index f2ec2c082fd8be06ec71a0dc7e388dc278bcbe75..86b7a982741af49b3087cf50be287db7c2d9b6b0 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-2010, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -26,9 +26,9 @@
  *  ---
  *
  *  loan.h: Definitions for loans
- * 
+ *
  *  Known contributors to this file:
- *  
+ *
  */
 
 #ifndef LOAN_H
 
 struct lonstr {
     /* initial part must match struct empobj */
-    short ef_type;
-    short l_uid;
+    signed ef_type: 8;
+    unsigned l_seqno: 12;
+    unsigned l_generation: 12;
+    int l_uid;
+    time_t l_timestamp;
     /* end of part matching struct empobj */
     natid l_loner;             /* loan shark */
     natid l_lonee;             /* sucker */
     signed char l_status;      /* loan status */
-    short l_sell;              /* pointer to trade file (unused) */
     int l_irate;               /* interest rate */
     int l_ldur;                        /* intended duration */
     long l_amtpaid;            /* amount paid so far */