Minor Update:
- WatchdogCore: - Renamed FunctionType TYPE_WATCHDOG -> TYPE_WATCHDOGPING - ApplicationCore: - Prevent overwriting existing Function Type
This commit is contained in:
@@ -52,7 +52,7 @@ CApplication::CApplication( EDebugLevel pLogLevel )
|
|||||||
// Add Core Function Types
|
// Add Core Function Types
|
||||||
//AddFunctionType( TYPE_FUNCTION, NewFunctionCore ); // <-- Can't add virtual function
|
//AddFunctionType( TYPE_FUNCTION, NewFunctionCore ); // <-- Can't add virtual function
|
||||||
AddFunctionType( TYPE_SELECTABLE, NewSelectableCore );
|
AddFunctionType( TYPE_SELECTABLE, NewSelectableCore );
|
||||||
AddFunctionType( TYPE_WATCHDOG, NewWatchdogCore );
|
AddFunctionType( TYPE_WATCHDOGPING, NewWatchdogCore );
|
||||||
AddFunctionType( TYPE_FILE, NewFileCore );
|
AddFunctionType( TYPE_FILE, NewFileCore );
|
||||||
//AddFunctionType( TYPE_DEVICE, NewDeviceCore ); // <-- Can't add virtual function
|
//AddFunctionType( TYPE_DEVICE, NewDeviceCore ); // <-- Can't add virtual function
|
||||||
}
|
}
|
||||||
@@ -381,8 +381,13 @@ bool CApplication::AddFunctionType( const char * Type, FFuncConstructor Construc
|
|||||||
|
|
||||||
// Get end of list
|
// Get end of list
|
||||||
FunctionType = &FirstFunctionType;
|
FunctionType = &FirstFunctionType;
|
||||||
while (*FunctionType)
|
while (*FunctionType && strcasecmp(Type, (*FunctionType)->Name))
|
||||||
FunctionType = &((*FunctionType)->Next);
|
FunctionType = &((*FunctionType)->Next);
|
||||||
|
if (*FunctionType) {
|
||||||
|
if (Log) Log->Message( dlLow, dlLow, "%s: Cannot add FunctionType '%s' - Already exists",
|
||||||
|
ProcessName, Type );
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
// Add new Type
|
// Add new Type
|
||||||
*FunctionType = (TFunctionType*)calloc( sizeof(TFunctionType), 1 );
|
*FunctionType = (TFunctionType*)calloc( sizeof(TFunctionType), 1 );
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
||||||
// Function Constructor
|
// Function Constructor
|
||||||
#define TYPE_WATCHDOG "Watchdog"
|
#define TYPE_WATCHDOGPING "WatchdogPing"
|
||||||
CFunctionCore * NewWatchdogCore( const char * Name );
|
CFunctionCore * NewWatchdogCore( const char * Name );
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
@@ -38,7 +38,7 @@ private:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
// Life Cycle
|
// Life Cycle
|
||||||
CWatchdogCore( const char * pName, const char * pType = TYPE_WATCHDOG );
|
CWatchdogCore( const char * pName, const char * pType = TYPE_WATCHDOGPING );
|
||||||
virtual ~CWatchdogCore();
|
virtual ~CWatchdogCore();
|
||||||
|
|
||||||
// Manually set Configuration
|
// Manually set Configuration
|
||||||
|
|||||||
Reference in New Issue
Block a user