mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
20 lines
435 B
C
20 lines
435 B
C
#pragma once
|
|
|
|
#include "GpClipboardContentsType.h"
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
struct IGpClipboardContents
|
|
{
|
|
virtual GpClipboardContentsType_t GetContentsType() const = 0;
|
|
virtual void Destroy() = 0;
|
|
virtual IGpClipboardContents *Clone() const = 0;
|
|
};
|
|
|
|
struct IGpClipboardContentsText : public IGpClipboardContents
|
|
{
|
|
virtual const uint8_t *GetBytes() const = 0;
|
|
virtual size_t GetSize() const = 0; // In bytes
|
|
};
|