]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - include/iscriplib.h
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / include / iscriplib.h
index 30b9bd8a1ade6b7f564107af61d6423564cb0746..c958a42add11dfe41979da1df3e9987fe933b580 100644 (file)
@@ -1,23 +1,23 @@
 /*
-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
+ */
 
 //-----------------------------------------------------------------------------
 //
@@ -29,43 +29,43 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 #define __ISCRIPLIB_H_
 
 /*! \file iscriplib.h
- \brief function tables for Radiant core's text parsing functions
- two token based parsers cohexist in Radiant
- the primary one (GetToken UnGetToken etc.) is used on the .map parsing etc.
- COM_Parse is another parser, used on .def parse for instance
- NOTE: I hope we can totally get rid of this part when we have XML support
-*/
  \brief function tables for Radiant core's text parsing functions
  two token based parsers cohexist in Radiant
  the primary one (GetToken UnGetToken etc.) is used on the .map parsing etc.
  COM_Parse is another parser, used on .def parse for instance
+
  NOTE: I hope we can totally get rid of this part when we have XML support
+ */
 
 #define SCRIPLIB_MAJOR "scriptlib"
 
-typedef qboolean       (* PFN_GETTOKEN)                (qboolean crossline);
-typedef void      (* PFN_UNGETTOKEN)   ();
+typedef qboolean ( *PFN_GETTOKEN )( qboolean crossline );
+typedef void ( *PFN_UNGETTOKEN )();
 // only used to retrieve &token
-typedef char*     (* PFN_TOKEN) ();
-typedef void      (* PFN_STARTTOKENPARSING) (char *);
+typedef char*     ( *PFN_TOKEN )();
+typedef void ( *PFN_STARTTOKENPARSING )( char * );
 // script line
-typedef int       (* PFN_SCRIPTLINE) ();
-typedef qboolean  (* PFN_TOKENAVAILABLE) ();
+typedef int ( *PFN_SCRIPTLINE )();
+typedef qboolean ( *PFN_TOKENAVAILABLE )();
 // COM_Parse
-typedef char*     (* PFN_COM_PARSE) (char *data);
-typedef char*     (* PFN_GET_COM_TOKEN) ();
+typedef char*     ( *PFN_COM_PARSE )( char *data );
+typedef char*     ( *PFN_GET_COM_TOKEN )();
 // Hydra: added support for GetTokenExtra()
-typedef qboolean       (* PFN_GETTOKENEXTRA)           (qboolean crossline,char *delimiters,qboolean keepdelimiter);
+typedef qboolean ( *PFN_GETTOKENEXTRA )( qboolean crossline,char *delimiters,qboolean keepdelimiter );
 
 struct _QERScripLibTable
 {
        float m_fVersion;
        int m_nSize;
-       PFN_GETTOKEN    m_pfnGetToken;
-       PFN_GETTOKENEXTRA       m_pfnGetTokenExtra; // Hydra: added support for GetTokenExtra()
-       PFN_UNGETTOKEN  m_pfnUnGetToken;
-       PFN_TOKEN               m_pfnToken;
-       PFN_STARTTOKENPARSING  m_pfnStartTokenParsing;
-  PFN_SCRIPTLINE m_pfnScriptLine;
-  PFN_TOKENAVAILABLE m_pfnTokenAvailable;
-  PFN_COM_PARSE m_pfnCOM_Parse;
-  PFN_GET_COM_TOKEN m_pfnGet_COM_Token;
+       PFN_GETTOKEN m_pfnGetToken;
+       PFN_GETTOKENEXTRA m_pfnGetTokenExtra;   // Hydra: added support for GetTokenExtra()
+       PFN_UNGETTOKEN m_pfnUnGetToken;
+       PFN_TOKEN m_pfnToken;
+       PFN_STARTTOKENPARSING m_pfnStartTokenParsing;
+       PFN_SCRIPTLINE m_pfnScriptLine;
+       PFN_TOKENAVAILABLE m_pfnTokenAvailable;
+       PFN_COM_PARSE m_pfnCOM_Parse;
+       PFN_GET_COM_TOKEN m_pfnGet_COM_Token;
 };
 
 #ifdef USE_SCRIPLIBTABLE_DEFINE