+#include <app_control.h>
+
#include "extended-sd-main.h"
#include "dbus-call.h"
#include "log-util.h"
{
FUNC_BEGIN();
+ app_control_h app_control = NULL;
+ int ret;
+
+ ret = app_control_create(&app_control);
+ if (ret != APP_CONTROL_ERROR_NONE)
+ return;
+
+ ret = app_control_set_app_id(app_control, MYFILES_APP_ID);
+ if (ret != APP_CONTROL_ERROR_NONE) {
+ app_control_destroy(app_control);
+ return;
+ }
+
+ ret = app_control_send_launch_request(app_control, NULL, NULL);
+ app_control_destroy(app_control);
+
FUNC_END();
}
+#include <app_control.h>
+
#include "extended-sd-main.h"
#include "dbus-call.h"
//#include "dbus-macro.h"
{
FUNC_BEGIN();
+ app_control_h app_control = NULL;
+ int ret;
+
+ ret = app_control_create(&app_control);
+ if (ret != APP_CONTROL_ERROR_NONE)
+ return;
+
+ ret = app_control_set_app_id(app_control, MYFILES_APP_ID);
+ if (ret != APP_CONTROL_ERROR_NONE) {
+ app_control_destroy(app_control);
+ return;
+ }
+
+ ret = app_control_send_launch_request(app_control, NULL, NULL);
+ app_control_destroy(app_control);
+
FUNC_END();
}
item->it = elm_genlist_item_append(genlist, extended_multiline_genlist_itc, item, NULL, ELM_GENLIST_ITEM_NONE, NULL, item);
elm_genlist_item_select_mode_set(item->it, ELM_OBJECT_SELECT_MODE_DISPLAY_ONLY);
+
item = (genlist_item_s *)malloc(sizeof(genlist_item_s));
if (!item) {
DMSG_ERR("malloc failed");
BuildRequires: pkgconfig(capi-ui-efl-util)
BuildRequires: pkgconfig(capi-appfw-application)
BuildRequires: pkgconfig(capi-appfw-preference)
+BuildRequires: pkgconfig(capi-appfw-app-control)
BuildRequires: pkgconfig(capi-system-system-settings)
BuildRequires: pkgconfig(efl-extension)