This commit is contained in:
dgis 2018-11-21 20:14:06 +00:00
parent afd40ada96
commit a07d8736e1
4 changed files with 14 additions and 12 deletions

View file

@ -28,9 +28,9 @@ add_library( # Sets the name of the library.
# src/main/cpp/debugger.c # src/main/cpp/debugger.c
# src/main/cpp/disasm.c # src/main/cpp/disasm.c
src/main/cpp/dismem.c src/main/cpp/dismem.c
src/main/cpp/display.c -> To rewrite src/main/cpp/display.c #-> To rewrite
src/main/cpp/disrpl.c src/main/cpp/disrpl.c
# src/main/cpp/Emu48.c -> To rewrite # src/main/cpp/Emu48.c #-> To rewrite
src/main/cpp/engine.c src/main/cpp/engine.c
src/main/cpp/external.c src/main/cpp/external.c
src/main/cpp/fetch.c src/main/cpp/fetch.c

View file

@ -9,20 +9,20 @@
#include "win32-layer.h" #include "win32-layer.h"
#include <winsock2.h> //#include <winsock2.h>
#include <windows.h> //#include <windows.h>
#include <tchar.h> //#include <tchar.h>
#include <shellapi.h> //#include <shellapi.h>
#include <commctrl.h> //#include <commctrl.h>
#include <shlobj.h> //#include <shlobj.h>
#include <stdlib.h> #include <stdlib.h>
#include <malloc.h> #include <malloc.h>
#include <stddef.h> #include <stddef.h>
#include <ctype.h> #include <ctype.h>
#include <stdio.h> #include <stdio.h>
#include <direct.h> //#include <direct.h>
#include <conio.h> //#include <conio.h>
#include <crtdbg.h> //#include <crtdbg.h>
#if !defined VERIFY #if !defined VERIFY
#if defined _DEBUG #if defined _DEBUG

View file

@ -10,6 +10,7 @@ typedef signed char BOOL; // deliberately same type as defined in objc
#define MAX_PATH PATH_MAX #define MAX_PATH PATH_MAX
#define INFINITE 0 #define INFINITE 0
typedef unsigned long ULONG;
typedef unsigned long ulong; // ushort is already in types.h typedef unsigned long ulong; // ushort is already in types.h
typedef short SHORT; typedef short SHORT;
typedef uint64_t ULONGLONG; typedef uint64_t ULONGLONG;
@ -48,7 +49,7 @@ typedef struct _RECT {
short top; short top;
short bottom; short bottom;
} RECT; } RECT;
typedef RECT *LPRECT typedef RECT *LPRECT;
typedef BYTE *LPCVOID; typedef BYTE *LPCVOID;
typedef struct _RGBQUAD { typedef struct _RGBQUAD {
BYTE rgbRed; BYTE rgbRed;
@ -407,3 +408,4 @@ extern void _wmakepath(wchar_t _Buffer, wchar_t const* _Drive, wchar_t const* _D
extern BOOL WINAPI GetClientRect(HWND hWnd, LPRECT lpRect); extern BOOL WINAPI GetClientRect(HWND hWnd, LPRECT lpRect);
typedef char *PSZ; typedef char *PSZ;
typedef DWORD COLORREF;