Archived
1
0

move handle in windows only declaration into #ifndef directive

This commit is contained in:
Erick
2022-02-05 01:52:03 +01:00
parent df5059b699
commit b421e5a96b
+6 -4
View File
@@ -29,10 +29,14 @@
#include <conio.h> #include <conio.h>
#endif #endif
#ifndef __UNIX
/* windows only declaration */
HANDLE hStdin = INVALID_HANDLE_VALUE;
#endif
#define TRUE 1 #define TRUE 1
#define FALSE 0 #define FALSE 0
HANDLE hStdin = INVALID_HANDLE_VALUE;
/* memory mapped register tables */ /* memory mapped register tables */
enum mmr { enum mmr {
@@ -148,7 +152,6 @@ int read_image(const char* image_path) {
return 1; return 1;
} }
#ifdef __UNIX #ifdef __UNIX
uint16_t check_key() { uint16_t check_key() {
fd_set readfds; fd_set readfds;
@@ -221,9 +224,8 @@ void mem_read(uint16_t address) {
#endif #endif
/* main loop */
int main(int argc, const char* argv[]) {
int main(int argc, const char* argv[]) {
if(argc < 2) { if(argc < 2) {
printf("usage: [image-file1] ...\n"); printf("usage: [image-file1] ...\n");
exit(2); exit(2);