39 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1.1 KiB
			
		
	
	
	
		
			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 SHELL_COMMON_NODE_INCLUDES_H_
 | 
						|
#define SHELL_COMMON_NODE_INCLUDES_H_
 | 
						|
 | 
						|
// Include common headers for using node APIs.
 | 
						|
 | 
						|
#ifdef NODE_SHARED_MODE
 | 
						|
#define BUILDING_NODE_EXTENSION
 | 
						|
#endif
 | 
						|
 | 
						|
#undef debug_string    // This is defined in macOS SDK in AssertMacros.h.
 | 
						|
#undef require_string  // This is defined in macOS SDK in AssertMacros.h.
 | 
						|
 | 
						|
#include "electron/push_and_undef_node_defines.h"
 | 
						|
 | 
						|
#include "env-inl.h"
 | 
						|
#include "env.h"
 | 
						|
#include "node.h"
 | 
						|
#include "node_buffer.h"
 | 
						|
#include "node_errors.h"
 | 
						|
#include "node_internals.h"
 | 
						|
#include "node_native_module_env.h"
 | 
						|
#include "node_options-inl.h"
 | 
						|
#include "node_options.h"
 | 
						|
#include "node_platform.h"
 | 
						|
#include "tracing/agent.h"
 | 
						|
 | 
						|
#include "electron/pop_node_defines.h"
 | 
						|
 | 
						|
// Alternative to NODE_MODULE_CONTEXT_AWARE_X.
 | 
						|
// Allows to explicitly register builtin modules instead of using
 | 
						|
// __attribute__((constructor)).
 | 
						|
#define NODE_LINKED_MODULE_CONTEXT_AWARE(modname, regfunc) \
 | 
						|
  NODE_MODULE_CONTEXT_AWARE_CPP(modname, regfunc, nullptr, NM_F_LINKED)
 | 
						|
 | 
						|
#endif  // SHELL_COMMON_NODE_INCLUDES_H_
 |