]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - include/idata.h
uncrustify! now the code is only ugly on the *inside*
[xonotic/netradiant.git] / include / idata.h
index fe453366f1cfb46cffde2aade17cef2b6fa2e783..2aeef34fe104467755f0a818d82cd3cb6e4a85a0 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
+ */
 
 //-----------------------------------------------------------------------------
 //
@@ -35,23 +35,23 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 // FIXME: remove
 // define a GUID for this interface so plugins can access and reference it
 // {608A9870-BCE7-11d4-A454-0004AC96D4C3}
-static const GUID QERAppDataTable_GUID = 
+static const GUID QERAppDataTable_GUID =
 { 0x608a9870, 0xbce7, 0x11d4, { 0xa4, 0x54, 0x0, 0x4, 0xac, 0x96, 0xd4, 0xc3 } };
 
 
 // pointers to active_brushes, selected_brushes and filtered_brushes
-typedef brush_t* (WINAPI* PFN_ACTIVEBRUSHES) ();
-typedef brush_t* (WINAPI* PFN_SELECTEDBRUSHES) ();
-typedef brush_t* (WINAPI* PFN_FILTEREDBRUSHES) ();
-typedef CPtrArray* (WINAPI* PFN_LSTSKINCACHE) ();
+typedef brush_t* ( WINAPI * PFN_ACTIVEBRUSHES )();
+typedef brush_t* ( WINAPI * PFN_SELECTEDBRUSHES )();
+typedef brush_t* ( WINAPI * PFN_FILTEREDBRUSHES )();
+typedef CPtrArray* ( WINAPI * PFN_LSTSKINCACHE )();
 
 struct _QERAppDataTable
 {
-  int m_nSize;
-  PFN_ACTIVEBRUSHES m_pfnActiveBrushes;
-  PFN_SELECTEDBRUSHES m_pfnSelectedBrushes;
-  PFN_FILTEREDBRUSHES m_pfnFilteredBrushes;
-  PFN_LSTSKINCACHE m_pfnLstSkinCache;
+       int m_nSize;
+       PFN_ACTIVEBRUSHES m_pfnActiveBrushes;
+       PFN_SELECTEDBRUSHES m_pfnSelectedBrushes;
+       PFN_FILTEREDBRUSHES m_pfnFilteredBrushes;
+       PFN_LSTSKINCACHE m_pfnLstSkinCache;
 };
 
 #endif