electron/atom/common/node_includes.h

32 lines
797 B
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// 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.
2015-04-01 13:33:08 +00:00
#define BUILDING_NODE_EXTENSION
2015-01-07 04:53:06 +00:00
#undef ASSERT
#undef CHECK
2014-01-10 10:24:44 +00:00
#undef CHECK_EQ
#undef CHECK_NE
2014-06-28 11:31:23 +00:00
#undef CHECK_GE
#undef CHECK_GT
#undef CHECK_LE
#undef CHECK_LT
#undef DISALLOW_COPY_AND_ASSIGN
2015-01-07 04:53:06 +00:00
#undef NO_RETURN
2014-06-28 11:31:23 +00:00
#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"
#endif // ATOM_COMMON_NODE_INCLUDES_H_