Clipboard Disabling

Calling OpenClipboard(0) without subsequently calling CloseClipboard() after clipboard operations block clipboard access for other processes (e.g. Windows Explorer). This block persists until the process that opened the clipboard either calls CloseClipboard() or terminates.

This happens because only one process can access the clipboard at a time to avoid conflicts. When OpenClipboard is called, it grants exclusive access to the calling process for clipboard manipulation.