From 1a5a0e5cd6f82535c80f7a88b2b4dfac222fa2bb Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sun, 13 Feb 2022 17:45:33 -0700 Subject: Implement Lock on Drawer --- include/graphics/drawer.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') diff --git a/include/graphics/drawer.h b/include/graphics/drawer.h index 67abca0..b654989 100644 --- a/include/graphics/drawer.h +++ b/include/graphics/drawer.h @@ -1,9 +1,12 @@ #ifndef GRAPHICS_DRAWER_H #define GRAPHICS_DRAWER_H +#include + struct Drawer { unsigned int x; unsigned int y; + struct Lock l; }; void write_cchar(struct Drawer* d, char s, unsigned int c); -- cgit v1.2.1