diff options
author | Lars-Dominik Braun <PromyLOPh@gmail.com> | 2008-06-22 12:16:31 +0200 |
---|---|---|
committer | Lars-Dominik Braun <PromyLOPh@gmail.com> | 2008-06-22 12:16:31 +0200 |
commit | a3a3898e37944e64a58d412022931496318e6209 (patch) | |
tree | 1591d52be044c60be5d8a49a278f0451ef2366ab /src/settings.h | |
parent | 7758eeaaafb49bb8c2ced598f3a9480978ba8265 (diff) | |
download | pianobar-a3a3898e37944e64a58d412022931496318e6209.tar.gz pianobar-a3a3898e37944e64a58d412022931496318e6209.tar.bz2 pianobar-a3a3898e37944e64a58d412022931496318e6209.zip |
client: last.fm scrobbling implemented
Very very ugly... We should spawn another thread. But for now it's working.
(Though the played times are wrong for me, could be a wardrobe issue...)
Diffstat (limited to 'src/settings.h')
-rw-r--r-- | src/settings.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/settings.h b/src/settings.h index 15b5396..71737f2 100644 --- a/src/settings.h +++ b/src/settings.h @@ -30,6 +30,9 @@ struct BarSettings { char *password; char *controlProxy; /* non-american listeners need this */ curl_proxytype controlProxyType; + char *lastfmUser; + char *lastfmPassword; + char enableScrobbling; }; typedef struct BarSettings BarSettings_t; |