2013-04-20 17:07:19 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
* @addtogroup OpenPilotModules OpenPilot Modules
|
|
|
|
* @{
|
|
|
|
* @addtogroup WavPlayerModule WavPlayer Module
|
|
|
|
* @brief Process WavPlayer information
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file wavplayer.h
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @brief WavPlayer module
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
2012-07-15 20:43:44 +02:00
|
|
|
/*
|
2013-04-20 17:07:19 +02:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2012-07-15 20:43:44 +02:00
|
|
|
*
|
2013-04-20 17:07:19 +02:00
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2012-07-15 20:43:44 +02:00
|
|
|
*/
|
2013-04-20 17:07:19 +02:00
|
|
|
#ifndef WAVPLAYER_H_
|
|
|
|
#define WAVPLAYER_H_
|
2012-07-15 20:43:44 +02:00
|
|
|
|
|
|
|
#include "openpilot.h"
|
|
|
|
|
|
|
|
int32_t WavPlayerInitialize(void);
|
|
|
|
|
2013-04-20 17:07:19 +02:00
|
|
|
#endif /* WAVPLAYER_H_ */
|