📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
voigtlaborg
/
wp-content
/
Name
Size
Perm
Actions
📁
themes
-
0755
🗑️
🏷️
🔒
📄
api.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
goods.php
173.77 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
load.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: timer_wrap-inl.h
#ifndef SRC_TIMER_WRAP_INL_H_ #define SRC_TIMER_WRAP_INL_H_ #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #include "timer_wrap.h" #include <utility> #include "env.h" #include "uv.h" namespace node { template <typename... Args> inline TimerWrap::TimerWrap(Environment* env, Args&&... args) : env_(env), fn_(std::forward<Args>(args)...) { uv_timer_init(env->event_loop(), &timer_); timer_.data = this; } template <typename... Args> inline TimerWrapHandle::TimerWrapHandle(Environment* env, Args&&... args) { timer_ = new TimerWrap(env, std::forward<Args>(args)...); env->AddCleanupHook(CleanupHook, this); } } // namespace node #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS #endif // SRC_TIMER_WRAP_INL_H_
Save