2013-05-03 14:36:17 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 14:36:17 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-05-03 14:36:17 +00:00
|
|
|
*/
|
|
|
|
|
2013-05-06 04:44:47 +00:00
|
|
|
/**
|
|
|
|
* @file include/gaudout/gaudout.h
|
|
|
|
*
|
|
|
|
* @addtogroup GAUDOUT
|
|
|
|
*
|
2013-07-21 20:02:57 +00:00
|
|
|
* @brief Module to output audio data (under development)
|
|
|
|
*
|
2013-05-06 04:44:47 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2013-05-03 14:36:17 +00:00
|
|
|
#ifndef _GAUDOUT_H
|
|
|
|
#define _GAUDOUT_H
|
|
|
|
|
|
|
|
#include "gfx.h"
|
|
|
|
|
|
|
|
#if GFX_USE_GAUDOUT || defined(__DOXYGEN__)
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Type definitions */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* External declarations. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* GFX_USE_GAUDOUT */
|
|
|
|
|
|
|
|
#endif /* _GAUDOUT_H */
|
|
|
|
/** @} */
|
|
|
|
|