i3/i3bar/include/common.h
2010-08-04 03:34:18 +02:00

21 lines
246 B
C

#ifndef COMMON_H_
#define COMMON_H_
#include "util.h"
typedef struct rect_t rect;
typedef int bool;
struct ev_loop* main_loop;
pid_t child_pid;
char *statusline;
struct rect_t {
int x;
int y;
int w;
int h;
};
#endif