I am trying to save the clipboard current value and setting it back later on.
I am using the GetClipboardData()
in order to get whatever is on the clipboard. However, I need to know which data type there is currently in the clipboard in order to call this function.
- Is there a general data type I can use?
- Once I get the data from the clipboard, how would I set it using the
SetClipboardData()
function?