?? scripting.c
字號:
/* General scripting system functionality *//* $Id: scripting.c,v 1.12.6.3 2005/01/29 02:06:28 jonas Exp $ */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include "elinks.h"#include "intl/gettext/libintl.h"#include "modules/module.h"#include "sched/event.h"#include "scripting/scripting.h"/* Backends dynamic area: */#include "scripting/guile/core.h"#include "scripting/lua/lua.h"#include "scripting/perl/perl.h"#include "scripting/ruby/ruby.h"static struct module *scripting_modules[] = {#ifdef CONFIG_LUA &lua_scripting_module,#endif#ifdef CONFIG_GUILE &guile_scripting_module,#endif#ifdef CONFIG_PERL &perl_scripting_module,#endif#ifdef CONFIG_RUBY &ruby_scripting_module,#endif NULL,};struct module scripting_module = struct_module( /* name: */ N_("Scripting"), /* options: */ NULL, /* events: */ NULL, /* submodules: */ scripting_modules, /* data: */ NULL, /* init: */ NULL, /* done: */ NULL);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -