efl/legacy/evas/src/modules/engines/software_gdi/Evas_Engine_Software_Gdi.h

33 lines
749 B
C

#ifndef __EVAS_ENGINE_SOFTWARE_GDI_H__
#define __EVAS_ENGINE_SOFTWARE_GDI_H__
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#undef WIN32_LEAN_AND_MEAN
typedef struct _Evas_Engine_Info_Software_Gdi Evas_Engine_Info_Software_Gdi;
struct _Evas_Engine_Info_Software_Gdi
{
/* 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;
HBITMAP mask;
int depth;
int rotation;
unsigned int layered : 1;
unsigned int fullscreen : 1;
} info;
/* non-blocking or blocking mode */
Evas_Engine_Render_Mode render_mode;
};
#endif /* __EVAS_ENGINE_SOFTWARE_GDI_H__ */