mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-19 19:33:03 +00:00
84ef622351
Consolidated Save-State & Advanced prop sheets (now all on Advanced) Disable joystick emulation via mouse when mouse interface is enabled Support shift-f9 to cycle backwards through video modes Use DirectInput to get mouse delta (instead of absolute WM_MOUSEMOVE msg) Support Ctrl-Left Mouse Button to show the Windows cursor (otherwise GEOS never allows mouse to leave window) Fix for Blazing Paddles (mouse support)
31 lines
601 B
C
31 lines
601 B
C
#pragma once
|
|
|
|
enum {NOT_ASCII=0, ASCII};
|
|
|
|
// 3D Border
|
|
#define VIEWPORTX 5
|
|
#define VIEWPORTY 5
|
|
|
|
// Win32
|
|
extern HWND g_hFrameWindow;
|
|
extern HDC g_hFrameDC;
|
|
|
|
extern BOOL fullscreen;
|
|
|
|
void FrameCreateWindow ();
|
|
HDC FrameGetDC ();
|
|
HDC FrameGetVideoDC (LPBYTE *,LONG *);
|
|
void FrameRefreshStatus (int);
|
|
void FrameRegisterClass ();
|
|
void FrameReleaseDC ();
|
|
void FrameReleaseVideoDC ();
|
|
void FrameSetCursorPosByMousePos();
|
|
|
|
LRESULT CALLBACK FrameWndProc (
|
|
HWND window,
|
|
UINT message,
|
|
WPARAM wparam,
|
|
LPARAM lparam );
|
|
|
|
extern bool g_bScrollLock_FullSpeed;
|