2009-12-07 02:20:16 -05:00
|
|
|
#include "v8_cxt.h"
|
2010-05-12 18:30:53 -04:00
|
|
|
#include "v8_value.h"
|
2009-12-07 09:06:06 -05:00
|
|
|
#include "v8_str.h"
|
2009-12-18 02:48:06 -05:00
|
|
|
#include "v8_obj.h"
|
2010-05-13 20:43:46 -04:00
|
|
|
#include "v8_array.h"
|
2009-12-18 02:48:06 -05:00
|
|
|
#include "v8_msg.h"
|
|
|
|
#include "v8_func.h"
|
2009-12-07 09:06:06 -05:00
|
|
|
#include "v8_script.h"
|
2009-12-11 12:11:05 -05:00
|
|
|
#include "v8_template.h"
|
2010-01-10 04:37:51 -05:00
|
|
|
#include "converters.h"
|
2009-10-08 22:38:26 -04:00
|
|
|
|
2009-11-02 22:03:56 -05:00
|
|
|
#include <stdio.h>
|
2009-10-07 23:35:39 -04:00
|
|
|
|
2009-10-08 20:46:59 -04:00
|
|
|
extern "C" {
|
2009-10-17 23:45:02 -04:00
|
|
|
void Init_v8();
|
2009-10-01 22:17:06 -04:00
|
|
|
}
|
2009-10-08 23:27:41 -04:00
|
|
|
|
2009-10-08 20:46:59 -04:00
|
|
|
extern "C" {
|
2010-05-10 09:28:07 -04:00
|
|
|
void Init_v8() {
|
2010-05-08 13:58:43 -04:00
|
|
|
rr_init_cxt();
|
2010-05-12 18:30:53 -04:00
|
|
|
rr_init_value();
|
2010-05-10 08:56:52 -04:00
|
|
|
rr_init_str();
|
|
|
|
rr_init_script();
|
|
|
|
rr_init_template();
|
|
|
|
rr_init_obj();
|
|
|
|
rr_init_func();
|
2010-05-13 20:43:46 -04:00
|
|
|
rr_init_v8_array();
|
2010-05-10 08:59:48 -04:00
|
|
|
rr_init_msg();
|
2009-10-17 23:45:02 -04:00
|
|
|
}
|
2009-10-08 20:46:59 -04:00
|
|
|
}
|