mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-31 21:29:39 +00:00
2d2ba86f4f
* Interface.h: ensure that functions in the interface are not exported by other header files. This is generally harmless, except for the presence of default arguments, in which case the version with default arguments must come first. To avoid the issue, these functions are only ever exported in the Interface.h header file.
34 lines
673 B
C
34 lines
673 B
C
#pragma once
|
|
|
|
// Win32
|
|
extern int g_nViewportCX;
|
|
extern int g_nViewportCY;
|
|
|
|
|
|
// Emulator
|
|
extern bool g_bScrollLock_FullSpeed;
|
|
|
|
|
|
// Prototypes
|
|
void FrameCreateWindow(void);
|
|
HDC FrameGetDC ();
|
|
void FrameReleaseDC ();
|
|
void FrameRegisterClass ();
|
|
int GetViewportScale(void);
|
|
void GetViewportCXCY(int& nViewportCX, int& nViewportCY);
|
|
|
|
bool IsFullScreen(void);
|
|
bool GetFullScreenShowSubunitStatus(void);
|
|
|
|
LRESULT CALLBACK FrameWndProc (
|
|
HWND window,
|
|
UINT message,
|
|
WPARAM wparam,
|
|
LPARAM lparam );
|
|
|
|
int GetFullScreenOffsetX(void);
|
|
int GetFullScreenOffsetY(void);
|
|
|
|
UINT Get3DBorderWidth(void);
|
|
UINT Get3DBorderHeight(void);
|