mirror of
https://github.com/holub/mame
synced 2025-10-07 17:27:06 +03:00
No credit
- put a stub for osd_get_clipboard_text into sdlos_os2.c - removed a misleading statement form sdlos_unix.c
This commit is contained in:
parent
5c2e28e845
commit
a7eb1c4097
@ -227,3 +227,16 @@ int osd_setenv(const char *name, const char *value, int overwrite)
|
|||||||
{
|
{
|
||||||
return setenv(name, value, overwrite);
|
return setenv(name, value, overwrite);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//============================================================
|
||||||
|
// osd_get_clipboard_text
|
||||||
|
// - used in MESS
|
||||||
|
//============================================================
|
||||||
|
|
||||||
|
char *osd_get_clipboard_text(void)
|
||||||
|
{
|
||||||
|
char *result = NULL;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
@ -228,7 +228,6 @@ char *osd_get_clipboard_text(void)
|
|||||||
|
|
||||||
//============================================================
|
//============================================================
|
||||||
// MESS specific code below
|
// MESS specific code below
|
||||||
// Disabled for MAME until it compiles
|
|
||||||
//============================================================
|
//============================================================
|
||||||
|
|
||||||
#ifdef MESS
|
#ifdef MESS
|
||||||
|
Loading…
Reference in New Issue
Block a user