Add GetClipboardImage for android platform.
This commit is contained in:
parent
7a899c5e3a
commit
8490a60f72
1 changed files with 10 additions and 0 deletions
|
@ -517,6 +517,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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue