1 #ifndef _EVAS_ENGINE_FB_H
2 #define _EVAS_ENGINE_FB_H
3 
4 typedef struct _Evas_Engine_Info_FB Evas_Engine_Info_FB;
5 
6 struct _Evas_Engine_Info_FB
7 {
8    /* PRIVATE - don't mess with this baby or evas will poke its tongue out */
9    /* at you and make nasty noises */
10    Evas_Engine_Info magic;
11 
12    struct {
13 
14       int virtual_terminal;
15       int device_number;
16       int refresh;
17       int rotation;
18    } info;
19 
20    /* non-blocking or blocking mode */
21    Evas_Engine_Render_Mode render_mode;
22 };
23 #endif
24