Sha256: 790f6337ba50ea648aeb4def61661c8672016b6e30db01727c94a3ea5b13faf5
Contents?: true
Size: 698 Bytes
Versions: 14
Compression:
Stored size: 698 Bytes
Contents
#include <common/RhodesApp.h> #include <logging/RhoLogConf.h> #include <stdlib.h> #include <windows.h> #include <commctrl.h> #include <RhoNativeViewManager.h> #include "rubyext/WebView.h" #include "ruby/ext/rho/rhoruby.h" #include "rhoconnect-client_wm.h" extern "C" VALUE rhoconnect-client_native_process_string(const char* str) { const char block[] = "<WM>"; char* buf = NULL; buf = (char*)malloc(strlen(str) + strlen(block)*2 + 1); strcpy(buf, block); strcat(buf, str); strcat(buf, block); VALUE result = rho_ruby_create_string(buf); free(buf); return result; } extern "C" int rhoconnect-client_calc_summ(int x, int y) { return (x+y); }
Version data entries
14 entries across 14 versions & 1 rubygems