/src/capture/capture_bluez.h
C++ Header | 47 lines | 7 code | 8 blank | 32 comment | 0 complexity | cf72ce8b22e7620f3ecf479f78ebeca5 MD5 | raw file
1/* 2 * bdremoteng - helper daemon for Sony(R) BD Remote Control 3 * Based on bdremoted, written by Anton Starikov <antst@mail.ru>. 4 * 5 * Copyright (C) 2009 Michael Wojciechowski <wojci@wojci.dk> 6 * 7 * 8 * This program is free software; you can redistribute it and/or modify 9 * it under the terms of the GNU General Public License as published by 10 * the Free Software Foundation; either version 2 of the License, or 11 * (at your option) any later version. 12 * 13 * This program is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * GNU General Public License for more details. 17 * 18 * You should have received a copy of the GNU General Public License 19 * along with this program; if not, write to the Free Software 20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 21 * 22 */ 23 24/** @defgroup bluezif Bluez capture interface implemenation 25 26 * This group contains the Bluez capture interface implementation. 27 28 * @{ 29 */ 30 31/*! \file capture_bluez.h 32 \brief Bluez capture interface. 33*/ 34 35#ifndef BD_CAPTURE_BLUEZ_H 36#define BD_CAPTURE_BLUEZ_H 37 38#include <globaldefs.h> 39#include <captureif.h> 40 41int InitcaptureLoop(captureData* _capturedata); 42int captureLoop(captureData* _capturedata); 43 44#endif /* BD_CAPTURE_BLUEZ_H */ 45 46/*@}*/ 47