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.
19 lines
330 B
19 lines
330 B
#ifndef __VIDEO_H
|
|
#define __VIDEO_H
|
|
|
|
void VideoInit( char * path, int chapters );
|
|
void VideoSetPauseDelay( unsigned int milliseconds );
|
|
|
|
void PowerOn();
|
|
void PowerOff();
|
|
void Play();
|
|
void Pause();
|
|
void Unpause();
|
|
int SeekToChapter( unsigned int chapter );
|
|
void Stop();
|
|
|
|
int GetChapter();
|
|
int IsPowered();
|
|
int IsPlaying();
|
|
|
|
#endif
|
|
|