Start tracking changes
This commit is contained in:
19
i3bar/include/common.h
Normal file
19
i3bar/include/common.h
Normal file
@ -0,0 +1,19 @@
|
||||
#ifndef COMMON_H_
|
||||
#define COMMON_H_
|
||||
|
||||
#include "util.h"
|
||||
|
||||
typedef int bool;
|
||||
|
||||
typedef struct rect_t rect;
|
||||
|
||||
struct rect_t {
|
||||
int x;
|
||||
int y;
|
||||
int w;
|
||||
int h;
|
||||
};
|
||||
|
||||
struct ev_loop* main_loop;
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user