view src/cdaudio-ng/configure.h @ 2256:dc92a550179e

cddb may use http instead of cddbp now; the global proxy settings are used if enabled
author Calin Crisan ccrisan@gmail.com
date Thu, 20 Dec 2007 21:44:59 +0200
parents 040827f0b083
children 0824c92b6132
line wrap: on
line source

#ifndef _CDNG_CONFIGURE_H
#define _CDNG_CONFIGURE_H
#include <glib.h>

extern struct cdng_cfg_t {

	gboolean	use_dae;
	gboolean	use_cdtext;
	gboolean	use_cddb;
	gboolean	debug;
	gchar		*device;
	gchar		*cddb_server;
	gint		cddb_port;
	gboolean	cddb_http;
	gint		limitspeed;
	gboolean	use_proxy;
	gchar		*proxy_host;
	gint		proxy_port;
	gchar		*proxy_username;
	gchar		*proxy_password;

} cdng_cfg;


void	configure_create_gui(void);
void	configure_show_gui(void);
gint	pstrcpy(gchar **, const gchar *);

#endif	// _CDNG_CONFIGURE_H