comparison menu.c @ 1244:0a34e31c4fd0

Update Windows build to use mingw-w64 cross compiler rather than Wine
author Michael Pavone <pavone@retrodev.com>
date Sun, 26 Feb 2017 23:18:21 -0800
parents 2eb54e24914e
children 5905593d6828
comparison
equal deleted inserted replaced
1243:50700d370a33 1244:0a34e31c4fd0
109 } 109 }
110 #endif 110 #endif
111 111
112 #ifdef _WIN32 112 #ifdef _WIN32
113 #define localtime_r(a,b) localtime(a) 113 #define localtime_r(a,b) localtime(a)
114 //windows inclues seem not to like certain single letter defines from m68k_internal.h
115 //get rid of them here
116 #undef X
114 #undef N 117 #undef N
115 #undef X 118 #undef Z
119 #undef V
120 #undef C
116 #include <windows.h> 121 #include <windows.h>
117 #endif 122 #endif
118 123
119 uint32_t copy_dir_entry_to_guest(uint32_t dst, m68k_context *m68k, char *name, uint8_t is_dir) 124 uint32_t copy_dir_entry_to_guest(uint32_t dst, m68k_context *m68k, char *name, uint8_t is_dir)
120 { 125 {