PATH: //opt/alt/ruby33/include/ruby/internal
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 abi.h
↓
X
📄 anyargs.h
↓
X
📁 arithmetic/
X
📄 arithmetic.h
↓
X
📄 assume.h
↓
X
📁 attr/
X
📄 cast.h
↓
X
📁 compiler_is/
X
📄 compiler_is.h
↓
X
📄 compiler_since.h
↓
X
📄 config.h
↓
X
📄 constant_p.h
↓
X
📁 core/
X
📄 core.h
↓
X
📄 ctype.h
↓
X
📄 dllexport.h
↓
X
📄 dosish.h
↓
X
📁 encoding/
X
📄 error.h
↓
X
📄 eval.h
↓
X
📄 event.h
↓
X
📄 fl_type.h
↓
X
📄 gc.h
↓
X
📄 glob.h
↓
X
📄 globals.h
↓
X
📁 has/
X
📁 intern/
X
📄 interpreter.h
↓
X
📄 iterator.h
↓
X
📄 memory.h
↓
X
📄 method.h
↓
X
📄 module.h
↓
X
📄 newobj.h
↓
X
📄 scan_args.h
↓
X
📄 special_consts.h
↓
X
📄 static_assert.h
↓
X
📄 stdalign.h
↓
X
📄 stdbool.h
↓
X
📄 symbol.h
↓
X
📄 value.h
↓
X
📄 value_type.h
↓
X
📄 variable.h
↓
X
📄 warning_push.h
↓
X
📄 xmalloc.h
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: abi.h
#ifndef RUBY_ABI_H #define RUBY_ABI_H #ifdef RUBY_ABI_VERSION /* should match the definition in config.h */ /* This number represents Ruby's ABI version. * * In development Ruby, it should be bumped every time an ABI incompatible * change is introduced. This will force other developers to rebuild extension * gems. * * The following cases are considered as ABI incompatible changes: * - Changing any data structures. * - Changing macros or inline functions causing a change in behavior. * - Deprecating or removing function declarations. * * The following cases are NOT considered as ABI incompatible changes: * - Any changes that does not involve the header files in the `include` * directory. * - Adding macros, inline functions, or function declarations. * - Backwards compatible refactors. * - Editing comments. * * In released versions of Ruby, this number is not defined since teeny * versions of Ruby should guarantee ABI compatibility. */ #define RUBY_ABI_VERSION 0 /* Windows does not support weak symbols so ruby_abi_version will not exist * in the shared library. */ #if defined(HAVE_FUNC_WEAK) && !defined(_WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) # define RUBY_DLN_CHECK_ABI #endif #endif /* RUBY_ABI_VERSION */ #ifdef RUBY_DLN_CHECK_ABI # ifdef __cplusplus extern "C" { # endif RUBY_FUNC_EXPORTED unsigned long long __attribute__((weak)) ruby_abi_version(void) { # ifdef RUBY_ABI_VERSION return RUBY_ABI_VERSION; # else return 0; # endif } # ifdef __cplusplus } # endif #endif #endif
SIMPAN PERUBAHAN