Compile RGBMonitor too.
Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
This commit is contained in:
parent
7f2310150b
commit
7ce15903bf
4 changed files with 15 additions and 0 deletions
|
@ -18,6 +18,7 @@ add_library(appleii SHARED
|
|||
ParallelPrinter.cpp
|
||||
MouseInterface.cpp
|
||||
LanguageCard.cpp
|
||||
RGBMonitor.cpp
|
||||
|
||||
linux/data.cpp
|
||||
linux/dummies.cpp
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue