AppleWin/source/linux/duplicates/AppleWin.cpp

25 lines
425 B
C++
Raw Normal View History

#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;
}