AppleWin/AppleWin/source/Frame.h
mpohoreski e362633013 New debugger font on by default now
Color console support
(still have a bug with MA1 xxxx, if xxxx has 0x60)
Main Message loop is more 'game' like for debugger cursor timing
2006-07-05 21:23:13 +00:00

28 lines
527 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 ();
LRESULT CALLBACK FrameWndProc (
HWND window,
UINT message,
WPARAM wparam,
LPARAM lparam );