/usr/include/evas-1/Evas_Engine_FB.h is in libevas-dev 1.8.6-2.5build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #ifndef _EVAS_ENGINE_FB_H
#define _EVAS_ENGINE_FB_H
typedef struct _Evas_Engine_Info_FB Evas_Engine_Info_FB;
struct _Evas_Engine_Info_FB
{
/* 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 {
int virtual_terminal;
int device_number;
int refresh;
int rotation;
} info;
/* non-blocking or blocking mode */
Evas_Engine_Render_Mode render_mode;
};
#endif
|