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
663 B
23 lines
663 B
#include "myobject.h"
|
|
#include "../common.h"
|
|
|
|
napi_value CreateObject(napi_env env, napi_callback_info info) {
|
|
size_t argc = 1;
|
|
napi_value args[1];
|
|
NAPI_CALL(env, napi_get_cb_info(env, info, &argc, args, nullptr, nullptr));
|
|
|
|
napi_value instance;
|
|
NAPI_CALL(env, MyObject::NewInstance(env, args[0], &instance));
|
|
|
|
return instance;
|
|
}
|
|
|
|
void Init(napi_env env, napi_value exports, napi_value module, void* priv) {
|
|
NAPI_CALL_RETURN_VOID(env, MyObject::Init(env));
|
|
|
|
napi_property_descriptor desc =
|
|
DECLARE_NAPI_PROPERTY("exports", CreateObject);
|
|
NAPI_CALL_RETURN_VOID(env, napi_define_properties(env, module, 1, &desc));
|
|
}
|
|
|
|
NAPI_MODULE(addon, Init)
|
|
|