End Google Ads 201810 - BS.net 01 --> I read the Clipboard documentation on MSDN!
My application is listening in!

I'm running a timer to check if any text is stored in the Clipboard!
But it didn't detect any strings I copied from my browser!
However when I copied a md5 hash file, my timer went berserk informing it had found more than 1 clipboard data type.

OpenClipboard(Window);
if (!IsClipboardFormatAvailable(CF_TEXT))
Tu(L"ANSI Text!");
if (!IsClipboardFormatAvailable(CF_UNICODETEXT))
Tu(L"Unicode Text!");
if (!IsClipboardFormatAvailable(CF_OEMTEXT))
Tu(L"OEM");

CloseClipboard();