2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-12-11 15:48:19 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#ifndef ELECTRON_SHELL_COMMON_NODE_INCLUDES_H_
|
|
|
|
#define ELECTRON_SHELL_COMMON_NODE_INCLUDES_H_
|
2013-12-11 15:48:19 +08:00
|
|
|
|
2013-12-15 14:20:28 +08:00
|
|
|
// Include common headers for using node APIs.
|
2013-12-11 15:48:19 +08:00
|
|
|
|
2018-07-11 10:43:52 -07:00
|
|
|
#ifdef NODE_SHARED_MODE
|
2015-04-01 21:33:08 +08:00
|
|
|
#define BUILDING_NODE_EXTENSION
|
2018-07-11 10:43:52 -07:00
|
|
|
#endif
|
2015-04-01 21:33:08 +08:00
|
|
|
|
2019-01-12 06:30:43 +05:30
|
|
|
#undef debug_string // This is defined in macOS SDK in AssertMacros.h.
|
|
|
|
#undef require_string // This is defined in macOS SDK in AssertMacros.h.
|
2020-09-17 16:08:57 -06:00
|
|
|
|
2021-08-19 05:34:15 +09:00
|
|
|
#include "electron/push_and_undef_node_defines.h"
|
|
|
|
|
2018-05-01 16:22:39 -07:00
|
|
|
#include "env-inl.h"
|
|
|
|
#include "env.h"
|
|
|
|
#include "node.h"
|
|
|
|
#include "node_buffer.h"
|
2022-11-10 22:31:20 +01:00
|
|
|
#include "node_builtins.h"
|
2021-05-11 13:57:11 -07:00
|
|
|
#include "node_errors.h"
|
2018-05-01 16:22:39 -07:00
|
|
|
#include "node_internals.h"
|
2022-03-22 17:37:55 -07:00
|
|
|
#include "node_object_wrap.h"
|
2020-02-09 18:42:02 +00:00
|
|
|
#include "node_options-inl.h"
|
2018-09-17 17:48:10 -07:00
|
|
|
#include "node_options.h"
|
2018-05-01 16:22:39 -07:00
|
|
|
#include "node_platform.h"
|
2024-09-27 10:17:06 +09:00
|
|
|
#include "node_report.h"
|
2020-09-17 16:08:57 -06:00
|
|
|
#include "tracing/agent.h"
|
2013-12-11 15:48:19 +08:00
|
|
|
|
2021-08-19 05:34:15 +09:00
|
|
|
#include "electron/pop_node_defines.h"
|
|
|
|
|
2023-02-09 02:31:38 +01:00
|
|
|
// Alternative to NODE_BINDING_CONTEXT_AWARE_X.
|
|
|
|
// Allows to explicitly register builtin bindings instead of using
|
2019-03-08 23:59:52 +05:30
|
|
|
// __attribute__((constructor)).
|
2023-02-09 02:31:38 +01:00
|
|
|
#define NODE_LINKED_BINDING_CONTEXT_AWARE(modname, regfunc) \
|
2023-02-07 15:51:07 -05:00
|
|
|
NODE_BINDING_CONTEXT_AWARE_CPP(modname, regfunc, nullptr, NM_F_LINKED)
|
2019-03-08 23:59:52 +05:30
|
|
|
|
2021-11-22 08:34:31 +01:00
|
|
|
#endif // ELECTRON_SHELL_COMMON_NODE_INCLUDES_H_
|