11 lines
237 B
C
11 lines
237 B
C
|
#ifndef SELFRUN_H
|
||
|
#define SELFRUN_H
|
||
|
|
||
|
extern int _selfrun_state;
|
||
|
|
||
|
int _selfrun_get_list(char*** fileListPtr, int* fileListLengthPtr);
|
||
|
int _selfrun_free_list(char*** fileListPtr);
|
||
|
void _selfrun_playback_callback();
|
||
|
|
||
|
#endif /* SELFRUN_H */
|