William Brawner
b88fba9644
This code is absolutely horrendous in its current state, with poor error handling (where it's even present) and memory leaks galore. USE AT YOUR OWN RISK. I certainly won't be publishing it anywhere or speaking of it until it's in a much better state.
10 lines
197 B
C
10 lines
197 B
C
#ifndef PIHELPER
|
|
#define PIHELPER
|
|
#include "config.h"
|
|
#include "log.h"
|
|
#include "network.h"
|
|
const int PIHELPER_OK = 0;
|
|
const int PIHELPER_HELP = 1;
|
|
const int PIHELPER_INVALID_COMMANDS = 2;
|
|
#endif
|
|
|