summaryrefslogtreecommitdiff
path: root/frontends/windows/clipboard.h
Commit message (Collapse)AuthorAgeFilesLines
* Declare global variables as extern in headersMichael Forney2019-06-301-1/+1
| | | | | | | Otherwise, each source file that includes the header will create a new definition, which are usually merged together by the linker. Multiple definitions of an object is not allowed in ISO C.
* implement windows clipboard functionalityVincent Sanders2019-05-091-0/+27
This allows clipboard to operate (cut, copy, paste and delete) in the win32 front end. The clipboard is set and read in windows unicode mode and then converted to/from utf-8 for the browser core.