mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
31 lines
609 B
C
31 lines
609 B
C
/*
|
|
** struct.h - Struct class
|
|
**
|
|
** See Copyright Notice in mruby.h
|
|
*/
|
|
|
|
#ifndef MRUBY_STRUCT_H
|
|
#define MRUBY_STRUCT_H
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct RStruct {
|
|
struct RBasic basic;
|
|
long len;
|
|
mrb_value *ptr;
|
|
};
|
|
#define RSTRUCT(st) ((struct RStruct*)((st).value.p))
|
|
#define RSTRUCT_LEN(st) ((int)(RSTRUCT(st)->len))
|
|
#define RSTRUCT_PTR(st) (RSTRUCT(st)->ptr)
|
|
|
|
mrb_value mrb_yield_values(int n, ...);
|
|
mrb_value mrb_mod_module_eval(mrb_state *mrb, int argc, mrb_value *argv, mrb_value mod);
|
|
|
|
#if defined(__cplusplus)
|
|
} /* extern "C" { */
|
|
#endif
|
|
|
|
#endif /* MRUBY_STRUCT_H */
|