- added FindCommandDescriptor to SCinter.*

- modified support for dynamic objects
- improved logger system
- various fixes
This commit is contained in:
zolliker
2008-03-03 14:49:15 +00:00
parent 33c0b7dcaa
commit a529bda307
13 changed files with 337 additions and 285 deletions

View File

@ -71,7 +71,6 @@
pRes->parNode = NULL;
pRes->SaveStatus = DefaultSave;
pRes->GetInterface = DefaultGetInterface;
pRes->creationCommand = NULL;
return pRes;
}
/*---------------------------------------------------------------------------*/
@ -157,7 +156,7 @@
{
if(NULL!=self)
{
IFSetOption(self->pKeys,keyName,eltValue);
self->pKeys = IFSetOption(self->pKeys,keyName,eltValue);
}
}
/*--------------------------------------------------------------------------*/
@ -167,7 +166,7 @@
{
return;
}
IFSetOption(self->pKeys,"group",group);
self->pKeys = IFSetOption(self->pKeys,"group",group);
}
/*--------------------------------------------------------------------------*/
void SetDescriptorDescription(pObjectDescriptor self, char *description)
@ -176,7 +175,7 @@
{
return;
}
IFSetOption(self->pKeys,"description", description);
self->pKeys = IFSetOption(self->pKeys,"description", description);
}
/*--------------------------------------------------------------------------*/
char * GetDescriptorKey(pObjectDescriptor self, char *keyName)