Sha256: 7bf42b82a4e81a6d307682194849f2d38d445702cc8d134bac9f993c69d993cd
Contents?: true
Size: 803 Bytes
Versions: 4
Compression:
Stored size: 803 Bytes
Contents
/* ----------------------------------------------------------------------------- * Ruby API portion that goes into the runtime * * Customized for wxRuby3. * Copyright (c) 2023 M.J.N. Corino, The Netherlands * * This software is released under the MIT license. * ----------------------------------------------------------------------------- */ #ifdef __cplusplus extern "C" { #endif WXRUBY_EXPORT VALUE SWIG_wxRuby_AppendOutput(VALUE target, VALUE o, int is_void); #ifdef __cplusplus } #endif /* SWIG >= 4.3.0 version */ inline VALUE SWIG_Ruby_AppendOutput(VALUE target, VALUE o, int is_void) { return SWIG_wxRuby_AppendOutput(target, o, is_void); } /* SWIG < 4.3.0 version */ inline VALUE SWIG_Ruby_AppendOutput(VALUE target, VALUE o) { return SWIG_wxRuby_AppendOutput(target, o, -1); }
Version data entries
4 entries across 4 versions & 1 rubygems