/* * dLeyna * * Copyright (C) 2012-2013 Intel Corporation. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU Lesser General Public License, * version 2.1, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. * * Ludovic Ferrandis * Regis Merlino * */ #ifndef DLEYNA_SERVICE_TASK_H__ #define DLEYNA_SERVICE_TASK_H__ #include #include #include "task-atom.h" typedef struct dleyna_service_task_t_ dleyna_service_task_t; typedef GUPnPServiceProxyAction *(*dleyna_service_task_action) (dleyna_service_task_t *task, GUPnPServiceProxy *proxy, gboolean *failed); const char *dleyna_service_task_create_source(void); void dleyna_service_task_add(const dleyna_task_queue_key_t *queue_id, dleyna_service_task_action action, GUPnPServiceProxy *proxy, GUPnPServiceProxyActionCallback action_cb, GDestroyNotify free_func, gpointer cb_user_data); void dleyna_service_task_begin_action_cb(GUPnPServiceProxy *proxy, GUPnPServiceProxyAction *action, gpointer user_data); void dleyna_service_task_process_cb(dleyna_task_atom_t *atom, gpointer user_data); void dleyna_service_task_cancel_cb(dleyna_task_atom_t *atom, gpointer user_data); void dleyna_service_task_delete_cb(dleyna_task_atom_t *atom, gpointer user_data); gpointer dleyna_service_task_get_user_data(dleyna_service_task_t *task); #endif /* DLEYNA_SERVICE_TASK_H__ */