annotate osx/include/lo/lo_throw.h @ 27:fffb975dc0b1

added includes as well
author matthiasm
date Thu, 09 Jan 2014 13:23:08 +0000
parents
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_THROW_H
matthiasm@27 18 #define LO_THROW_H
matthiasm@27 19
matthiasm@27 20 #ifdef __cplusplus
matthiasm@27 21 extern "C" {
matthiasm@27 22 #endif
matthiasm@27 23
matthiasm@27 24 void lo_throw(lo_server s, int errnum, const char *message, const char *path);
matthiasm@27 25
matthiasm@27 26 #ifdef __cplusplus
matthiasm@27 27 }
matthiasm@27 28 #endif
matthiasm@27 29
matthiasm@27 30 #endif