The app is technically functional

This commit is contained in:
2025-10-10 22:19:39 +10:00
parent a2f2b74228
commit 55499d2d7f
8 changed files with 357 additions and 2 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef _PLAYQUEUE_H
#define _PLAYQUEUE_H
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
int internal_OSSPQ_AppendToEnd(char* id);
char* internal_OSSPQ_PopFromFront();
int internal_OSSPQ_GetItemCount();
#ifdef __cplusplus
}
#endif // __cplusplus
#endif // _PLAYQUEUE_H