windows: Define ssize_t and use renamed mphal header

This fixes the build after changes in [66fd3e4] and [3a6b3d2]
pull/1621/head
stijn 2015-11-13 17:43:10 +01:00 zatwierdzone przez Paul Sokolovsky
rodzic 863d4cd862
commit 5be60d6929
2 zmienionych plików z 8 dodań i 1 usunięć

Wyświetl plik

@ -196,6 +196,13 @@ extern const struct _mp_obj_module_t mp_module_time;
#define PATH_MAX MICROPY_ALLOC_PATH_MAX
#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG)
#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
#ifdef _WIN64
#define SSIZE_MAX _I64_MAX
typedef __int64 ssize_t;
#else
#define SSIZE_MAX _I32_MAX
typedef int ssize_t;
#endif
// Put static/global variables in sections with a known name

Wyświetl plik

@ -25,7 +25,7 @@
*/
#include "sleep.h"
#include "unix/unix_mphal.h"
#include "unix/mphalport.h"
#define MICROPY_HAL_HAS_VT100 (0)