]> git.tdb.fi Git - libs/gui.git/blob - source/types.h
e3524f32e0962c6ee485c05eb4a26cc72f256a23
[libs/gui.git] / source / types.h
1 /* $Id$
2
3 This file is part of libmspgbase
4 Copyright © 2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GBASE_TYPES_H_
9 #define MSP_GBASE_TYPES_H_
10
11 #ifdef WIN32
12 #include <windows.h>
13 #else
14 #include <X11/Xlib.h>
15 #endif
16
17 namespace Msp {
18 namespace Graphics {
19
20 #ifdef WIN32
21 typedef HWND WindowHandle;
22 #else
23 typedef ::Window WindowHandle;
24 #endif
25
26 } // namespace Graphics
27 } // namespace Msp
28
29 #endif