Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
alt-nodejs14 /
root /
usr /
include /
node /
Delete
Unzip
Name
Size
Permission
Date
Action
cppgc
[ DIR ]
drwxr-xr-x
2026-09-04 11:57
libplatform
[ DIR ]
drwxr-xr-x
2026-09-04 11:57
uv
[ DIR ]
drwxr-xr-x
2026-09-04 11:57
common.gypi
19.2
KB
-rw-r--r--
2026-08-22 00:48
config.gypi
19.26
KB
-rw-r--r--
2026-08-22 00:48
js_native_api.h
28.22
KB
-rw-r--r--
2026-08-22 00:48
js_native_api_types.h
4.33
KB
-rw-r--r--
2026-08-22 00:48
node.h
46.83
KB
-rw-r--r--
2026-08-22 00:48
node_api.h
11.51
KB
-rw-r--r--
2026-08-22 00:48
node_api_types.h
1.62
KB
-rw-r--r--
2026-08-22 00:48
node_buffer.h
3.6
KB
-rw-r--r--
2026-08-22 00:48
node_object_wrap.h
3.78
KB
-rw-r--r--
2026-08-22 00:48
node_version.h
3.69
KB
-rw-r--r--
2026-08-22 00:48
uv.h
65.42
KB
-rw-r--r--
2026-08-22 00:48
v8-fast-api-calls.h
13.56
KB
-rw-r--r--
2026-08-22 00:48
v8-internal.h
15.46
KB
-rw-r--r--
2026-08-22 00:48
v8-platform.h
19.22
KB
-rw-r--r--
2026-08-22 00:48
v8-profiler.h
32.93
KB
-rw-r--r--
2026-08-22 00:48
v8-util.h
19.58
KB
-rw-r--r--
2026-08-22 00:48
v8-value-serializer-version.h
648
B
-rw-r--r--
2026-08-22 00:48
v8-version-string.h
1.13
KB
-rw-r--r--
2026-08-22 00:48
v8-version.h
772
B
-rw-r--r--
2026-08-22 00:48
v8-wasm-trap-handler-posix.h
1.18
KB
-rw-r--r--
2026-08-22 00:48
v8-wasm-trap-handler-win.h
1.01
KB
-rw-r--r--
2026-08-22 00:48
v8.h
394.64
KB
-rw-r--r--
2026-08-22 00:48
v8config.h
14.94
KB
-rw-r--r--
2026-08-22 00:48
Save
Rename
// Copyright 2018 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_WASM_TRAP_HANDLER_WIN_H_ #define V8_WASM_TRAP_HANDLER_WIN_H_ #include <windows.h> #include "v8config.h" // NOLINT(build/include_directory) namespace v8 { /** * This function determines whether a memory access violation has been an * out-of-bounds memory access in WebAssembly. If so, it will modify the * exception parameter and add a return address where the execution can continue * after the exception handling, and return true. Otherwise the return value * will be false. * * The parameter to this function corresponds to the one passed to a Windows * vectored exception handler. Use this function only on Windows. * * \param exception An EXCEPTION_POINTERS* as provided to the exception handler. */ V8_EXPORT bool TryHandleWebAssemblyTrapWindows(EXCEPTION_POINTERS* exception); } // namespace v8 #endif // V8_WASM_TRAP_HANDLER_WIN_H_