ocarina/include/libsaria/libsaria.h
Bryan Schumaker a975fcc2cc libsaria: Added a current_track() function
This function will generate a Track object based on the current file
stored by the audio.  I then pass this object to to provided function so
the UI can be updated.
2011-10-28 15:33:17 -04:00

15 lines
197 B
C++

#ifndef LIBSARIA_H
#define LIBSARIA_H
#include <libsaria/track.h>
namespace libsaria
{
void init(int, char **);
void quit();
void current_track(void (*)(Track &));
}
#endif /* LIBSARIA_H */