Fix horrid formatting

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-10-15 13:40:50 +01:00
parent 7c6e4a2339
commit cf859cfacc
1 changed files with 35 additions and 34 deletions

View File

@ -36,40 +36,41 @@
/* ecore_fb_li.c */
struct _Ecore_Fb_Input_Device
{
int fd;
Ecore_Fd_Handler *handler;
int listen;
struct {
Ecore_Fb_Input_Device_Cap cap;
char *name;
char *dev;
} info;
struct
{
/* common mouse */
int x,y;
int w,h;
double last;
double prev;
double threshold;
Eina_Bool did_double;
Eina_Bool did_triple;
/* absolute axis */
int min_w, min_h;
double rel_w, rel_h;
int event;
int prev_button;
int last_button;
} mouse;
struct
{
int shift;
int ctrl;
int alt;
int lock;
} keyboard;
void *window;
int fd;
Ecore_Fd_Handler *handler;
int listen;
struct
{
Ecore_Fb_Input_Device_Cap cap;
char *name;
char *dev;
} info;
struct
{
/* common mouse */
int x,y;
int w,h;
double last;
double prev;
double threshold;
Eina_Bool did_double;
Eina_Bool did_triple;
/* absolute axis */
int min_w, min_h;
double rel_w, rel_h;
int event;
int prev_button;
int last_button;
} mouse;
struct
{
int shift;
int ctrl;
int alt;
int lock;
} keyboard;
void *window;
};
/* ecore_fb_ts.c */