view src/cdaudio-ng/configure.h @ 3182:631d217913e0

alsa-ng: Fix arithmetic overflow on 32-bit systems.
author John Lindgren <john.lindgren@tds.net>
date Fri, 12 Jun 2009 09:17:09 -0400
parents fb2856249629
children
line wrap: on
line source

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

typedef struct cdng_cfg_t {

	gboolean	use_dae;
	gboolean	use_cdtext;
	gboolean	use_cddb;
	gboolean	debug;
	gchar		*device;
	gchar		*cddb_server;
	gchar		*cddb_path;
	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_t;


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

#endif	// _CDNG_CONFIGURE_H