matthiasmauch@114: /*
matthiasmauch@114:  *  Copyright (C) 2004 Steve Harris
matthiasmauch@114:  *
matthiasmauch@114:  *  This program is free software; you can redistribute it and/or
matthiasmauch@114:  *  modify it under the terms of the GNU Lesser General Public License
matthiasmauch@114:  *  as published by the Free Software Foundation; either version 2.1
matthiasmauch@114:  *  of the License, or (at your option) any later version.
matthiasmauch@114:  *
matthiasmauch@114:  *  This program is distributed in the hope that it will be useful,
matthiasmauch@114:  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
matthiasmauch@114:  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
matthiasmauch@114:  *  GNU Lesser General Public License for more details.
matthiasmauch@114:  *
matthiasmauch@114:  *  $Id$
matthiasmauch@114:  */
matthiasmauch@114: 
matthiasmauch@114: #ifndef LO_ERRORS_H
matthiasmauch@114: #define LO_ERRORS_H
matthiasmauch@114: 
matthiasmauch@114: #ifdef __cplusplus
matthiasmauch@114: extern "C" {
matthiasmauch@114: #endif
matthiasmauch@114: 
matthiasmauch@114: #define LO_ENOPATH      9901
matthiasmauch@114: #define LO_ENOTYPE      9902
matthiasmauch@114: #define LO_UNKNOWNPROTO 9903
matthiasmauch@114: #define LO_NOPORT       9904
matthiasmauch@114: #define LO_TOOBIG       9905
matthiasmauch@114: #define LO_INT_ERR      9906
matthiasmauch@114: #define LO_EALLOC       9907
matthiasmauch@114: #define LO_EINVALIDPATH 9908
matthiasmauch@114: #define LO_EINVALIDTYPE 9909
matthiasmauch@114: #define LO_EBADTYPE     9910
matthiasmauch@114: #define LO_ESIZE        9911
matthiasmauch@114: #define LO_EINVALIDARG  9912
matthiasmauch@114: #define LO_ETERM        9913
matthiasmauch@114: #define LO_EPAD         9914
matthiasmauch@114: #define LO_EINVALIDBUND 9915
matthiasmauch@114: #define LO_EINVALIDTIME 9916
matthiasmauch@114: 
matthiasmauch@114: #ifdef __cplusplus
matthiasmauch@114: }
matthiasmauch@114: #endif
matthiasmauch@114: 
matthiasmauch@114: #endif