summaryrefslogtreecommitdiff
path: root/test/node-api/test_instance_data/test_set_then_ref.c
blob: 9a1b31aeed390ba06858588bebdb58744e6fedb3 (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, false);
}