Need some of Debug.cpp to link now.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2019-12-31 18:34:16 +00:00
parent 0191652565
commit 2d1021c629
5 changed files with 24 additions and 0 deletions

View file

@ -45,6 +45,7 @@ add_library(appleii SHARED
linux/registry.cpp
linux/keyboard.cpp
linux/duplicates/Debug.cpp
linux/duplicates/Video.cpp
linux/duplicates/Mockingboard.cpp
linux/duplicates/Joystick.cpp
@ -65,6 +66,7 @@ target_include_directories(appleii PRIVATE
${YAML_INCLUDE_DIRS}
${MINIZIP_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
Debugger
)
target_link_libraries(appleii PRIVATE

View file

@ -31,6 +31,8 @@ DWORD g_dwCyclesThisFrame = 0;
// but it is not at the moment
bool g_bFullSpeed = true;
AppMode_e g_nAppMode = MODE_LOGO;
HANDLE g_hCustomRomF8 = INVALID_HANDLE_VALUE; // Cmd-line specified custom ROM at $F800..$FFFF
std::string g_sProgramDir; // Directory of where AppleWin executable resides
std::string g_sCurrentDir; // Also Starting Dir. Debugger uses this when load/save

View file

@ -0,0 +1,12 @@
#include "StdAfx.h"
#include "Common.h"
#include "Debug.h"
void DebugReset(void)
{
}
void DebugDisplay ( BOOL bInitDisasm )
{
}

View file

@ -11,3 +11,4 @@
#include "linux/windows/misc.h"
#include "linux/windows/stringcb.h"
#include "linux/windows/strings.h"
#include "linux/windows/gdi.h"

View file

@ -0,0 +1,7 @@
#pragma once
#include "linux/windows/wincompat.h"
typedef int HBRUSH;
typedef int HFONT;
typedef int RECT;