mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-05 01:16:28 +00:00
REVIEWED: GetClipboardImage()
, make symbol available on all platforms
This commit is contained in:
@@ -515,6 +515,16 @@ const char *GetClipboardText(void)
|
||||
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
|
||||
void ShowCursor(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user