FS2_Open
Open source remastering of the Freespace 2 engine
multi_log.h
Go to the documentation of this file.
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 the
6  * source.
7  *
8 */
9 
10 
11 
12 #ifndef _FREESPACE_MULTIPLAYER_LOGFILE_HEADER_FILE
13 #define _FREESPACE_MULTIPLAYER_LOGFILE_HEADER_FILE
14 
15 // ----------------------------------------------------------------------------------------------------
16 // MULTI LOGFILE DEFINES/VARS
17 //
18 
19 
20 // ----------------------------------------------------------------------------------------------------
21 // MULTI LOGFILE FUNCTIONS
22 //
23 
24 // initialize the multi logfile
25 void multi_log_init();
26 
27 // close down the multi logfile
28 void multi_log_close();
29 
30 // give some processing time to the logfile system so it can check up on stuff
31 void multi_log_process();
32 
33 // printf function itself called by the ml_printf macro
34 void ml_printf(const char *format, ...);
35 
36 // string print function
37 void ml_string(const char *string, int add_time = 1);
38 
39 #endif
GLenum GLsizei GLenum format
Definition: Gl.h:1509
void multi_log_close()
Definition: multi_log.cpp:93
void multi_log_process()
Definition: multi_log.cpp:100
void ml_printf(const char *format,...)
Definition: multi_log.cpp:112
void ml_string(const char *string, int add_time=1)
Definition: multi_log.cpp:131
void multi_log_init()
Definition: multi_log.cpp:81