Unverified Commit 0957ab72 authored by Scott Votaw's avatar Scott Votaw Committed by GitHub
Browse files

Add SWIG byte pointers (#5832)

parent 1ccc7d41
......@@ -15,6 +15,7 @@
* to arrays of size max(int64_t) instead of max(int32_t).
*/
%pointer_functions(uint8_t, bytep)
%pointer_functions(int, intp)
%pointer_functions(long, longp)
%pointer_functions(double, doublep)
......@@ -33,6 +34,7 @@
%pointer_cast(double *, void *, double_to_voidp_ptr)
%pointer_cast(float *, void *, float_to_voidp_ptr)
%pointer_cast(int *, void *, int_to_voidp_ptr)
%pointer_cast(uint8_t *, void *, byte_to_voidp_ptr)
%pointer_cast(int32_t *, void *, int32_t_to_voidp_ptr)
%pointer_cast(int64_t *, void *, int64_t_to_voidp_ptr)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment