libmpdclient.h | libmpdclient.h | |||
---|---|---|---|---|
skipping to change at line 23 | skipping to change at line 23 | |||
* GNU Lesser General Public License for more details. | * GNU Lesser General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU Lesser General Public | * You should have received a copy of the GNU Lesser General Public | |||
* License along with this program; if not, write to the Free Software | * License along with this program; if not, write to the Free Software | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 US A | |||
*/ | */ | |||
#ifndef LIBMPDCLIENT_H | #ifndef LIBMPDCLIENT_H | |||
#define LIBMPDCLIENT_H | #define LIBMPDCLIENT_H | |||
#include <sys/param.h> | ||||
#include <sys/time.h> | #include <sys/time.h> | |||
#define MPD_BUFFER_MAX_LENGTH 50000 | #define MPD_BUFFER_MAX_LENGTH 50000 | |||
#define MPD_WELCOME_MESSAGE "OK MPD " | #define MPD_WELCOME_MESSAGE "OK MPD " | |||
#define MPD_ERROR_TIMEOUT 10 /* timeout trying to talk to mpd */ | #define MPD_ERROR_TIMEOUT 10 /* timeout trying to talk to mpd */ | |||
#define MPD_ERROR_SYSTEM 11 /* system error */ | #define MPD_ERROR_SYSTEM 11 /* system error */ | |||
#define MPD_ERROR_UNKHOST 12 /* unknown host */ | #define MPD_ERROR_UNKHOST 12 /* unknown host */ | |||
#define MPD_ERROR_CONNPORT 13 /* problems connecting to port on host */ | #define MPD_ERROR_CONNPORT 13 /* problems connecting to port on host */ | |||
#define MPD_ERROR_NOTMPD 14 /* mpd not running on port at host */ | #define MPD_ERROR_NOTMPD 14 /* mpd not running on port at host */ | |||
skipping to change at line 380 | skipping to change at line 379 | |||
void mpd_sendRandomCommand(mpd_Connection * connection, int randomMode); | void mpd_sendRandomCommand(mpd_Connection * connection, int randomMode); | |||
void mpd_sendSetvolCommand(mpd_Connection * connection, int volumeChange); | void mpd_sendSetvolCommand(mpd_Connection * connection, int volumeChange); | |||
/* WARNING: don't use volume command, its depreacted */ | /* WARNING: don't use volume command, its depreacted */ | |||
void mpd_sendVolumeCommand(mpd_Connection * connection, int volumeChange); | void mpd_sendVolumeCommand(mpd_Connection * connection, int volumeChange); | |||
void mpd_sendCrossfadeCommand(mpd_Connection * connection, int seconds); | void mpd_sendCrossfadeCommand(mpd_Connection * connection, int seconds); | |||
int mpd_getCrossfade(mpd_Connection * connection); | ||||
void mpd_sendUpdateCommand(mpd_Connection * connection); | void mpd_sendUpdateCommand(mpd_Connection * connection); | |||
void mpd_sendPasswordCommand(mpd_Connection * connection, const char * pass ); | void mpd_sendPasswordCommand(mpd_Connection * connection, const char * pass ); | |||
/* after executing a command, when your done with it to get its status | /* after executing a command, when your done with it to get its status | |||
* (you want to check connection->error for an error) | * (you want to check connection->error for an error) | |||
*/ | */ | |||
void mpd_finishCommand(mpd_Connection * connection); | void mpd_finishCommand(mpd_Connection * connection); | |||
/* command list stuff, use this to do things like add files very quickly */ | /* command list stuff, use this to do things like add files very quickly */ | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 0 lines changed or added | |||