File: options.h

package info (click to toggle)
wmxmms2 0.6%2Brepack-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 692 kB
  • sloc: ansic: 1,082; sh: 787; makefile: 24
file content (21 lines) | stat: -rw-r--r-- 359 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * wmxmms2
 * Copyright (c)2005 Remy Bosch (remybosch@zonnet.nl)
 * 
 * This software covered by the GPL.  See COPYING file for details.
 *
 * options.h
 *
 */
#ifndef _OPTION_H
#define _OPTION_H
struct varList{
	unsigned int speed;
	char *colour;
	char *ip_address;
};

extern struct varList varoptions;

void optionHandler(int argc, char **argv);
#endif