annotate osx/include/lo/lo_errors.h @ 114:241db1b1eff2

added includes as well
author Matthias Mauch <matthiasmauch@gmail.com>
date Thu, 09 Jan 2014 13:23:08 +0000
parents
children
rev   line source
matthiasmauch@114 1 /*
matthiasmauch@114 2 * Copyright (C) 2004 Steve Harris
matthiasmauch@114 3 *
matthiasmauch@114 4 * This program is free software; you can redistribute it and/or
matthiasmauch@114 5 * modify it under the terms of the GNU Lesser General Public License
matthiasmauch@114 6 * as published by the Free Software Foundation; either version 2.1
matthiasmauch@114 7 * of the License, or (at your option) any later version.
matthiasmauch@114 8 *
matthiasmauch@114 9 * This program is distributed in the hope that it will be useful,
matthiasmauch@114 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
matthiasmauch@114 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
matthiasmauch@114 12 * GNU Lesser General Public License for more details.
matthiasmauch@114 13 *
matthiasmauch@114 14 * $Id$
matthiasmauch@114 15 */
matthiasmauch@114 16
matthiasmauch@114 17 #ifndef LO_ERRORS_H
matthiasmauch@114 18 #define LO_ERRORS_H
matthiasmauch@114 19
matthiasmauch@114 20 #ifdef __cplusplus
matthiasmauch@114 21 extern "C" {
matthiasmauch@114 22 #endif
matthiasmauch@114 23
matthiasmauch@114 24 #define LO_ENOPATH 9901
matthiasmauch@114 25 #define LO_ENOTYPE 9902
matthiasmauch@114 26 #define LO_UNKNOWNPROTO 9903
matthiasmauch@114 27 #define LO_NOPORT 9904
matthiasmauch@114 28 #define LO_TOOBIG 9905
matthiasmauch@114 29 #define LO_INT_ERR 9906
matthiasmauch@114 30 #define LO_EALLOC 9907
matthiasmauch@114 31 #define LO_EINVALIDPATH 9908
matthiasmauch@114 32 #define LO_EINVALIDTYPE 9909
matthiasmauch@114 33 #define LO_EBADTYPE 9910
matthiasmauch@114 34 #define LO_ESIZE 9911
matthiasmauch@114 35 #define LO_EINVALIDARG 9912
matthiasmauch@114 36 #define LO_ETERM 9913
matthiasmauch@114 37 #define LO_EPAD 9914
matthiasmauch@114 38 #define LO_EINVALIDBUND 9915
matthiasmauch@114 39 #define LO_EINVALIDTIME 9916
matthiasmauch@114 40
matthiasmauch@114 41 #ifdef __cplusplus
matthiasmauch@114 42 }
matthiasmauch@114 43 #endif
matthiasmauch@114 44
matthiasmauch@114 45 #endif