]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/hwinfo/init_message.h
Kleiner netter neuer Versuch.
[people/pmueller/ipfire-2.x.git] / src / hwinfo / init_message.h
CommitLineData
a6316ce4
MT
1#define MESSAGE_BUFFER 1024
2#define KEY 8024;
3#define PID_FILE "/var/run/hwscand.pid"
4
5// WARNING NEEDS TO BE <= 9
6#define NR_COMMANDS 7
7// WARNING NEEDS TO BE <= 9
8static const char *command_args[] = { "block", "partition", "usb", "firewire", "pci", "pcmcia", "bluetooth" };
9static const int command_with_device[] = { 1, 1, 0, 0, 0, 0, 0 };
10
11typedef struct msgbuf {
12 long mtype;
13 char mtext[MESSAGE_BUFFER+1];
14} message;
15
16#define DEBUG 0
17