move around - flatter.
[profile/ivi/evas.git] / src / modules / engines / software_ddraw / Evas_Engine_Software_DDraw.h
1 #ifndef __EVAS_ENGINE_SOFTWARE_DDRAW_H__
2 #define __EVAS_ENGINE_SOFTWARE_DDRAW_H__
3
4
5 #define WIN32_LEAN_AND_MEAN
6 #include <windows.h>
7 #undef WIN32_LEAN_AND_MEAN
8
9
10 typedef struct _Evas_Engine_Info_Software_DDraw Evas_Engine_Info_Software_DDraw;
11
12 struct _Evas_Engine_Info_Software_DDraw
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    } info;
23 };
24
25
26 #endif /* __EVAS_ENGINE_SOFTWARE_DDRAW_H__ */