Sha256: 26cee5831bfaea4bb785e559bbb3e055d80ca06b331958f0851053b0b257e5d0
Contents?: true
Size: 683 Bytes
Versions: 17
Compression:
Stored size: 683 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 "videocapture_wm.h" extern "C" VALUE videocapture_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 videocapture_calc_summ(int x, int y) { return (x+y); }
Version data entries
17 entries across 17 versions & 2 rubygems