1 #ifndef SRC_NODE_SEA_H_ 2 #define SRC_NODE_SEA_H_ 3 4 #if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS 5 6 #if !defined(DISABLE_SINGLE_EXECUTABLE_APPLICATION) 7 8 #include <cinttypes> 9 #include <tuple> 10 11 namespace node { 12 namespace sea { 13 14 bool IsSingleExecutable(); 15 std::tuple<int, char**> FixupArgsForSEA(int argc, char** argv); 16 17 } // namespace sea 18 } // namespace node 19 20 #endif // !defined(DISABLE_SINGLE_EXECUTABLE_APPLICATION) 21 22 #endif // defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS 23 24 #endif // SRC_NODE_SEA_H_ 25