Sha256: 41d83ac128d01a6cdf64479d6b6ed817b69f273126bc897d3af494c36ca8d87d
Contents?: true
Size: 521 Bytes
Versions: 17
Compression:
Stored size: 521 Bytes
Contents
#include <ruby.h> #include "ruby/ext/rho/rhoruby.h" #ifdef __cplusplus extern "C" { #endif // declare Ruby registration method generated by SWIG in videocapture_wrap.c extern void Init_VideoCaptureNative(void); // this method executed once on start of program void Init_Videocapture_extension(void) { // execute initialization of Ruby registration (generated by SWIG) Init_VideoCaptureNative(); // You can add some code to this place: rb_require("videocapture"); } #ifdef __cplusplus } //extern "C" #endif
Version data entries
17 entries across 17 versions & 2 rubygems