diff options
| author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
|---|---|---|
| committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
| commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
| tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/replicant/http/HTTPPlaybackService.h | |
| parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
| download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz | |
Initial community commit
Diffstat (limited to 'Src/replicant/http/HTTPPlaybackService.h')
| -rw-r--r-- | Src/replicant/http/HTTPPlaybackService.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Src/replicant/http/HTTPPlaybackService.h b/Src/replicant/http/HTTPPlaybackService.h new file mode 100644 index 00000000..b048ce14 --- /dev/null +++ b/Src/replicant/http/HTTPPlaybackService.h @@ -0,0 +1,16 @@ +#pragma once +#include "player/svc_playback.h" +#include "nx/nxstring.h" +#include "nswasabi/ServiceName.h" + +// {672AF800-F239-40e5-8C87-3B4D305B72B2} +static const GUID http_playback_guid = +{ 0x672af800, 0xf239, 0x40e5, { 0x8c, 0x87, 0x3b, 0x4d, 0x30, 0x5b, 0x72, 0xb2 } }; + +class HTTPPlaybackService : public svc_playback +{ +public: + WASABI_SERVICE_NAME("HTTP Playback Service"); + static GUID GetServiceGUID() { return http_playback_guid; } + int WASABICALL PlaybackService_CreatePlayback(unsigned int pass, nx_uri_t filename, ifc_player *player, ifc_playback **out_playback_object); +};
\ No newline at end of file |
