comparison osx/include/lo/lo_throw.h @ 114:241db1b1eff2

added includes as well
author Matthias Mauch <matthiasmauch@gmail.com>
date Thu, 09 Jan 2014 13:23:08 +0000
parents
children
comparison
equal deleted inserted replaced
113:61395f486647 114:241db1b1eff2
1 /*
2 * Copyright (C) 2004 Steve Harris
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 2.1
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
13 *
14 * $Id$
15 */
16
17 #ifndef LO_THROW_H
18 #define LO_THROW_H
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 void lo_throw(lo_server s, int errnum, const char *message, const char *path);
25
26 #ifdef __cplusplus
27 }
28 #endif
29
30 #endif