mirror of
https://github.com/ARMSX2/ARMSX1.git
synced 2026-08-24 16:53:35 -07:00
28 lines
397 B
C
Executable File
28 lines
397 B
C
Executable File
#include <SDL.h>
|
|
|
|
#ifdef PSVITA_TARGET
|
|
|
|
int SDL_OpenURL(const char* url) {
|
|
(void)url;
|
|
return -1;
|
|
}
|
|
|
|
int SDL_SetClipboardText(const char* text) {
|
|
(void)text;
|
|
return -1;
|
|
}
|
|
|
|
SDL_bool SDL_HasClipboardText(void) {
|
|
return SDL_FALSE;
|
|
}
|
|
|
|
char* SDL_GetClipboardText(void) {
|
|
char* text = (char*)SDL_malloc(1);
|
|
if (text) {
|
|
text[0] = '\0';
|
|
}
|
|
return text;
|
|
}
|
|
|
|
#endif
|