diff options
author | 2016-02-26 13:20:43 +0100 | |
---|---|---|
committer | 2016-02-26 13:20:43 +0100 | |
commit | 4727b0d97f30666b15155765d602c9a2f1f5159f (patch) | |
tree | a1c0ccb666ec3b1fbfc63cbf19f0732e9f71a082 /src/osd/sdl/sdlptty_os2.cpp | |
parent | f79e31489758026c37058b16fa9c968fbf35a8a1 (diff) |
OS/2 can not support SDL2 which is needed for MAME to run (nw)
Diffstat (limited to 'src/osd/sdl/sdlptty_os2.cpp')
-rw-r--r-- | src/osd/sdl/sdlptty_os2.cpp | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/src/osd/sdl/sdlptty_os2.cpp b/src/osd/sdl/sdlptty_os2.cpp deleted file mode 100644 index 763cc4ea437..00000000000 --- a/src/osd/sdl/sdlptty_os2.cpp +++ /dev/null @@ -1,39 +0,0 @@ -// license:BSD-3-Clause -// copyright-holders:Olivier Galibert, R. Belmont -//============================================================ -// -// sdlptty_os2 - SDL psuedo tty access functions -// (OS/2 has no pttys - maybe named pipes?) -// -// SDLMAME by Olivier Galibert and R. Belmont -// -//============================================================ - -#include "sdlfile.h" - -const char *sdlfile_ptty_identifier = ""; - -file_error sdl_open_ptty(const char *path, UINT32 openflags, osd_file **file, UINT64 *filesize) -{ - return FILERR_ACCESS_DENIED; -} - -file_error sdl_read_ptty(osd_file *file, void *buffer, UINT64 offset, UINT32 count, UINT32 *actual) -{ - return FILERR_ACCESS_DENIED; -} - -file_error sdl_write_ptty(osd_file *file, const void *buffer, UINT64 offset, UINT32 count, UINT32 *actual) -{ - return FILERR_ACCESS_DENIED; -} - -file_error sdl_close_ptty(osd_file *file) -{ - return FILERR_ACCESS_DENIED; -} - -file_error sdl_slave_name_ptty(osd_file *file , char *name , size_t name_len) -{ - return FILERR_ACCESS_DENIED; -} |