mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
332 B
16 lines
332 B
8 years ago
|
#include <node_version.h>
|
||
|
#undef NODE_MODULE_VERSION
|
||
|
#define NODE_MODULE_VERSION 42
|
||
|
#include <node.h>
|
||
|
|
||
|
namespace {
|
||
|
|
||
|
inline void Initialize(v8::Local<v8::Object> exports,
|
||
|
v8::Local<v8::Value> module,
|
||
|
v8::Local<v8::Context> context) {
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
NODE_MODULE_CONTEXT_AWARE(binding, Initialize)
|