aboutsummaryrefslogtreecommitdiff
path: root/osc/packingOSC.h
blob: 49e9e1e50ee029f13f3d871a48b4f43aa3510f74 (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
/* 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 */
#define MAX_BUNDLE_NESTING 32 /* maximum bundle depth */
/* 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