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 / authentication.h
100644 12 lines (8 sloc) 0.289 kb
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef AUTHENTICATION_H_
#define AUTHENTICATION_H_
 
#include <glib.h>
#include "callback.h"
 
void authenticate(gpointer user_data);
void authentication_get_token(utf8_callback callback, gpointer user_data);
gchar* s_authentication_get_token(GError** error);
 
#endif /*AUTHENTICATION_H_*/