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