aboutsummaryrefslogtreecommitdiff
path: root/Src/gracenote/GracenoteApi.h
diff options
context:
space:
mode:
authorJef <jef@targetspot.com>2024-09-24 08:54:57 -0400
committerJef <jef@targetspot.com>2024-09-24 08:54:57 -0400
commit20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch)
tree12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/gracenote/GracenoteApi.h
parent537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff)
downloadwinamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz
Initial community commit
Diffstat (limited to 'Src/gracenote/GracenoteApi.h')
-rw-r--r--Src/gracenote/GracenoteApi.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/Src/gracenote/GracenoteApi.h b/Src/gracenote/GracenoteApi.h
new file mode 100644
index 00000000..b36ecf16
--- /dev/null
+++ b/Src/gracenote/GracenoteApi.h
@@ -0,0 +1,33 @@
+#ifndef NULLSOFT_GRACENOTE_GRACENOTEAPI_H
+#define NULLSOFT_GRACENOTE_GRACENOTEAPI_H
+
+#include "api_gracenote.h"
+#include "../nu/AutoLock.h"
+
+class GracenoteApi : public api_gracenote
+{
+public:
+ GracenoteApi();
+ ~GracenoteApi();
+ ICDDBControl2 *GetCDDB();
+ ICDDBMusicIDManager3 *GetMusicID(); // TODO: might need to instantiate separate objects because each manager can only have 1 event handler
+ //ICddbPlaylist25Mgr *GetPlaylistManager();
+ //int GetPlaylistManagerWithMLDBManager(ICddbPlaylist25Mgr **playlistMg, ICddbMLDBManager **mldbMgr);
+ int GetPlaylistManager(ICddbPlaylist25Mgr **playlistMg, ICddbMLDBManager **mldbMgr);
+ ICddbMLDBManager *GetMLDBManager();
+ void Close();
+
+ /* Some utility functions */
+ HRESULT CreateFingerprint(ICDDBMusicIDManager *musicID, api_decodefile *decodeApi, ICddbFileInfo *info, const wchar_t *filename, long *killswitch);
+private:
+ bool cddbInitialized, playlistInitialized;
+
+ ICDDBControl2 *pCDDBControl;
+
+ Nullsoft::Utility::LockGuard cddbGuard;
+protected:
+ RECVS_DISPATCH;
+};
+
+extern GracenoteApi gracenoteApi;
+#endif \ No newline at end of file