;; 732
;; godot_method_bind *(*godot_method_bind_get_method)(const char *p_classname, const char *p_methodname);
(bind-func godot_method_bind_get_method
(lambda (classname:i8* methodname:i8*)
(printf "XTL godot_method_bind\n")
(let ((apicall:[godot_method_bind*,i8*,i8*]* (cast (aref (tref gdnative_api 5) 732))))
(printf "xtl method_bind apicall:%p\n" apicall)
(let ((res (fptrcall apicall classname methodname)))
(printf "xtl method bind res:%p\n" res)
res))))