2020-06-24 08:34:01 +01:00
|
|
|
#include "StdAfx.h"
|
|
|
|
|
|
|
|
#include "Common.h"
|
|
|
|
#include "Configuration/IPropertySheet.h"
|
2020-07-06 19:29:18 +01:00
|
|
|
#include "Configuration/PropertySheetHelper.h"
|
2020-06-24 08:34:01 +01:00
|
|
|
|
2020-07-06 19:29:18 +01:00
|
|
|
void IPropertySheet::ApplyNewConfig(CConfigNeedingRestart const & newConfig, CConfigNeedingRestart const & oldConfig)
|
2020-06-24 08:34:01 +01:00
|
|
|
{
|
2020-07-06 19:29:18 +01:00
|
|
|
CPropertySheetHelper helper;
|
|
|
|
helper.ApplyNewConfig(newConfig, oldConfig);
|
2020-06-24 08:34:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
UINT IPropertySheet::GetTheFreezesF8Rom(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void IPropertySheet::ConfigSaveApple2Type(eApple2Type apple2Type)
|
|
|
|
{
|
|
|
|
}
|
2020-07-06 19:29:18 +01:00
|
|
|
|
|
|
|
void IPropertySheet::SetTheFreezesF8Rom(UINT uValue)
|
|
|
|
{
|
|
|
|
}
|