AppleWin/source/linux/duplicates/AppleWin.cpp
Andrea Odetti 247b51b2ab Integration of GetVideo().
Part 1.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2020-12-28 19:42:04 +00:00

24 lines
425 B
C++

#include "StdAfx.h"
#include "Interface.h"
#include "linux/duplicates/PropertySheet.h"
#include "linux/linuxframe.h"
#include "linux/linuxvideo.h"
IPropertySheet& GetPropertySheet()
{
static CPropertySheet sg_PropertySheet;
return sg_PropertySheet;
}
FrameBase& GetFrame()
{
static LinuxFrame sg_LinuxFrame;
return sg_LinuxFrame;
}
Video& GetVideo()
{
static LinuxVideo sg_LinuxVideo;
return sg_LinuxVideo;
}