From 498b153847f5a9b8bc68f58a9ebaf0a785c514eb Mon Sep 17 00:00:00 2001 From: Stephen White Date: Tue, 6 Nov 2018 19:28:18 +1100 Subject: [PATCH] Update src/iec_commands.h --- src/iec_commands.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/iec_commands.h b/src/iec_commands.h index 786fc24..e6d6308 100644 --- a/src/iec_commands.h +++ b/src/iec_commands.h @@ -62,6 +62,7 @@ class IEC_Commands POP_TO_ROOT, REFRESH, DEVICEID_CHANGED, + DECIVE_SWITCHED, RESET }; @@ -90,6 +91,8 @@ class IEC_Commands int CreateD64(char* filenameNew, char* ID, bool automount); + void SetDisplayingDevices(bool displayingDevices) { this->displayingDevices = displayingDevices; } + protected: enum ATNSequence { @@ -153,6 +156,7 @@ class IEC_Commands void New(void); void Rename(void); void Scratch(void); + void ChangeDevice(void); void Memory(void); void User(void); @@ -182,6 +186,8 @@ class IEC_Commands const char* starFileName; const char* C128BootSectorName; + + bool displayingDevices; }; #endif