12345678910111213141516171819202122232425262728293031 |
- #ifndef __AUDIOVOXFILE_H__
- #define __AUDIOVOXFILE_H__
- #pragma once
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "audiofile.h"
- typedef struct audiovoxfile_t audiovoxfile_t;
- struct audiovoxfile_t
- {
- audiofile_t base;
- void *adpcm_state;
- };
- apr_status_t audiovoxfile_create(apr_pool_t *pool,
- audioengine_t *engine,
- const char *file,
- int opt,
- audiovoxfile_t **p_voxfile);
- void audiovoxfile_destroy(audiovoxfile_t *voxfile);
- #ifdef __cplusplus
- } // extern "C" {
- #endif
- #endif //__AUDIOVOXFILE_H__
|