ElevenMPV/include/utils.h
Joel16 b349fdc45c Press start to close display and keep music playing in background
- Also if an audio file has stopped playing and another audio file exists within the same folder, it will be played after.
2019-04-09 20:18:09 -05:00

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