mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-12-23 16:30:23 +00:00
28 lines
963 B
C++
28 lines
963 B
C++
#pragma once
|
|
|
|
class CConfigNeedingRestart;
|
|
|
|
__interface IPropertySheet
|
|
{
|
|
void Init(void);
|
|
DWORD GetVolumeMax(void); // TODO:TC: Move out of here
|
|
bool SaveStateSelectImage(HWND hWindow, bool bSave); // TODO:TC: Move out of here
|
|
void ApplyNewConfig(const CConfigNeedingRestart& ConfigNew, const CConfigNeedingRestart& ConfigOld);
|
|
void ConfigSaveApple2Type(eApple2Type apple2Type);
|
|
|
|
UINT GetScrollLockToggle(void);
|
|
void SetScrollLockToggle(UINT uValue);
|
|
UINT GetJoystickCursorControl(void);
|
|
void SetJoystickCursorControl(UINT uValue);
|
|
UINT GetJoystickCenteringControl(void);
|
|
void SetJoystickCenteringControl(UINT uValue);
|
|
UINT GetAutofire(UINT uButton);
|
|
void SetAutofire(UINT uValue);
|
|
UINT GetMouseShowCrosshair(void);
|
|
void SetMouseShowCrosshair(UINT uValue);
|
|
UINT GetMouseRestrictToWindow(void);
|
|
void SetMouseRestrictToWindow(UINT uValue);
|
|
UINT GetTheFreezesF8Rom(void);
|
|
void SetTheFreezesF8Rom(UINT uValue);
|
|
};
|