annotate osx/include/lo/lo_errors.h @ 83:ae30d91d2ffe

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam
date Fri, 07 Feb 2020 11:51:13 +0000
parents fffb975dc0b1
children
rev   line source
matthiasm@27 1 /*
matthiasm@27 2 * Copyright (C) 2004 Steve Harris
matthiasm@27 3 *
matthiasm@27 4 * This program is free software; you can redistribute it and/or
matthiasm@27 5 * modify it under the terms of the GNU Lesser General Public License
matthiasm@27 6 * as published by the Free Software Foundation; either version 2.1
matthiasm@27 7 * of the License, or (at your option) any later version.
matthiasm@27 8 *
matthiasm@27 9 * This program is distributed in the hope that it will be useful,
matthiasm@27 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
matthiasm@27 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
matthiasm@27 12 * GNU Lesser General Public License for more details.
matthiasm@27 13 *
matthiasm@27 14 * $Id$
matthiasm@27 15 */
matthiasm@27 16
matthiasm@27 17 #ifndef LO_ERRORS_H
matthiasm@27 18 #define LO_ERRORS_H
matthiasm@27 19
matthiasm@27 20 #ifdef __cplusplus
matthiasm@27 21 extern "C" {
matthiasm@27 22 #endif
matthiasm@27 23
matthiasm@27 24 #define LO_ENOPATH 9901
matthiasm@27 25 #define LO_ENOTYPE 9902
matthiasm@27 26 #define LO_UNKNOWNPROTO 9903
matthiasm@27 27 #define LO_NOPORT 9904
matthiasm@27 28 #define LO_TOOBIG 9905
matthiasm@27 29 #define LO_INT_ERR 9906
matthiasm@27 30 #define LO_EALLOC 9907
matthiasm@27 31 #define LO_EINVALIDPATH 9908
matthiasm@27 32 #define LO_EINVALIDTYPE 9909
matthiasm@27 33 #define LO_EBADTYPE 9910
matthiasm@27 34 #define LO_ESIZE 9911
matthiasm@27 35 #define LO_EINVALIDARG 9912
matthiasm@27 36 #define LO_ETERM 9913
matthiasm@27 37 #define LO_EPAD 9914
matthiasm@27 38 #define LO_EINVALIDBUND 9915
matthiasm@27 39 #define LO_EINVALIDTIME 9916
matthiasm@27 40
matthiasm@27 41 #ifdef __cplusplus
matthiasm@27 42 }
matthiasm@27 43 #endif
matthiasm@27 44
matthiasm@27 45 #endif