From 860ae9a3158f0e9fbf723b98e6f85c0bcadc35b1 Mon Sep 17 00:00:00 2001 From: mjjo Date: Sat, 20 Jul 2013 23:23:07 +0000 Subject: [PATCH] --- HookMsg/Clipboard.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 HookMsg/Clipboard.h diff --git a/HookMsg/Clipboard.h b/HookMsg/Clipboard.h new file mode 100644 index 0000000..9608afe --- /dev/null +++ b/HookMsg/Clipboard.h @@ -0,0 +1,29 @@ +// CClipboard Class +// ---------------- +// Written by David Terracino +// +// This code is released into the public domain, because +// it's silly easy. If you want to use and expand it, go +// ahead; fine by me. If you do expand this class's +// functionality, please consider sending it back up to +// the MFC Programmer's Sourcebook at www.codeguru.com. +// +// And as always, please give credit where credit is +// due. Don't remove my name from the source. +/////////////////////////////////////////////////////////////////////////////// +// Modified by Hans Dietrich hdietrich2@hotmail.com +/////////////////////////////////////////////////////////////////////////////// + +#ifndef CCLIPBOARD_H +#define CCLIPBOARD_H + +class CClipboard +{ +public: + static CString GetText(); + static BOOL GetText(LPSTR lpszBuffer, int nBufSize); + static DWORD GetTextLength(); + static BOOL SetText(LPCTSTR lpszBuffer); +}; + +#endif \ No newline at end of file