File tree 2 files changed +31
-1
lines changed
2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 36
36
37
37
# Reset this number to 0 on major V8 upgrades.
38
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string' : '-node.0 ' ,
39
+ 'v8_embedder_string' : '-node.1 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change 21
21
// This has to come after windows.h.
22
22
#include < versionhelpers.h> // For IsWindows8OrGreater().
23
23
24
+ // Forward declaration to keep this independent of Win8
25
+ NTSYSAPI
26
+ DWORD
27
+ NTAPI
28
+ RtlAddGrowableFunctionTable (
29
+ _Out_ PVOID* DynamicTable,
30
+ _In_reads_ (MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
31
+ _In_ DWORD EntryCount,
32
+ _In_ DWORD MaximumEntryCount,
33
+ _In_ ULONG_PTR RangeBase,
34
+ _In_ ULONG_PTR RangeEnd
35
+ );
36
+
37
+
38
+ NTSYSAPI
39
+ void
40
+ NTAPI
41
+ RtlGrowFunctionTable (
42
+ _Inout_ PVOID DynamicTable,
43
+ _In_ DWORD NewEntryCount
44
+ );
45
+
46
+
47
+ NTSYSAPI
48
+ void
49
+ NTAPI
50
+ RtlDeleteGrowableFunctionTable (
51
+ _In_ PVOID DynamicTable
52
+ );
53
+
24
54
namespace v8 {
25
55
namespace internal {
26
56
namespace win64_unwindinfo {
You can’t perform that action at this time.
0 commit comments