Skip to content

Commit

Permalink
Update IShell.h
Browse files Browse the repository at this point in the history
  • Loading branch information
pwielders authored Nov 10, 2024
1 parent bf3c1a2 commit cb8cf37
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Source/plugins/IShell.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,24 +77,24 @@ namespace PluginHost {
virtual void Unregister(const INotification* sink) = 0;
};

enum class startmode : uint8_t {
UNAVAILABLE,
DEACTIVATED,
ACTIVATED
};

// State of the IPlugin interface associated with this shell.
enum state : uint8_t {
UNAVAILABLE = startmode::UNAVAILABLE,
DEACTIVATED = startmode::DEACTIVATED,
ACTIVATED = startmode::ACTIVATED,
UNAVAILABLE,
DEACTIVATED,
ACTIVATED,
DEACTIVATION,
ACTIVATION,
PRECONDITION,
HIBERNATED,
DESTROYED
};

enum class startmode : uint8_t {
UNAVAILABLE = static_cast<uint8_t>(state::UNAVAILABLE),
DEACTIVATED = static_cast<uint8_t>(state::DEACTIVATED),
ACTIVATED = static_cast<uint8_t>(state::ACTIVATED)
};

enum reason : uint8_t {
REQUESTED,
AUTOMATIC,
Expand Down

0 comments on commit cb8cf37

Please sign in to comment.