Add system clipboard support to Windows

This commit is contained in:
elasota
2020-12-18 00:07:21 -05:00
parent fc043af3a1
commit 83d37a7c94
13 changed files with 508 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
namespace GpClipboardContentsTypes
{
enum GpClipboardContentsType
{
kText,
};
}
typedef GpClipboardContentsTypes::GpClipboardContentsType GpClipboardContentsType_t;