From 3646945178edbca9ca0e8b57ca69be65992f3f0e Mon Sep 17 00:00:00 2001 From: Jim Saxton Date: Sun, 8 Mar 2020 13:14:45 -0700 Subject: [PATCH] add missing header --- src/MediaPlay.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/MediaPlay.h diff --git a/src/MediaPlay.h b/src/MediaPlay.h new file mode 100644 index 0000000..7ed0c46 --- /dev/null +++ b/src/MediaPlay.h @@ -0,0 +1,11 @@ +/* + * Copyright 2017, Dario Casalinuovo. All rights reserved. + * Distributed under the terms of the MIT License. + */ + +#ifndef _MEDIA_CLIENT_PLAY +#define _MEDIA_CLIENT_PLAY + +int media_play(const char* uri); + +#endif