aboutsummaryrefslogtreecommitdiff
path: root/osc/packingOSC.h
diff options
context:
space:
mode:
Diffstat (limited to 'osc/packingOSC.h')
-rw-r--r--osc/packingOSC.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/osc/packingOSC.h b/osc/packingOSC.h
index 1900226..a7b831c 100644
--- a/osc/packingOSC.h
+++ b/osc/packingOSC.h
@@ -27,13 +27,10 @@
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;
+ uint32_t seconds;
+ uint32_t fraction;
} OSCTimeTag;
typedef union
@@ -42,4 +39,5 @@ typedef union
float f;
} intfloat32;
-#endif // _PACKINGOSC \ No newline at end of file
+#endif // _PACKINGOSC
+/* end of packingOSC.h */