]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blob - src/hwinfo/init_message.h
Kleiner netter neuer Versuch.
[people/teissler/ipfire-2.x.git] / src / hwinfo / init_message.h
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
8 static const char *command_args[] = { "block", "partition", "usb", "firewire", "pci", "pcmcia", "bluetooth" };
9 static const int command_with_device[] = { 1, 1, 0, 0, 0, 0, 0 };
10
11 typedef struct msgbuf {
12 long mtype;
13 char mtext[MESSAGE_BUFFER+1];
14 } message;
15
16 #define DEBUG 0
17