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