libmpdclient
2.7
|
00001 /* libmpdclient 00002 (c) 2003-2010 The Music Player Daemon Project 00003 This project's homepage is: http://www.musicpd.org 00004 00005 Redistribution and use in source and binary forms, with or without 00006 modification, are permitted provided that the following conditions 00007 are met: 00008 00009 - Redistributions of source code must retain the above copyright 00010 notice, this list of conditions and the following disclaimer. 00011 00012 - Redistributions in binary form must reproduce the above copyright 00013 notice, this list of conditions and the following disclaimer in the 00014 documentation and/or other materials provided with the distribution. 00015 00016 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00017 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00018 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 00019 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR 00020 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00021 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00022 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00023 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00024 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00025 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00026 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00027 */ 00028 00038 #ifndef MPD_SETTINGS_H 00039 #define MPD_SETTINGS_H 00040 00041 #include <stdbool.h> 00042 00048 struct mpd_settings; 00049 00050 #ifdef __cplusplus 00051 extern "C" { 00052 #endif 00053 00072 struct mpd_settings * 00073 mpd_settings_new(const char *host, unsigned port, unsigned timeout_ms, 00074 const char *reserved, const char *password); 00075 00079 void 00080 mpd_settings_free(struct mpd_settings *settings); 00081 00085 const char * 00086 mpd_settings_get_host(const struct mpd_settings *settings); 00087 00091 unsigned 00092 mpd_settings_get_port(const struct mpd_settings *settings); 00093 00097 unsigned 00098 mpd_settings_get_timeout_ms(const struct mpd_settings *settings); 00099 00103 const char * 00104 mpd_settings_get_password(const struct mpd_settings *settings); 00105 00106 #ifdef __cplusplus 00107 } 00108 #endif 00109 00110 #endif