]> git.pond.sub.org Git - empserver/blobdiff - include/power.h
Update copyright notice.
[empserver] / include / power.h
index 27339c21ebcf38145e038caec6e8c5a37ac2eacc..6ec24928e23848d2bf67de82abbdfdab35f305da 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -19,9 +19,9 @@
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *     
  */
 
-#ifndef _POWER_H_
-#define _POWER_H_
+#ifndef POWER_H
+#define POWER_H
+
+#include "types.h"
 
 struct powstr {
     natid p_nation;
@@ -55,11 +57,8 @@ struct powstr {
     float p_power;
 };
 
-#define getpower(n, p) \
-       ef_read(EF_POWER, n, (caddr_t)p)
-#define putpower(n, p) \
-       ef_write(EF_POWER, n, (caddr_t)p)
-#define getpowerp(n) \
-       (struct powstr *) ef_ptr(EF_POWER, n)
+#define getpower(n, p) ef_read(EF_POWER, (n), (p))
+#define putpower(n, p) ef_write(EF_POWER, (n), (p))
+#define getpowerp(n) (struct powstr *)ef_ptr(EF_POWER, (n))
 
-#endif /* _POWER_H_ */
+#endif