public
Description: Library to access lastfm via it's 2.0 api
Homepage: https://launchpad.net/liblastfm
Clone URL: git://github.com/LCID-Fire/liblastfm.git
Click here to lend your support to: liblastfm and make a donation at www.pledgie.com !
liblastfm / lastfm.h
100644 15 lines (11 sloc) 0.254 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef LASTFM_H_
#define LASTFM_H_
 
#include "authentication.h"
#include "album.h"
#include "artist.h"
 
//
//Before doing anything with the library the init functions have to be called
//
void lastfm_init();
void lastfm_destroy();
 
#endif /*LASTFM_H_*/