mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-03 19:13:24 -05:00
15 lines
160 B
C
15 lines
160 B
C
|
|
||
|
#ifndef __LASTFM_H__
|
||
|
#define __LASTFM_H__
|
||
|
|
||
|
void
|
||
|
lastfm_login(char *path);
|
||
|
|
||
|
int
|
||
|
lastfm_scrobble(int id);
|
||
|
|
||
|
void
|
||
|
lastfm_deinit(void);
|
||
|
|
||
|
#endif /* !__LASTFM_H__ */
|