AppleWin/source/Interface.h
TomCh 3aa5750dcf
Make Video.cpp and WinVideo.cpp into a dependent class hierarchy (PR #898)
. class hierarchy: WinVideo IS_A Video (ie. WinVideo is a subclass of Video)
. GetVideo() singleton instance of WinVideo in AppleWin.cpp, exposed via Interface.h
2020-12-28 16:25:29 +00:00

19 lines
542 B
C

#pragma once
// an AppleWin frontend must provide the implementation of these methods
//
// 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
#include "Video.h"
Video& GetVideo(void);
#include "Configuration/PropertySheet.h"
IPropertySheet& GetPropertySheet(void);
#include "FrameBase.h"
FrameBase& GetFrame(void);