You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
280 B
16 lines
280 B
4 years ago
|
|
||
|
#ifndef _STATIC_WAVLIB_H_
|
||
|
#define _STATIC_WAVLIB_H_
|
||
|
|
||
|
#include "avilib/wavlib.h"
|
||
|
void dummy_wavlib(void);
|
||
|
void dummy_wavlib(void) {
|
||
|
WAV wav = NULL;
|
||
|
WAVError err;
|
||
|
|
||
|
wav = wav_open(NULL, WAV_READ, &err);
|
||
|
wav_close(wav);
|
||
|
}
|
||
|
|
||
|
#endif // _STATIC_WAVLIB_H_
|