Sha256: c3867ea1a6309b6db5d1ec846acbd0c9ded1f447ff77e278d66a281a8bc18534
Contents?: true
Size: 632 Bytes
Versions: 38
Compression:
Stored size: 632 Bytes
Contents
/* system.i */ %module Camera %{ #include "ext/rho/rhoruby.h" extern void take_picture(char* callback_url, rho_param *options_hash); extern void choose_picture(char* callback_url); extern VALUE get_camera_info(const char* camera_type); %} %typemap(default) (rho_param *options_hash) { $1 = NULL; } %typemap(in) (rho_param *options_hash) { $1 = rho_param_fromvalue($input); } %typemap(freearg) (rho_param *options_hash) { rho_param_free($1); } extern void take_picture(char* callback_url, rho_param *options_hash ); extern void choose_picture(char* callback_url); extern VALUE get_camera_info(const char* camera_type);
Version data entries
38 entries across 38 versions & 1 rubygems