Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #pragma once
5 : :
6 : : #include <valent.h>
7 : :
8 : : G_BEGIN_DECLS
9 : :
10 : : #define VALENT_TYPE_MPRIS_PLAYER (vdp_mpris_player_get_type())
11 : :
12 [ + - + - : 18 : G_DECLARE_FINAL_TYPE (VdpMprisPlayer, vdp_mpris_player, VDP, MPRIS_PLAYER, ValentMediaPlayer)
- + ]
13 : :
14 : : VdpMprisPlayer * vdp_mpris_player_new (ValentDevice *player);
15 : : void vdp_mpris_player_handle_packet (VdpMprisPlayer *player,
16 : : JsonNode *packet);
17 : : void vdp_mpris_player_update_art (VdpMprisPlayer *player,
18 : : GFile *file);
19 : : void vdp_mpris_player_update_name (VdpMprisPlayer *player,
20 : : const char *name);
21 : :
22 : : G_END_DECLS
23 : :
|