~ubuntu-branches/ubuntu/vivid/dleyna-core/vivid

« back to all changes in this revision

Viewing changes to libdleyna/core/connector-mgr.h

  • Committer: Package Import Robot
  • Author(s): Emanuele Aina
  • Date: 2013-06-07 13:51:34 UTC
  • Revision ID: package-import@ubuntu.com-20130607135134-606qkw7c8sskizvm
Tags: upstream-0.1.0
ImportĀ upstreamĀ versionĀ 0.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * dLeyna
 
3
 *
 
4
 * Copyright (C) 2013 Intel Corporation. All rights reserved.
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify it
 
7
 * under the terms and conditions of the GNU Lesser General Public License,
 
8
 * version 2.1, as published by the Free Software Foundation.
 
9
 *
 
10
 * This program is distributed in the hope it will be useful, but WITHOUT
 
11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 
13
 * for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Lesser General Public License
 
16
 * along with this program; if not, write to the Free Software Foundation, Inc.,
 
17
 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 
18
 *
 
19
 * Regis Merlino <regis.merlino@intel.com>
 
20
 *
 
21
 */
 
22
 
 
23
#ifndef DLEYNA_CONNECTOR_MGR_H__
 
24
#define DLEYNA_CONNECTOR_MGR_H__
 
25
 
 
26
#include <glib.h>
 
27
 
 
28
#include "connector.h"
 
29
 
 
30
const dleyna_connector_t *dleyna_connector_mgr_load(const gchar *name);
 
31
void dleyna_connector_mgr_release(const dleyna_connector_t *connector);
 
32
 
 
33
#endif /* DLEYNA_CONNECTOR_MGR_H__ */