/* packingOSC.h */ #ifndef _PACKINGOSC #include "m_pd.h" #include #include #include #ifdef _WIN32 #include #include #else #include #include #include #include #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 typedef struct { uint32_t seconds; uint32_t fraction; } OSCTimeTag; typedef union { int i; float f; } intfloat32; #endif // _PACKINGOSC /* end of packingOSC.h */