annotate Plugins/General/scrobbler/scrobbler.h @ 1637:5261e37b4d55 trunk

[svn] - fully working CoreAudio plugin, based on the OSS plugin and an incomplete xmms coreaudio plugin (fink)
author nenolod
date Thu, 07 Sep 2006 11:32:59 -0700
parents fc478bfe6fe6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
688
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
1 #ifndef NET_H
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
2 #define NET_H 1
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
3
1236
fc478bfe6fe6 [svn] - disconnect the scrobbler client from metatag logically
nenolod
parents: 688
diff changeset
4 #include "libaudacious/titlestring.h"
fc478bfe6fe6 [svn] - disconnect the scrobbler client from metatag logically
nenolod
parents: 688
diff changeset
5
688
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
6 int sc_idle(GMutex *);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
7 void sc_init(char *, char *);
1236
fc478bfe6fe6 [svn] - disconnect the scrobbler client from metatag logically
nenolod
parents: 688
diff changeset
8 void sc_addentry(GMutex *, TitleInput *, int);
688
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
9 void sc_cleaner(void);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
10 int sc_catch_error(void);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
11 char *sc_fetch_error(void);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
12 void sc_clear_error(void);
cc1969408403 [svn] - add scrobbler support
nenolod
parents:
diff changeset
13 #endif