19 lines
215 B
C
19 lines
215 B
C
#ifndef PLAYER_H
|
|
#define PLAYER_H
|
|
|
|
enum PlayerState {
|
|
PLAYER_STOP,
|
|
PLAYER_PLAY,
|
|
PLAYER_PAUSE,
|
|
};
|
|
|
|
extern PlayerState playerState;
|
|
|
|
extern int playerSkip;
|
|
|
|
extern char *stateBuffer;
|
|
|
|
void playerLoop();
|
|
|
|
#endif
|