micro-wm/include/structs.h

13 lines
138 B
C

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