]> icculus.org git repositories - taylor/freespace2.git/blob - include/multi_log.h
rendering functions mostly done; more complete shader setup
[taylor/freespace2.git] / include / multi_log.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/Network/multi_log.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * Header file to support multiplayer logging functions
16  *
17  * $Log$
18  * Revision 1.2  2002/06/09 04:41:14  relnev
19  * added copyright header
20  *
21  * Revision 1.1.1.1  2002/05/03 03:28:12  root
22  * Initial import.
23  *
24  * 
25  * 2     10/07/98 10:53a Dave
26  * Initial checkin.
27  * 
28  * 1     10/07/98 10:50a Dave
29  * 
30  * 2     8/20/98 5:31p Dave
31  * Put in handy multiplayer logfile system. Now need to put in useful
32  * applications of it all over the code.
33  * 
34  * 1     8/20/98 2:00p Dave
35  *  
36  *
37  * $NoKeywords: $
38  */
39
40 #ifndef _FREESPACE_MULTIPLAYER_LOGFILE_HEADER_FILE
41 #define _FREESPACE_MULTIPLAYER_LOGFILE_HEADER_FILE
42
43 // ----------------------------------------------------------------------------------------------------
44 // MULTI LOGFILE DEFINES/VARS
45 //
46
47
48 // ----------------------------------------------------------------------------------------------------
49 // MULTI LOGFILE FUNCTIONS
50 //
51
52 // initialize the multi logfile
53 void multi_log_init();
54
55 // close down the multi logfile
56 void multi_log_close();
57
58 // give some processing time to the logfile system so it can check up on stuff
59 void multi_log_process();
60
61 // printf function itself called by the ml_printf macro
62 void ml_printf(const char *format, ...);
63
64 // string print function
65 void ml_string(const char *string, int add_time = 1);
66
67 #endif
68