diff options
Diffstat (limited to 'src/mac.h')
-rw-r--r-- | src/mac.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -9,6 +9,8 @@ #import <Cocoa/Cocoa.h> +#include <mach/mach_time.h> + #include <stdint.h> @interface PuglWrapperView : NSView<NSTextInputClient> @@ -25,8 +27,9 @@ @end struct PuglWorldInternalsImpl { - NSApplication* app; - NSAutoreleasePool* autoreleasePool; + NSApplication* app; + NSAutoreleasePool* autoreleasePool; + struct mach_timebase_info timebaseInfo; }; struct PuglInternalsImpl { |