micro-wm/include/structs.h

14 lines
147 B
C
Raw Normal View History

2023-10-28 15:14:49 +00:00
#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