mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
527 B
23 lines
527 B
#include <node_api.h>
|
|
#include "../common.h"
|
|
|
|
napi_ref constructor_;
|
|
|
|
napi_value New(napi_env env, napi_callback_info info) {
|
|
napi_value _this;
|
|
NAPI_CALL(env, napi_get_cb_info(env, info, NULL, NULL, &_this, NULL));
|
|
|
|
return _this;
|
|
}
|
|
|
|
napi_value Init(napi_env env, napi_value exports) {
|
|
napi_value cons;
|
|
NAPI_CALL(env, napi_define_class(
|
|
env, "MyObject_Extra", 8, New, NULL, 0, NULL, &cons));
|
|
|
|
NAPI_CALL(env,
|
|
napi_create_reference(env, cons, 1, &constructor_));
|
|
return cons;
|
|
}
|
|
|
|
NAPI_MODULE(addon, Init)
|
|
|