summaryrefslogtreecommitdiffstats
path: root/launcher/widgets/fake_widget.c
diff options
context:
space:
mode:
Diffstat (limited to 'launcher/widgets/fake_widget.c')
-rw-r--r--launcher/widgets/fake_widget.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/launcher/widgets/fake_widget.c b/launcher/widgets/fake_widget.c
new file mode 100644
index 00000000..15e3cf2a
--- /dev/null
+++ b/launcher/widgets/fake_widget.c
@@ -0,0 +1,24 @@
+#include "fake_widget.h"
+
+void fake_widget_setup(LauncherSettings *settings, void ** context_ptr) {
+ (void) settings;
+ *context_ptr = NULL;
+}
+
+void fake_widget_enter_foreground(LauncherSettings *settings, void *context) {
+ (void) settings;
+ (void) context;
+}
+
+bool fake_widget_loop(LauncherEvent event, LauncherSettings *settings, void *context) {
+ (void) event;
+ (void) settings;
+ (void) context;
+
+ return true;
+}
+
+void fake_widget_enter_background(LauncherSettings *settings, void *context) {
+ (void) settings;
+ (void) context;
+}