Important Update:
- Channels (FunctionCore & SelectableBare): - Added state "Standby", allow auto-managed handle to be opened - SelectableCore: - Set default "Persistent" state for sockets based on type - Remove Process() method (no different from SelectableBare - DateTimeCore: - Added BuildDateTimeStr() methods to build date for values - JSONparseCore: - Added error message to file operations
This commit is contained in:
@@ -18,8 +18,8 @@
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
// Enumarate Types
|
||||
typedef enum { CH_off = 0, CH_wait = 1, CH_ready = 2 } EChannelState;
|
||||
const char ChannelStateName[][15] = { "Off", "Waiting", "Ready" };
|
||||
typedef enum { CH_off = 0, CH_standby = 1, CH_wait = 2, CH_ready = 3 } EChannelState;
|
||||
const char ChannelStateName[][15] = { "Off", "Standby", "Waiting", "Ready" };
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user