1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00
elinks/src/scripting/ruby/core.h
2005-10-21 09:14:07 +02:00

18 lines
323 B
C

#ifndef EL__SCRIPTING_RUBY_CORE_H
#define EL__SCRIPTING_RUBY_CORE_H
struct module;
struct session;
#include <ruby.h> /* for VALUE */
VALUE erb_module;
void alert_ruby_error(struct session *ses, unsigned char *msg);
void erb_report_error(struct session *ses, int state);
void init_ruby(struct module *module);
#endif