Merge pull request #484 from geo-stark/master

Add GetClipboardImage for drm platform.
This commit is contained in:
Milan Nikolic 2025-01-09 18:28:33 +01:00 committed by GitHub
commit 6dbba4f81a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -510,6 +510,16 @@ const char *GetClipboardText(void)
return NULL; return NULL;
} }
// Get clipboard image
Image GetClipboardImage(void)
{
Image image = { 0 };
TRACELOG(LOG_WARNING, "GetClipboardImage() not implemented on target platform");
return image;
}
// Show mouse cursor // Show mouse cursor
void ShowCursor(void) void ShowCursor(void)
{ {