1
mirror of https://github.com/rapid7/metasploit-payloads synced 2025-04-24 10:09:49 +02:00
OJ 123010c76b Add clipboard text get/set functionality
This commit adds the beginnings of clipboard munging support. Getting and
setting of text-based data is supported. Over time, more formats will be
supported.
2013-10-15 23:55:46 +10:00

12 lines
351 B
C

/*!
* @file clipboard.h
* @brief Declarations for clipboard interaction functionality
*/
#ifndef _METERPRETER_SOURCE_EXTENSION_EXTAPI_CLIPBOARD_H
#define _METERPRETER_SOURCE_EXTENSION_EXTAPI_CLIPBOARD_H
DWORD request_clipboard_set_data( Remote *remote, Packet *packet );
DWORD request_clipboard_get_data( Remote *remote, Packet *packet );
#endif