ocarina/include/idle.h
Bryan Schumaker 258875bdb8 libsaria: Move header files out of include/libsaria/
Ocarina no longer has a header file subdirectory so there is no reason
to have a libsaria subdirectory anymore.  Putting header files directly
in the include/ directory is a bit simpler.

Signed-off-by: Bryan Schumaker <bjschuma@gmail.com>
2012-09-12 08:15:31 -04:00

21 lines
263 B
C++

#ifndef LIBSARIA_IDLE_H
#define LIBSARIA_IDLE_H
#include <task.h>
namespace libsaria
{
namespace idle
{
int size();
int run_task();
void queue_task(IdleTask *, bool);
void cancel_all(void *);
float progress();
};
};
#endif /* LIBSARIA_IDLE_H */