File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
32
32
# define WIN32_LEAN_AND_MEAN
33
33
34
- double zend_hrtime_timer_scale = .0 ;
34
+ ZEND_API double zend_hrtime_timer_scale = .0 ;
35
35
36
36
#elif ZEND_HRTIME_PLATFORM_APPLE
37
37
38
38
# include <mach/mach_time.h>
39
39
# include <string.h>
40
- mach_timebase_info_data_t zend_hrtime_timerlib_info = {
40
+ ZEND_API mach_timebase_info_data_t zend_hrtime_timerlib_info = {
41
41
.numer = 0 ,
42
42
.denom = 1 ,
43
43
};
Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ BEGIN_EXTERN_C()
60
60
61
61
#if ZEND_HRTIME_PLATFORM_WINDOWS
62
62
63
- extern double zend_hrtime_timer_scale ;
63
+ ZEND_API extern double zend_hrtime_timer_scale ;
64
64
65
65
#elif ZEND_HRTIME_PLATFORM_APPLE
66
66
67
67
# include <mach/mach_time.h>
68
68
# include <string.h>
69
- extern mach_timebase_info_data_t zend_hrtime_timerlib_info ;
69
+ ZEND_API extern mach_timebase_info_data_t zend_hrtime_timerlib_info ;
70
70
71
71
#endif
72
72
You can’t perform that action at this time.
0 commit comments