7ed8c75e2235f9ae4bd319b3c9dfe616f04e85d2
[platform/core/appfw/data-provider-slave.git] / src / util_wayland.c
1 #include "util.h"
2
3 #include <widget_errno.h>
4
5 void *util_screen_get(void)
6 {
7         return NULL;
8 }
9
10 int util_screen_size_get(int *width, int *height)
11 {
12         *width = 0;
13         *height = 0;
14         return WIDGET_ERROR_NOT_SUPPORTED;
15 }
16
17 int util_screen_init(void)
18 {
19         return WIDGET_ERROR_NONE;
20 }
21
22 int util_screen_fini(void)
23 {
24         return WIDGET_ERROR_NONE;
25 }
26
27 /* End of a file */