#ifndef SHELLCODE_HPP #define SHELLCODE_HPP #include #include #include #include #include "struc.hpp" struct lxsh_fct { std::string arguments; std::string description; const char* code; std::vector depends_on=std::vector(); }; extern const std::map lxsh_extend_fcts; extern const std::map lxsh_array_fcts; extern const std::map lxsh_allfcts; void add_lxsh_fcts(shmain* sh, std::set fcts); #endif //SHELLCODE_HPP