aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/software_gdi/Evas_Engine_Software_Gdi.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 17:29:19 +1000
committerDavid Walter Seikel2013-01-13 17:29:19 +1000
commit07274513e984f0b5544586c74508ccd16e7dcafa (patch)
treeb32ff2a9136fbc1a4a6a0ed1e4d79cde0f5f16d9 /libraries/evas/src/modules/engines/software_gdi/Evas_Engine_Software_Gdi.h
parentAdded Irrlicht 1.8, but without all the Windows binaries. (diff)
downloadSledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.zip
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.gz
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.bz2
SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.xz
Remove EFL, since it's been released now.
Diffstat (limited to 'libraries/evas/src/modules/engines/software_gdi/Evas_Engine_Software_Gdi.h')
-rw-r--r--libraries/evas/src/modules/engines/software_gdi/Evas_Engine_Software_Gdi.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/libraries/evas/src/modules/engines/software_gdi/Evas_Engine_Software_Gdi.h b/libraries/evas/src/modules/engines/software_gdi/Evas_Engine_Software_Gdi.h
deleted file mode 100644
index deac5b2..0000000
--- a/libraries/evas/src/modules/engines/software_gdi/Evas_Engine_Software_Gdi.h
+++ /dev/null
@@ -1,32 +0,0 @@
1#ifndef __EVAS_ENGINE_SOFTWARE_GDI_H__
2#define __EVAS_ENGINE_SOFTWARE_GDI_H__
3
4
5#define WIN32_LEAN_AND_MEAN
6#include <windows.h>
7#undef WIN32_LEAN_AND_MEAN
8
9
10typedef struct _Evas_Engine_Info_Software_Gdi Evas_Engine_Info_Software_Gdi;
11
12struct _Evas_Engine_Info_Software_Gdi
13{
14 /* PRIVATE - don't mess with this baby or evas will poke its tongue out */
15 /* at you and make nasty noises */
16 Evas_Engine_Info magic;
17
18 struct {
19 HWND window;
20 int depth;
21 int rotation;
22 unsigned int borderless : 1;
23 unsigned int fullscreen : 1;
24 unsigned int region : 1;
25 } info;
26
27 /* non-blocking or blocking mode */
28 Evas_Engine_Render_Mode render_mode;
29};
30
31
32#endif /* __EVAS_ENGINE_SOFTWARE_GDI_H__ */