]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - include/qsysprintf.h
Merge pull request #47 from mrwonko/MapLoading
[xonotic/netradiant.git] / include / qsysprintf.h
index a8d2874a37d832e7fc2340ebb68c99ff4cdd163e..72f640c0238af911aeb389a57b0bec09aa55af17 100644 (file)
@@ -1,42 +1,42 @@
 /*
-Copyright (C) 1999-2007 id Software, Inc. and contributors.
-For a list of contributors, see the accompanying CONTRIBUTORS file.
+   Copyright (C) 1999-2007 id Software, Inc. and contributors.
+   For a list of contributors, see the accompanying CONTRIBUTORS file.
 
-This file is part of GtkRadiant.
+   This file is part of GtkRadiant.
 
-GtkRadiant is free software; you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 2 of the License, or
-(at your option) any later version.
+   GtkRadiant is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
 
-GtkRadiant is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
+   GtkRadiant is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
 
-You should have received a copy of the GNU General Public License
-along with GtkRadiant; if not, write to the Free Software
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
-*/
+   You should have received a copy of the GNU General Public License
+   along with GtkRadiant; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
 
 #ifndef __QSYSPRINTF_H__
 #define __QSYSPRINTF_H__
 
 /*!
-this header is provided in libs/ in an attempt to provide a common API
-for all the diagnostic printing / fatal error situations
+   this header is provided in libs/ in an attempt to provide a common API
+   for all the diagnostic printing / fatal error situations
 
-this is oriented at synapse server targets ONLY
-synapse clients should not include this, as they are supposed to go
-through the function tables to report print diagnostics
-(or use Syn_Printf for situations where the func table may not be available)
+   this is oriented at synapse server targets ONLY
+   synapse clients should not include this, as they are supposed to go
+   through the function tables to report print diagnostics
+   (or use Syn_Printf for situations where the func table may not be available)
 
-each server target implements that in it's own way. Radiant logs to
-a file and sends to the console, q3map prints to stdout and to the
-XML network stream, etc.
-*/
+   each server target implements that in it's own way. Radiant logs to
+   a file and sends to the console, q3map prints to stdout and to the
+   XML network stream, etc.
+ */
 
-#if defined(__cplusplus)
+#if defined( __cplusplus )
 extern "C"
 {
 #endif
@@ -49,18 +49,18 @@ extern "C"
 #define SYS_NOCON 4 ///< no console, only print to the file (useful whenever Sys_Printf and output IS the problem)
 
 /*!
-those are the real implementation  
-*/
-void Sys_Printf_VA (const char *text, va_list args); ///< matches PFN_SYN_PRINTF_VA prototype
-void Sys_FPrintf_VA (int level, const char *text, va_list args);
+   those are the real implementation
+ */
+void Sys_Printf_VA( const char *text, va_list args ); ///< matches PFN_SYN_PRINTF_VA prototype
+void Sys_FPrintf_VA( int level, const char *text, va_list args );
 
 /*!
-this is easy to call, wrappers around va_list version
-*/
-void Sys_Printf (const char *text, ...);
-void Sys_FPrintf (int flag, const char *text, ...);
-  
-#if defined(__cplusplus)
+   this is easy to call, wrappers around va_list version
+ */
+void Sys_Printf( const char *text, ... );
+void Sys_FPrintf( int flag, const char *text, ... );
+
+#if defined( __cplusplus )
 };
 #endif