11cb0ef41Sopenharmony_ci#ifndef SRC_NODE_SEA_H_ 21cb0ef41Sopenharmony_ci#define SRC_NODE_SEA_H_ 31cb0ef41Sopenharmony_ci 41cb0ef41Sopenharmony_ci#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS 51cb0ef41Sopenharmony_ci 61cb0ef41Sopenharmony_ci#if !defined(DISABLE_SINGLE_EXECUTABLE_APPLICATION) 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ci#include <cinttypes> 91cb0ef41Sopenharmony_ci#include <tuple> 101cb0ef41Sopenharmony_ci 111cb0ef41Sopenharmony_cinamespace node { 121cb0ef41Sopenharmony_cinamespace sea { 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_cibool IsSingleExecutable(); 151cb0ef41Sopenharmony_cistd::tuple<int, char**> FixupArgsForSEA(int argc, char** argv); 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_ci} // namespace sea 181cb0ef41Sopenharmony_ci} // namespace node 191cb0ef41Sopenharmony_ci 201cb0ef41Sopenharmony_ci#endif // !defined(DISABLE_SINGLE_EXECUTABLE_APPLICATION) 211cb0ef41Sopenharmony_ci 221cb0ef41Sopenharmony_ci#endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS 231cb0ef41Sopenharmony_ci 241cb0ef41Sopenharmony_ci#endif // SRC_NODE_SEA_H_ 25