NetBurner 3.1
serial_extensions.h
1 
2 class fifo_buffer_storage;
3 
4 typedef void (*ExtendedCommand)(int fd, fifo_buffer_storage &rest_of_command);
5 
6 struct CommandElement
7 {
8  const char *CommandText;
9  const char *CommandHelpText;
10  ExtendedCommand pCmd;
11 };
12 
13 // Pass in an array of commands to add, last element should have NULL CommandText
14 extern const CommandElement *pExtendedCommands;