NESe (pronounced "Nessie") is a NES emulator based on the e6502 emulator, also written in C with a focus on speed and portability for use on embedded platforms, especially ARM.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- #ifndef NESE_COMPAT_IMPL_H_
- #define NESE_COMPAT_IMPL_H_
-
-
- #ifdef _WIN32
-
- #include <direct.h>
-
- int mkdir_impl(const char* dir) {
- return _mkdir(dir);
- }
-
- #else // !_WIN32
-
- #include <sys/stat.h>
-
- int mkdir_impl(const char* dir) {
- return mkdir(dir, 0777);
- }
-
- #endif // _WIN32
-
-
- #endif // NESE_COMPAT_IMPL_H_
|