Hello, I have a function in a shared library (self-written) where I have a vector<double>
as a return type. Now, how would I organize the ccall
in order to get a `Array{Float64} in Julia.
I cannot figure it out on my own. Any help would be great. Thanks.
I tried:
ccall((:func_name, "path/to/file.so"), Ptr{Cdouble}, ())
But thid does not work and troughs a SegFault.