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 / liblastfm.c
100644 13 lines (10 sloc) 0.147 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "lastfm.h"
#include "communication.h"
 
void lastfm_init()
{
communication_init();
}
 
void lastfm_destroy()
{
communication_destroy();
}