mirror of https://github.com/nodejs/node.git
11 lines
257 B
C
11 lines
257 B
C
|
#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);
|
||
|
}
|