mirror of
https://github.com/joel16/ElevenMPV.git
synced 2024-11-23 11:39:43 +00:00
b349fdc45c
- Also if an audio file has stopped playing and another audio file exists within the same folder, it will be played after.
18 lines
503 B
C
18 lines
503 B
C
#ifndef _ELEVENMPV_UTILS_H_
|
|
#define _ELEVENMPV_UTILS_H_
|
|
|
|
void Utils_SetMax(int *set, int value, int max);
|
|
void Utils_SetMin(int *set, int value, int min);
|
|
int Utils_ReadControls(void);
|
|
int Utils_InitAppUtil(void);
|
|
int Utils_TermAppUtil(void);
|
|
int Utils_GetEnterButton(void);
|
|
int Utils_GetCancelButton(void);
|
|
int Utils_Alphasort(const void *p1, const void *p2);
|
|
char *Utils_Basename(const char *filename);
|
|
void Utils_InitPowerTick(void);
|
|
void Utils_LockPower(void);
|
|
void Utils_UnlockPower(void);
|
|
|
|
#endif
|