Initial commit - full huishou project

This commit is contained in:
jiapengyu
2026-07-27 14:07:26 +08:00
commit 60790ad1b3
39127 changed files with 5989265 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
/**
* This code is auto-generated; unless you know what you're doing, do not modify!
**/
#ifndef WRAPPER_H
#define WRAPPER_H
#include <v8.h>
#include <node.h>
#include "nan.h"
using namespace node;
using namespace v8;
class Wrapper : public Nan::ObjectWrap {
public:
static Nan::Persistent<FunctionTemplate> constructor_template;
static void InitializeComponent (v8::Local<v8::Object> target);
void *GetValue();
static v8::Local<v8::Value> New(const void *raw);
private:
Wrapper(void *raw);
static NAN_METHOD(JSNewFunction);
static NAN_METHOD(ToBuffer);
void *raw;
};
#endif