ocarina/include/audio.h

24 lines
281 B
C++

/*
* Copyright 2013 (c) Anna Schumaker.
*/
#ifndef OCARINA_AUDIO_H
#define OCARINA_AUDIO_H
extern "C" {
#include <gst/gst.h>
}
namespace audio
{
void init(int *, char ***);
bool play();
bool pause();
bool seek_to(double);
bool next();
};
#endif /* OCARINA_AUDIO_H */