blob: f2e0d1c821e3d33a015a9fb4da751999f7cb16c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "ruby.h"
#define init(n) {void Init_##n(VALUE m); Init_##n(m);}
void
Init_console(void)
{
VALUE mBug = rb_define_module("Bug");
VALUE m = rb_define_module_under(mBug, "Win32");
TEST_INIT_FUNCS(init);
}
|