summaryrefslogtreecommitdiff
path: root/src/surface.h
diff options
context:
space:
mode:
authorLeon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de>2021-11-14 04:14:25 +0100
committerLeon Henrik Plickat <leonhenrik.plickat@stud.uni-goettingen.de>2021-11-14 04:14:44 +0100
commitd933ed4dd56f38285f4aef61b487307a497574c5 (patch)
tree9f058036fe6ef0aa4fc99d5f2eb84d0523ec1431 /src/surface.h
parentfa3d1b5dfe4f93953c300595e8fd81abd76670ee (diff)
downloadwlclock-d933ed4dd56f38285f4aef61b487307a497574c5.tar.gz
wlclock-d933ed4dd56f38285f4aef61b487307a497574c5.tar.bz2
Use global context
Diffstat (limited to 'src/surface.h')
-rw-r--r--src/surface.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/surface.h b/src/surface.h
index 9d36f69..716697f 100644
--- a/src/surface.h
+++ b/src/surface.h
@@ -9,7 +9,6 @@
#include<stdint.h>
#include<stdbool.h>
-struct Wlclock;
struct Wlclock_output;
struct Wlclock_surface
@@ -31,6 +30,6 @@ struct Wlclock_surface
bool create_surface (struct Wlclock_output *output);
void destroy_surface (struct Wlclock_surface *surface);
void update_surface (struct Wlclock_surface *surface);
-void update_all_hands (struct Wlclock *clock);
+void update_all_hands (void);
#endif