annotate src/liblo-0.26/lo/lo_errors.h @ 57:e56993504470

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