aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/software_16_wince/Evas_Engine_Software_16_WinCE.h
blob: e94b7c23846db9725800482e60fd256277bde5f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef __EVAS_ENGINE_SOFTWARE_16_WINCE_H__
#define __EVAS_ENGINE_SOFTWARE_16_WINCE_H__


#include <windows.h>


typedef struct _Evas_Engine_Info_Software_16_WinCE Evas_Engine_Info_Software_16_WinCE;

struct _Evas_Engine_Info_Software_16_WinCE
{
   /* PRIVATE - don't mess with this baby or evas will poke its tongue out */
   /* at you and make nasty noises */
   Evas_Engine_Info magic;

   struct {
      HWND         window;
      int          width;
      int          height;
      int          backend; /* 0: auto, 1: raw, 2: gapi, 3: ddraw, 4: gdi */
      int          rotation;
      unsigned int fullscreen : 1;
   } info;
   /* engine specific function calls to query stuff about messages */
   struct {
      int   (*suspend) (int backend);
      int   (*resume)  (int backend);
   } func;

   /* non-blocking or blocking mode */
   Evas_Engine_Render_Mode render_mode;
};


#endif /* __EVAS_ENGINE_SOFTWARE_16_WINCE_H__ */