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
589 B
23 lines
589 B
#include <node_api.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, NULL, NULL));
|
|
|
|
napi_value obj;
|
|
NAPI_CALL(env, napi_create_object(env, &obj));
|
|
|
|
NAPI_CALL(env, napi_set_named_property(env, obj, "msg", args[0]));
|
|
|
|
return obj;
|
|
}
|
|
|
|
napi_value Init(napi_env env, napi_value exports) {
|
|
NAPI_CALL(env,
|
|
napi_create_function(env, "exports", -1, CreateObject, NULL, &exports));
|
|
return exports;
|
|
}
|
|
|
|
NAPI_MODULE(NODE_GYP_MODULE_NAME, Init)
|
|
|