mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
16 lines
345 B
C
16 lines
345 B
C
//
|
|
// MPDClientWrapper.c
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 1/31/20.
|
|
// Copyright © 2020 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
#include "MPDClientWrapper.h"
|
|
|
|
int
|
|
mpd_send_albumart(struct mpd_connection *connection, const char * uri, const char * offset)
|
|
{
|
|
return mpd_send_command(connection, "albumart", uri, offset, NULL);
|
|
}
|