diff options
author | Refael Ackermann <refack@gmail.com> | 2019-05-22 11:47:16 -0400 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2021-10-02 08:41:01 +0200 |
commit | 774011b674bdc91e754c58a241129e009e997b4d (patch) | |
tree | 8aea85d5c992285ea46c5a1d2c59cc60f9278905 /deps/v8/src | |
parent | a8d4b0c6f0851982e83bebb26a8001c3087ec068 (diff) | |
download | node-new-774011b674bdc91e754c58a241129e009e997b4d.tar.gz |
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>
Diffstat (limited to 'deps/v8/src')
-rw-r--r-- | deps/v8/src/diagnostics/unwinding-info-win64.cc | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/deps/v8/src/diagnostics/unwinding-info-win64.cc b/deps/v8/src/diagnostics/unwinding-info-win64.cc index d50767421a..2a0cf4ff02 100644 --- a/deps/v8/src/diagnostics/unwinding-info-win64.cc +++ b/deps/v8/src/diagnostics/unwinding-info-win64.cc @@ -22,6 +22,36 @@ // This has to come after windows.h. #include <versionhelpers.h> // For IsWindows8OrGreater(). +// 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 { |