mirror of https://github.com/nodejs/node.git
deps: V8: forward declaration of `Rtl*FunctionTable`
This should be semver-patch since actual invocation is version conditional. PR-URL: https://github.com/nodejs/node/pull/32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>pull/34338/head
parent
34d8c07988
commit
5682e6eed7
|
@ -36,7 +36,7 @@
|
|||
|
||||
# Reset this number to 0 on major V8 upgrades.
|
||||
# Increment by one for each non-official patch applied to deps/v8.
|
||||
'v8_embedder_string': '-node.3',
|
||||
'v8_embedder_string': '-node.4',
|
||||
|
||||
##### V8 defaults for Node.js #####
|
||||
|
||||
|
|
|
@ -16,6 +16,37 @@
|
|||
#error "Unsupported OS"
|
||||
#endif // V8_OS_WIN_X64
|
||||
|
||||
// Forward declaration to keep this independent of Win8
|
||||
NTSYSAPI
|
||||
DWORD
|
||||
NTAPI
|
||||
RtlAddGrowableFunctionTable(
|
||||
_Out_ PVOID* DynamicTable,
|
||||
_In_reads_(MaximumEntryCount) PRUNTIME_FUNCTION FunctionTable,
|
||||
_In_ DWORD EntryCount,
|
||||
_In_ DWORD MaximumEntryCount,
|
||||
_In_ ULONG_PTR RangeBase,
|
||||
_In_ ULONG_PTR RangeEnd
|
||||
);
|
||||
|
||||
|
||||
NTSYSAPI
|
||||
void
|
||||
NTAPI
|
||||
RtlGrowFunctionTable(
|
||||
_Inout_ PVOID DynamicTable,
|
||||
_In_ DWORD NewEntryCount
|
||||
);
|
||||
|
||||
|
||||
NTSYSAPI
|
||||
void
|
||||
NTAPI
|
||||
RtlDeleteGrowableFunctionTable(
|
||||
_In_ PVOID DynamicTable
|
||||
);
|
||||
|
||||
|
||||
namespace v8 {
|
||||
namespace internal {
|
||||
namespace win64_unwindinfo {
|
||||
|
|
Loading…
Reference in New Issue