[go: up one dir, main page]

Menu

[205fcb]: / lo / lo_macros.h  Maximize  Restore  History

Download this file

94 lines (72 with data), 2.8 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
* Copyright (C) 2004 Steve Harris
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* $Id$
*/
#ifndef LO_MACROS_H
#define LO_MACROS_H
/* macros that have to be defined after function signatures */
#ifdef __cplusplus
extern "C" {
#endif
/* \brief Maximum length of UDP messages in bytes
*/
#define LO_MAX_MSG_SIZE 32768
/* \brief A set of macros to represent different communications transports
*/
#define LO_DEFAULT 0x0
#define LO_UDP 0x1
#define LO_UNIX 0x2
#define LO_TCP 0x4
/* an internal value, ignored in transmission but check against LO_MARKER in the
* argument list. Used to do primitive bounds checking */
# define LO_MARKER_A (void *)0xdeadbeefdeadbeefL
# define LO_MARKER_B (void *)0xf00baa23f00baa23L
#define LO_ARGS_END LO_MARKER_A, LO_MARKER_B
#define lo_message_add_varargs(msg, types, list) \
lo_message_add_varargs_internal(msg, types, list, __FILE__, __LINE__)
#ifdef _MSC_VER
#ifndef USE_ANSI_C
#define USE_ANSI_C
#endif
#endif
#ifdef DLL_EXPORT
#ifndef USE_ANSI_C
#define USE_ANSI_C
#endif
#endif
#ifdef USE_ANSI_C
/* In non-GCC compilers, there is no support for variable-argument
* macros, so provide "internal" vararg functions directly instead. */
int lo_message_add(lo_message msg, const char *types, ...);
int lo_send(lo_address targ, const char *path, const char *types, ...);
int lo_send_timestamped(lo_address targ, lo_timetag ts, const char *path, const char *types, ...);
int lo_send_from(lo_address targ, lo_server from, lo_timetag ts, const char *path, const char *types, ...);
#else // !USE_ANSI_C
#define lo_message_add(msg, types...) \
lo_message_add_internal(msg, __FILE__, __LINE__, types, \
LO_MARKER_A, LO_MARKER_B)
#define lo_send(targ, path, types...) \
lo_send_internal(targ, __FILE__, __LINE__, path, types, \
LO_MARKER_A, LO_MARKER_B)
#define lo_send_timestamped(targ, ts, path, types...) \
lo_send_timestamped_internal(targ, __FILE__, __LINE__, ts, path, \
types, LO_MARKER_A, LO_MARKER_B)
#define lo_send_from(targ, from, ts, path, types...) \
lo_send_from_internal(targ, from, __FILE__, __LINE__, ts, path, \
types, LO_MARKER_A, LO_MARKER_B)
#endif // USE_ANSI_C
#ifdef __cplusplus
}
#endif
#endif