rob@76
|
1 /*
|
rob@76
|
2 oscpack -- Open Sound Control packet manipulation library
|
rob@76
|
3 http://www.audiomulch.com/~rossb/oscpack
|
rob@76
|
4
|
rob@76
|
5 Copyright (c) 2004-2005 Ross Bencina <rossb@audiomulch.com>
|
rob@76
|
6
|
rob@76
|
7 Permission is hereby granted, free of charge, to any person obtaining
|
rob@76
|
8 a copy of this software and associated documentation files
|
rob@76
|
9 (the "Software"), to deal in the Software without restriction,
|
rob@76
|
10 including without limitation the rights to use, copy, modify, merge,
|
rob@76
|
11 publish, distribute, sublicense, and/or sell copies of the Software,
|
rob@76
|
12 and to permit persons to whom the Software is furnished to do so,
|
rob@76
|
13 subject to the following conditions:
|
rob@76
|
14
|
rob@76
|
15 The above copyright notice and this permission notice shall be
|
rob@76
|
16 included in all copies or substantial portions of the Software.
|
rob@76
|
17
|
rob@76
|
18 Any person wishing to distribute modifications to the Software is
|
rob@76
|
19 requested to send the modifications to the original developer so that
|
rob@76
|
20 they can be incorporated into the canonical version.
|
rob@76
|
21
|
rob@76
|
22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
rob@76
|
23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
rob@76
|
24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
rob@76
|
25 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
|
rob@76
|
26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
rob@76
|
27 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
rob@76
|
28 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
rob@76
|
29 */
|
rob@76
|
30
|
rob@76
|
31 #ifndef INCLUDED_OSCRECEIVETEST_H
|
rob@76
|
32 #define INCLUDED_OSCRECEIVETEST_H
|
rob@76
|
33
|
rob@76
|
34 namespace osc{
|
rob@76
|
35
|
rob@76
|
36 void RunReceiveTest( int port );
|
rob@76
|
37
|
rob@76
|
38 } // namespace osc
|
rob@76
|
39
|
rob@76
|
40 #endif /* INCLUDED_OSCSENDTESTS_H */
|