Move media playback detection to OS namespace

This commit is contained in:
Hyper
2024-12-08 18:00:12 +00:00
parent 26dbd7c697
commit 7b2383e8ad
6 changed files with 95 additions and 77 deletions
+7
View File
@@ -0,0 +1,7 @@
#include <os/media.h>
#include <os/media_detail.h>
bool os::media::IsExternalMediaPlaying()
{
return detail::IsExternalMediaPlaying();
}