]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/prtview/stdafx.h
* fixed a lot of compiler warnings (mostly const char * stuff and use of uninitialize...
[xonotic/netradiant.git] / contrib / prtview / stdafx.h
1 /*
2 PrtView plugin for GtkRadiant
3 Copyright (C) 2001 Geoffrey Dewan, Loki software and qeradiant.com
4
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with this library; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18 */
19
20 #ifndef __PRTVIEW_AFX_H__
21 #define __PRTVIEW_AFX_H__
22
23 #include <gtk/gtk.h>
24 #include <glib/gi18n.h>
25
26 #if defined(__linux__) || defined(__APPLE__)
27 #include <GL/glx.h>
28
29 // Necessary for proper boolean type declaration
30 #include "qertypes.h"
31
32 typedef guint32 COLORREF;
33 typedef void* LPVOID;
34 typedef char* LPCSTR;
35 typedef void* HMODULE;
36 typedef int     BOOL;
37
38 #define RGB(r, g, b) ((guint32)(((guint8) (r) | ((guint16) (g) << 8))|(((guint32) (guint8) (b)) << 16)))
39 #define GetRValue(rgb)      ((guint8)(rgb))
40 #define GetGValue(rgb)      ((guint8)(((guint16)(rgb)) >> 8))
41 #define GetBValue(rgb)      ((guint8)((rgb)>>16))
42
43 #define _MAX_PATH PATH_MAX
44
45 #define IDOK                1
46 #define IDCANCEL            2
47
48 #endif // __linux__
49
50 #include "synapse.h"
51
52 // plugin
53 #include "iplugin.h"
54 #define USE_QERTABLE_DEFINE
55 #include "qerplugin.h"
56 #include "ibspfrontend.h"
57 #include "igl.h"
58 #include "version.h"
59
60 // PrtView
61 #include "gtkdlgs.h"
62 #include "prtview.h"
63 #include "portals.h"
64 #include "resource.h"           // main symbols
65
66 #define MSG_PREFIX "Portal Viewer plugin: "
67 #define PRTVIEW_MINOR "prtview"
68
69 #define UPDATE_2D (W_XY | W_XZ | W_YZ)
70 #define UPDATE_3D (W_CAMERA)
71 #define UPDATE_ALL (UPDATE_2D | UPDATE_3D)
72
73 int INIGetInt(const char *key, int def);
74 void INISetInt(const char *key, int val, const char *comment = NULL);
75
76 extern bool interfaces_started;
77
78 extern _QERFuncTable_1 g_FuncTable;
79 extern _QERQglTable g_QglTable;
80
81 #endif