Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorRefael Ackermann <refack@gmail.com>2019-05-22 18:47:16 +0300
committerMichaël Zasso <targos@protonmail.com>2022-04-21 12:54:37 +0300
commit11bccb8771d9a82e32db6dfb55a7211c20d1c8f2 (patch)
treecca3c50749b6789ae6d30e3f2fab25bc4c90de35 /deps
parentd8b4a7edaeff573df18d47277cb94553bf6faf39 (diff)
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')
-rw-r--r--deps/v8/src/diagnostics/unwinding-info-win64.cc30
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 d50767421ab..2a0cf4ff028 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 {