Rudiments
resultcodes.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information.
3
4#ifndef RUDIMENTS_RESULT_CODES_H
5#define RUDIMENTS_RESULT_CODES_H
6
7#define RESULT_SUCCESS 1
8#define RESULT_ERROR -1
9#define RESULT_TIMEOUT -2
10#define RESULT_ABORT -3
11#define RESULT_MAX -4
12
13#endif