pihelper-c/PiHelper/pihelper.h
William Brawner b88fba9644 Initial commit
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.
2019-12-30 14:18:57 -06:00

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