/*! * @file python_commands.h * @brief Declarations for the python command functions. */ #ifndef _METERPRETER_SOURCE_EXTENSION_PYTHON_PYTHON_COMMANDS #define _METERPRETER_SOURCE_EXTENSION_PYTHON_PYTHON_COMMANDS #include "../../common/common.h" VOID python_prepare_session(); VOID python_destroy_session(); DWORD request_python_reset(Remote* remote, Packet* packet); DWORD request_python_execute_string(Remote *remote, Packet *packet); #endif