Compile RGBMonitor too.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
Andrea Odetti 2019-04-19 20:55:23 +01:00
parent 7f2310150b
commit 7ce15903bf
4 changed files with 15 additions and 0 deletions

View file

@ -18,6 +18,7 @@ add_library(appleii SHARED
ParallelPrinter.cpp
MouseInterface.cpp
LanguageCard.cpp
RGBMonitor.cpp
linux/data.cpp
linux/dummies.cpp

View file

@ -52,6 +52,8 @@ static IPropertySheet * sg = NULL;
IPropertySheet& sg_PropertySheet = *sg;
static double g_fMHz = 1.0; // Affected by Config dialog's speed slider bar
DWORD g_uHalfScanLines = 1; // drop 50% scan lines for a more authentic look
void SetCurrentCLK6502(void)
{
static DWORD dwPrevSpeed = (DWORD) -1;

View file

@ -142,6 +142,11 @@ int g_nAltCharSetOffset = 0; // alternate character set
#define SW_PAGE2 (g_uVideoMode & VF_PAGE2)
#define SW_TEXT (g_uVideoMode & VF_TEXT)
UINT GetFrameBufferWidth(void)
{
return 0;
}
bool VideoGetVblBar(DWORD uExecutedCycles)
{
// get video scanner position

View file

@ -314,6 +314,13 @@ typedef OPENFILENAME OPENFILENAME_NT4;
typedef int LCID;
typedef struct tagRGBQUAD {
BYTE rgbBlue;
BYTE rgbGreen;
BYTE rgbRed;
BYTE rgbReserved;
} RGBQUAD;
#ifdef __cplusplus
}
#endif