cannam@94
|
1 /*
|
cannam@94
|
2 * Copyright (C) 2004 Steve Harris
|
cannam@94
|
3 *
|
cannam@94
|
4 * This program is free software; you can redistribute it and/or
|
cannam@94
|
5 * modify it under the terms of the GNU Lesser General Public License
|
cannam@94
|
6 * as published by the Free Software Foundation; either version 2.1
|
cannam@94
|
7 * of the License, or (at your option) any later version.
|
cannam@94
|
8 *
|
cannam@94
|
9 * This program is distributed in the hope that it will be useful,
|
cannam@94
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
cannam@94
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
cannam@94
|
12 * GNU Lesser General Public License for more details.
|
cannam@94
|
13 *
|
cannam@94
|
14 * $Id$
|
cannam@94
|
15 */
|
cannam@94
|
16
|
cannam@94
|
17 #ifndef LO_THROW_H
|
cannam@94
|
18 #define LO_THROW_H
|
cannam@94
|
19
|
cannam@94
|
20 #ifdef __cplusplus
|
cannam@94
|
21 extern "C" {
|
cannam@94
|
22 #endif
|
cannam@94
|
23
|
cannam@94
|
24 void lo_throw(lo_server s, int errnum, const char *message, const char *path);
|
cannam@94
|
25
|
cannam@94
|
26 #ifdef __cplusplus
|
cannam@94
|
27 }
|
cannam@94
|
28 #endif
|
cannam@94
|
29
|
cannam@94
|
30 #endif
|