2011-04-13 17:20:48 -04:00
|
|
|
#ifndef _RR_V8_WEAKREF_
|
|
|
|
#define _RR_V8_WEAKREF_
|
|
|
|
|
|
|
|
#include <v8.h>
|
|
|
|
#include "ruby.h"
|
|
|
|
|
|
|
|
struct v8_weakref {
|
|
|
|
v8_weakref(VALUE object);
|
|
|
|
VALUE get();
|
|
|
|
void set(VALUE object);
|
|
|
|
void retain();
|
|
|
|
void release();
|
|
|
|
|
|
|
|
VALUE object_id;
|
|
|
|
v8::Persistent<v8::External> external;
|
|
|
|
};
|
|
|
|
|
2011-04-15 09:43:06 -04:00
|
|
|
void v8_weakref_dispose(v8::Persistent<v8::Value> value, void* weakref);
|
|
|
|
VALUE v8_weakref_finalize(VALUE self, VALUE object_id);
|
|
|
|
VALUE v8_weakref_objectspace();
|
2011-04-13 17:20:48 -04:00
|
|
|
VALUE v8_weakref_nil(VALUE nil, VALUE exception);
|
|
|
|
VALUE v8_weakref_id2ref(VALUE id);
|
|
|
|
|
2011-04-21 14:15:34 -04:00
|
|
|
extern "C" VALUE rb_proc_new(VALUE (*)(ANYARGS/* VALUE yieldarg[, VALUE procarg] */), VALUE);
|
2011-04-19 11:42:57 -04:00
|
|
|
|
2011-04-13 17:20:48 -04:00
|
|
|
#endif
|