AppleWin/source/linux/state.cpp
Andrea Odetti 7529f5c659 Reworked the entire wondows.h replacement.
wincompat.h is a stripped down version coming from linapple-pie with the bare minimum common types.
Each group of functions in its own file.

Signed-off-by: Andrea Odetti <mariofutire@gmail.com>
2019-11-23 18:17:44 +00:00

40 lines
1.3 KiB
C++

#include "StdAfx.h"
#include "Applewin.h"
#include "SerialComms.h"
#include "Configuration/IPropertySheet.h"
#include "YamlHelper.h"
void KeybLoadSnapshot(YamlLoadHelper&, unsigned int) { }
void SpkrLoadSnapshot(YamlLoadHelper&) { }
void KeybReset() { }
void MB_SaveSnapshot(YamlSaveHelper&, unsigned int) { }
void JoySaveSnapshot(YamlSaveHelper&) { }
void JoyLoadSnapshot(YamlLoadHelper&) { }
bool MB_LoadSnapshot(class YamlLoadHelper&, UINT, UINT) { return true; }
void SetLoadedSaveStateFlag(bool) { }
void KeybSaveSnapshot(YamlSaveHelper&) { }
void SpkrSaveSnapshot(YamlSaveHelper&) { }
bool CSuperSerialCard::LoadSnapshot(YamlLoadHelper&, unsigned int, unsigned int) { return true; }
void MB_Reset() { }
void MB_InitializeForLoadingSnapshot() { }
bool Phasor_LoadSnapshot(class YamlLoadHelper&, UINT, UINT) { return true; }
void Phasor_SaveSnapshot(YamlSaveHelper&, unsigned int) { }
void IPropertySheet::ApplyNewConfig(CConfigNeedingRestart const&, CConfigNeedingRestart const&) { }
void FrameUpdateApple2Type() { }
void CSuperSerialCard::SaveSnapshot(YamlSaveHelper&) { }
std::string MB_GetSnapshotCardName()
{
return "Mockingboard C";
}
std::string CSuperSerialCard::GetSnapshotCardName()
{
return "Super Serial Card";
}
std::string Phasor_GetSnapshotCardName()
{
return "Phasor";
}