/****************************************************************************
 * Copyright (C) 2004 Leonid Zolotarev
 *
 * Licensed under the terms of the BSD license, see file COPYING
 * for details.
 *
 * GTK ACX Tool.
 *
 * Options.
 *
 * $Id: gacxopt.h,v 1.2 2004/09/10 21:36:10 leoz Exp $
 ***************************************************************************/

#ifndef __GACXOPT_H__
#define __GACXOPT_H__

/***************************************************************************/

#include <gtk/gtk.h>

/***************************************************************************/

typedef struct gacx_options {
	gint   o_bandwidth;
	gint   o_delay;
	gint   o_rawdata;
	gint   o_timeout;
	gint   o_verbose;
	gchar* o_iface_name;
} gacx_options;

/***************************************************************************/

extern gacx_options _gacx_options;

/***************************************************************************/

void gacx_options_initialize ();
void gacx_options_finalize   ();
void gacx_options_correct    ();
void gacx_options_trace      ();

/***************************************************************************/

#endif /* __GACXOPT_H__ */


syntax highlighted by Code2HTML, v. 0.9.1