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