i3/i3bar/include/common.h

21 lines
246 B
C
Raw Normal View History

2010-07-22 01:15:18 +02:00
#ifndef COMMON_H_
#define COMMON_H_
#include "util.h"
2010-08-04 03:34:18 +02:00
typedef struct rect_t rect;
2010-07-22 01:15:18 +02:00
typedef int bool;
2010-08-04 03:34:18 +02:00
struct ev_loop* main_loop;
pid_t child_pid;
char *statusline;
2010-07-22 01:15:18 +02:00
struct rect_t {
int x;
int y;
int w;
int h;
};
#endif