зеркало из https://github.com/electron/electron.git
39 строки
1003 B
C++
39 строки
1003 B
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ATOM_COMMON_NODE_INCLUDES_H_
|
|
#define ATOM_COMMON_NODE_INCLUDES_H_
|
|
|
|
#include "base/logging.h"
|
|
|
|
// Include common headers for using node APIs.
|
|
|
|
#define BUILDING_NODE_EXTENSION
|
|
|
|
#undef ASSERT
|
|
#undef CHECK
|
|
#undef CHECK_EQ
|
|
#undef CHECK_NE
|
|
#undef CHECK_GE
|
|
#undef CHECK_GT
|
|
#undef CHECK_LE
|
|
#undef CHECK_LT
|
|
#undef DISALLOW_COPY_AND_ASSIGN
|
|
#undef NO_RETURN
|
|
#undef debug_string // This is defined in OS X 10.9 SDK in AssertMacros.h.
|
|
#include "vendor/node/src/env.h"
|
|
#include "vendor/node/src/env-inl.h"
|
|
#include "vendor/node/src/node.h"
|
|
#include "vendor/node/src/node_buffer.h"
|
|
#include "vendor/node/src/node_internals.h"
|
|
|
|
namespace atom {
|
|
// Defined in node_bindings.cc.
|
|
// For renderer it's created in atom_renderer_client.cc.
|
|
// For browser it's created in atom_browser_main_parts.cc.
|
|
extern node::Environment* global_env;
|
|
}
|
|
|
|
#endif // ATOM_COMMON_NODE_INCLUDES_H_
|