AppleWin/source/Frame.h

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