AppleWin/AppleWin/source/Frame.h

38 lines
765 B
C
Raw Normal View History

2006-02-25 20:50:29 +00:00
#pragma once
enum {NOT_ASCII=0, ASCII};
// 3D Border
#define VIEWPORTX 5
#define VIEWPORTY 5
2008-08-31 04:31:35 +00:00
// 560 = Double Hi-Res
// 384 = Doule Scan Line
#define FRAMEBUFFER_W 560
#define FRAMEBUFFER_H 384
2006-07-02 09:56:50 +00:00
// Win32
2006-05-14 00:44:38 +00:00
extern HWND g_hFrameWindow;
extern HDC g_hFrameDC;
2006-07-02 09:56:50 +00:00
2006-02-25 20:50:29 +00:00
extern BOOL fullscreen;
void FrameCreateWindow ();
HDC FrameGetDC ();
HDC FrameGetVideoDC (LPBYTE *,LONG *);
void FrameRefreshStatus (int);
void FrameRegisterClass ();
void FrameReleaseDC ();
void FrameReleaseVideoDC ();
void FrameSetCursorPosByMousePos();
extern string PathFilename[2];
LRESULT CALLBACK FrameWndProc (
HWND window,
UINT message,
WPARAM wparam,
LPARAM lparam );
extern bool g_bScrollLock_FullSpeed;
extern int g_nCharsetType;