gri3-wm/i3bar/include/common.h

20 lines
191 B
C
Raw Normal View History

2010-07-22 01:15:18 +02:00
#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