diff options
Diffstat (limited to 'watrack_mpd/main.c')
-rwxr-xr-x | watrack_mpd/main.c | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/watrack_mpd/main.c b/watrack_mpd/main.c index b754f8d..2040ca3 100755 --- a/watrack_mpd/main.c +++ b/watrack_mpd/main.c @@ -19,4 +19,42 @@ #include "commonheaders.h"
+LPINITPROC Init()
+{
+}
+LPDEINITPROC DeInit()
+{
+}
+LPCHECKPROC CheckPlayer(HWND wnd, int flags)
+{
+}
+LPGETSTATUSPROC GetStatus()
+{
+}
+LPNAMEPROC GetFileName(HWND wnd, int flags)
+{
+}
+LPINFOPROC GetPlayerInfo(LPSONGINFO Info, int flags)
+{
+}
+LPCOMMANDPROC SendCommand(HWND wnd, int command, int value)
+{
+}
+void RegisterPlayer()
+{
+ struct tPlayerCell player;
+ player.Desc = "MPD desc";
+// player.Check = CheckPlayer(;
+ player.Init = Init();
+ player.DeInit = DeInit();
+ player.GetStatus = GetStatus();
+// player.Command = SendCommand(;
+// player.flags = ;
+// player.GetName = GetFileName(;
+// player.GetInfo = GetPlayerInfo(;
+// player.Icon =
+ player.Notes = _T("123");
+ player.URL = "http:// ?";
+ CallService(MS_WAT_PLAYER, (WPARAM)0, (LPARAM)&player);
+}
|