1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-04-18 00:47:36 -04:00
2005-10-21 09:14:07 +02:00

23 lines
411 B
C

/* Ruby module */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "elinks.h"
#include "main/module.h"
#include "scripting/ruby/core.h"
#include "scripting/ruby/hooks.h"
struct module ruby_scripting_module = struct_module(
/* name: */ "Ruby",
/* options: */ NULL,
/* events: */ ruby_scripting_hooks,
/* submodules: */ NULL,
/* data: */ NULL,
/* init: */ init_ruby,
/* done: */ NULL
);