summaryrefslogtreecommitdiff
path: root/test/node-api/test_instance_data/test_ref_then_set.c
blob: 10c779d3241e0ef5daab7a7c2ea3cffb78331185 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <stdlib.h>
#include <node_api.h>

napi_value addon_new(napi_env env, napi_value exports, bool ref_first);

// static napi_value
NAPI_MODULE_INIT(/*napi_env env, napi_value exports */) {
  return addon_new(env, exports, true);
}