mirror of
https://github.com/rapid7/metasploit-payloads
synced 2025-04-24 10:09:49 +02:00

VS 2013 appears to have built-in formatting for C++, so this commit tidies up the code a bit to fit within those rules. It also removes a few warnings which the new compiler has shown.
12 lines
347 B
C
12 lines
347 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
|