This function closes the clipboard.
BOOL CloseClipboard( void )
Returns TRUE for success.
EX1
int CloseClipboard_ex1() { if(OpenClipboard(NULL)) { EmptyClipboard(); CloseClipboard(); } return 1; }
This function closes the clipboard When the window has finished examining or changing the clipboard, close the clipboard by calling CloseClipboard. This enables other windows to access the clipboard. Do not place an object on the clipboard after calling CloseClipboard.
OpenClipboard
origin.h