]> git.pond.sub.org Git - empserver/blobdiff - include/journal.h
Fix journalling of output ids
[empserver] / include / journal.h
index d29944cfcaf1aa2a55b81ad011084c9c07e991b2..7ef10ae1e230ace2f60579dc1a8717f853117947 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-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *  journal.h: Log a journal of events to a file
  * 
  *  Known contributors to this file:
- *     Markus Armbruster, 2004-2006
+ *     Markus Armbruster, 2004-2007
  */
 
 #ifndef JOURNAL_H
 #define JOURNAL_H
 
-int journal_open(void);
-int journal_close(void);
-void journal_entry(char *fmt, ...);
+struct player;                 /* FIXME temporary hack */
 
 int journal_startup(void);
 void journal_shutdown(void);
+int journal_reopen(void);
 void journal_login(void);
 void journal_logout(void);
-void journal_input(char *input);
+void journal_prng(unsigned);
+void journal_output(struct player *, int, char *);
+void journal_input(char *);
+void journal_command(char *);
 void journal_update(int);
 
 #endif