mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-30 09:03:23 -05:00
33 lines
426 B
C
33 lines
426 B
C
|
|
||
|
#ifndef __SPOTIFY_H__
|
||
|
#define __SPOTIFY_H__
|
||
|
|
||
|
#include "db.h"
|
||
|
#include "evhttp/evhttp.h"
|
||
|
|
||
|
int
|
||
|
spotify_playback_play(struct media_file_info *mfi);
|
||
|
|
||
|
int
|
||
|
spotify_playback_pause(void);
|
||
|
|
||
|
int
|
||
|
spotify_playback_stop(void);
|
||
|
|
||
|
int
|
||
|
spotify_playback_seek(int ms);
|
||
|
|
||
|
int
|
||
|
spotify_audio_get(struct evbuffer *evbuf, int wanted);
|
||
|
|
||
|
void
|
||
|
spotify_login(char *path);
|
||
|
|
||
|
int
|
||
|
spotify_init(void);
|
||
|
|
||
|
void
|
||
|
spotify_deinit(void);
|
||
|
|
||
|
#endif /* !__SPOTIFY_H__ */
|