mirror of
https://github.com/joel16/CMFileManager-PSP.git
synced 2024-11-23 11:49:51 +00:00
audio/mutex header: Minor consistency changes
This commit is contained in:
parent
cf7454758a
commit
c21d474626
@ -8,7 +8,7 @@
|
||||
extern bool playing, paused;
|
||||
|
||||
typedef struct {
|
||||
bool has_meta;
|
||||
bool has_meta = false;
|
||||
std::string title;
|
||||
std::string album;
|
||||
std::string artist;
|
||||
|
@ -9,9 +9,9 @@
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
int sceKernelCreateMutex(const char *name, uint attributes, int initial_count, void* options);
|
||||
int sceKernelCreateMutex(const char *name, uint attributes, int initial_count, void *options);
|
||||
int sceKernelDeleteMutex(int mutexId);
|
||||
int sceKernelLockMutex(int mutexId, int count, uint* timeout);
|
||||
int sceKernelLockMutex(int mutexId, int count, uint *timeout);
|
||||
int sceKernelTryLockMutex(int mutexId, int count);
|
||||
int sceKernelUnlockMutex(int mutexId, int count);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user