It seems like the number of ticks is stored in a Float64
not a Cint
, so you probably should be using dettime_P = Ref{Float64}()
, instead of dettime_P = Ref{Cint}()
, or something like that.
1 Like
It seems like the number of ticks is stored in a Float64
not a Cint
, so you probably should be using dettime_P = Ref{Float64}()
, instead of dettime_P = Ref{Cint}()
, or something like that.