Add stub function for GetClipboardImage() to improve Python binding support
This commit is contained in:
parent
07c5e54f59
commit
15afe89aff
1 changed files with 9 additions and 0 deletions
|
@ -531,6 +531,15 @@ const char *GetClipboardText(void)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
#if defined(SUPPORT_CLIPBOARD_IMAGE)
|
||||
// Get clipboard image
|
||||
Image GetClipboardImage(void)
|
||||
{
|
||||
TRACELOG(LOG_WARNING, "GetClipboardImage() not implemented on target platform");
|
||||
return (Image){NULL,0,0,0,PIXELFORMAT_UNCOMPRESSED_GRAYSCALE};
|
||||
}
|
||||
#endif // SUPPORT_CLIPBOARD_IMAGE
|
||||
|
||||
// Show mouse cursor
|
||||
void ShowCursor(void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue