2020-11-29 17:30:06 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-12-28 16:25:29 +00:00
|
|
|
// an AppleWin frontend must provide the implementation of these methods
|
2020-12-24 15:08:50 +00:00
|
|
|
//
|
|
|
|
// once this is done,
|
|
|
|
// the core emulator files (i.e. almost all the .cpp directly in Source)
|
|
|
|
// can compile, link and run properly
|
|
|
|
// this does not include the main event loop which is left in the arch specific area
|
|
|
|
// nor the actual rendering of the video buffer to screen
|
|
|
|
|
2020-12-28 16:25:29 +00:00
|
|
|
#include "Video.h"
|
|
|
|
Video& GetVideo(void);
|
|
|
|
|
2020-12-29 21:17:03 +00:00
|
|
|
#include "Configuration/IPropertySheet.h"
|
2020-12-28 16:25:29 +00:00
|
|
|
IPropertySheet& GetPropertySheet(void);
|
2020-12-24 15:08:50 +00:00
|
|
|
|
|
|
|
#include "FrameBase.h"
|
2020-12-28 16:25:29 +00:00
|
|
|
FrameBase& GetFrame(void);
|