mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-04-06 01:16:37 +02:00
16 lines
452 B
C
Executable File
16 lines
452 B
C
Executable File
/*!
|
|
* @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
|