/* * dLeyna * * Copyright (C) 2012-2017 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 * */ #ifndef DLS_MANAGER_H__ #define DLS_MANAGER_H__ #include #include #include #include "task.h" typedef struct dls_manager_t_ dls_manager_t; typedef void (*dls_manager_task_complete_t)(dls_task_t *task, GError *error); dls_manager_t *dls_manager_new(dleyna_connector_id_t connection, GUPnPContextManager *connection_manager); void dls_manager_delete(dls_manager_t *manager); dleyna_white_list_t *dls_manager_get_white_list(dls_manager_t *manager); void dls_manager_get_all_props(dls_manager_t *manager, dleyna_settings_t *settings, dls_task_t *task, dls_manager_task_complete_t cb); void dls_manager_get_prop(dls_manager_t *manager, dleyna_settings_t *settings, dls_task_t *task, dls_manager_task_complete_t cb); void dls_manager_set_prop(dls_manager_t *manager, dleyna_settings_t *settings, dls_task_t *task, dls_manager_task_complete_t cb); #endif /* DLS_MANAGER_H__ */