5
私は、私はこの機能のchar *
void InsertCodeBarWrapper(const FunctionCallbackInfo<Value>& args){
Isolate* isolate = args.GetIsolate();
Local<Function> cb = Local<Function>::Cast(args[1]);
Local<String> bar = args[0]->ToString();
const unsigned argc = 1;
Local<Value> argv[argc] = { CSGPCommander::InsertCodeBar(bar) };
cb->Call(isolate->GetCurrentContext()->Global(), argc, argv);
}
に持っている私のノードのアドオンでDLL
static COMMANDERDLL_API int InsertCodeBar(const char* pszBuffer);
でこの機能を持っている私は、ノード-GYPをコンパイルしようとすると、リターンエラー:「から、引数1を変換することはできません 'V8 ::ローカル'
'のconstのchar *' へのconst char型へのV8 ::文字列を変換する方法*
?