mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
Can't do this on Xbox
This commit is contained in:
parent
58787e6d89
commit
e4210f5b00
1 changed files with 8 additions and 1 deletions
|
@ -24,12 +24,17 @@
|
|||
#include <ctype.h>
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef _XBOX
|
||||
#include <windows.h>
|
||||
#endif
|
||||
#include <direct.h>
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
#ifdef _WIN32
|
||||
#ifndef _XBOX
|
||||
|
||||
#if defined(_WIN32)
|
||||
size_t read_stdin(char *buf, size_t size)
|
||||
{
|
||||
DWORD i;
|
||||
|
@ -134,3 +139,5 @@ size_t read_stdin(char *buf, size_t size)
|
|||
return has_read;
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue