icu-i18n
glib-2.0
gio-2.0
+ screen_connector_provider
)
FOREACH(flag ${pkg_watch_CFLAGS})
SET(EXTRA_CFLAGS_watch "${EXTRA_CFLAGS_watch} ${flag}")
BuildRequires: pkgconfig(ecore-wayland)
BuildRequires: pkgconfig(glib-2.0)
BuildRequires: pkgconfig(gio-2.0)
+BuildRequires: pkgconfig(screen_connector_provider)
BuildRequires: cmake
#include <glib-object.h>
#include <Ecore_Wayland.h>
#include <widget_app.h>
-#include <aul_rsm_provider.h>
+#include <screen_connector_provider.h>
#include "appcore-watch.h"
#include "appcore-watch-log.h"
r = watch_core_init(watch->name, &w_ops, argc, argv);
_retv_if(r < 0, -1);
- aul_rsm_provider_init();
+ screen_connector_provider_init();
__widget_create(NULL, NULL, width, height, NULL);
if (watch->ops && watch->ops->terminate)
watch->ops->terminate(watch->ops->data);
- aul_rsm_provider_fini();
+ screen_connector_provider_fini();
elm_shutdown();
#include <Evas.h>
#include <Elementary.h>
#include <Ecore_Wayland.h>
-#include <aul_rsm_provider.h>
+#include <screen_connector_provider.h>
#include "appcore-watch.h"
#include "appcore-watch-log.h"
_E("failed to get surface");
surface = ecore_wl_window_surface_get(wl_win);
-
- aul_rsm_provider_remote_enable(watch_core_get_appid(), surface);
+ screen_connector_provider_remote_enable(watch_core_get_appid(), surface);
*win = ret_win;
return APP_ERROR_NONE;
if (type == NULL || ticks == NULL)
return APP_ERROR_INVALID_PARAMETER;
return watch_core_get_time_tick_frequency(ticks, type);
-}
\ No newline at end of file
+}