You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clipboard data is currently limited to ANSI due to CF_TEXT being passed to SetClipboardData(). UTF-8 should be possible using CF_UNICODE and MultiByteToWideChar, however this causes issues with buffering. This could be solved by introducing a second buffer, but other methods should be investigated before doubling the memory footprint.
The text was updated successfully, but these errors were encountered:
Clipboard data is currently limited to ANSI due to
CF_TEXT
being passed toSetClipboardData()
. UTF-8 should be possible usingCF_UNICODE
and MultiByteToWideChar, however this causes issues with buffering. This could be solved by introducing a second buffer, but other methods should be investigated before doubling the memory footprint.The text was updated successfully, but these errors were encountered: