Merge pull request #476 from Alireza-Ta/android_enhancement

Android Compilation Enhancement
This commit is contained in:
Milan Nikolic 2024-12-17 12:51:49 +01:00 committed by GitHub
commit edb2c107b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 17 additions and 7 deletions

View file

@ -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)
{