a169f3f39abbce0d6561b2057c396a5a75abfca9
[apps/livebox/data-provider-master.git] / src / util_wayland.c
1 #include "util.h"
2
3 #if defined(HAVE_LIVEBOX)
4 #include <livebox-errno.h>
5 #else
6 #include "lite-errno.h"
7 #endif
8
9 int util_screen_size_get(int *width, int *height)
10 {
11         *width = 0;
12         *height = 0;
13         return LB_STATUS_ERROR_NOT_IMPLEMENTED;
14 }
15
16 int util_screen_init(void)
17 {
18         return LB_STATUS_SUCCESS;
19 }
20
21 int util_screen_fini(void)
22 {
23         return LB_STATUS_SUCCESS;
24 }
25
26 /* End of a file */