blob: 70b6918c23e88b193fc0658960de0fd079546136 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include "fake_widget.h"
void fake_widget_setup(LauncherSettings *settings, void ** context_ptr) {
(void) settings;
*context_ptr = NULL;
}
void fake_widget_activate(LauncherSettings *settings, void *context) {
(void) settings;
(void) context;
}
void fake_widget_loop(LauncherEvent event, LauncherSettings *settings, void *context) {
(void) event;
(void) settings;
(void) context;
return true;
}
void fake_widget_resign(LauncherSettings *settings, void *context) {
(void) settings;
(void) context;
}
|