blob: 19002260a10e8f402bab65ca0978cf366ca215fb (
plain)
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
|
/* packingOSC.h */
#ifndef _PACKINGOSC
#include "m_pd.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#ifdef _WIN32
#include <winsock2.h>
#include <sys/timeb.h>
#else
#include <sys/types.h>
#include <netinet/in.h>
#include <ctype.h>
#include <sys/time.h>
#endif /* _WIN32 */
/* Declarations */
#ifdef WIN32
typedef unsigned __int64 osc_time_t;
#else
typedef unsigned long long osc_time_t;
#endif
#define MAX_MESG 65536 /* same as MAX_UDP_PACKET */
/* The maximum depth of bundles within bundles within bundles within...
This is the size of a static array. If you exceed this limit you'll
get an error message. */
#define MAX_BUNDLE_NESTING 32
/* You may have to redefine this typedef if ints on your system
aren't 4 bytes. */
typedef unsigned int uint4;
typedef struct
{
uint4 seconds;
uint4 fraction;
} OSCTimeTag;
typedef union
{
int i;
float f;
} intfloat32;
#endif // _PACKINGOSC
|