- Introduced a general Hipadaba table module and modified the four
circle codes to use it. - Added to functions to histmem, getdelay and formattof, to support new HM - Removed obsolete mesure.*
This commit is contained in:
11
sicsobj.h
11
sicsobj.h
@ -9,6 +9,7 @@
|
||||
#define SICSOBJ2_H_
|
||||
#include <stdio.h>
|
||||
#include <hipadaba.h>
|
||||
#include "sics.h"
|
||||
/*======================================================================
|
||||
* Be careful when changing this data structure. It has to be compatible
|
||||
* in its first fields with the SICS object descriptor as defined in
|
||||
@ -43,6 +44,16 @@ int SaveSICSOBJ(void *data, char *name, FILE * fd);
|
||||
*/
|
||||
pSICSOBJ SetupSICSOBJ(SConnection * pCon, SicsInterp * pSics, void *pData,
|
||||
int argc, char *argv[]);
|
||||
/**
|
||||
* runObjectFunction is an internal function for running an existing object
|
||||
* command. The user has to search the node first, prime the parameters,
|
||||
* and then call this command to actually execute.
|
||||
* @param object The object on which the command is executed
|
||||
* @param pCon a connection to use for error reporting
|
||||
* @param commandNode The node to invoke.
|
||||
*/
|
||||
int runObjFunction(pSICSOBJ object, SConnection *pCon, pHdb commandNode);
|
||||
|
||||
/*====================== Interpreter Interface ===========================
|
||||
* InvokeSICSObj is special in that it returns -1 if it cannot handle
|
||||
* the command. This leaves calling code the opportunity to process
|
||||
|
Reference in New Issue
Block a user