micro-wm/include/structs.h

14 lines
147 B
C

#ifndef _STRUCTS_H
#define _STRUCTS_H
typedef struct {
const char *name;
int id;
int x;
int y;
int res_x;
int res_y;
} MonitorRule;
#endif