Files
sics/protocol.h
zolliker 4bf0c87daf restructured configuration (ofac.c)
- ofac.c contains now only the command in initialisation function list
- the other functions are moved to sicsutil.c
- moved DoubleTime and the content of access.c to sicsutil.c
- moved some initialisation code from ofac.c to the corresponding modules
2010-01-28 08:14:37 +00:00

37 lines
1.3 KiB
C

/*---------------------------------------------------------------------------
----------------------------------------------------------------------------*/
#ifndef ANSTO_PROTOCOL
#define ANSTO_PROTOCOL
#include <sics.h>
#include <conman.h>
static const int iNumProTags = 2;
static char *pProTags[3] = {
"start",
"finish",
NULL
};
#define esStart -1
#define esFinish -2
/*--------------------- lifecycle -------------------------------------- */
int InstallProtocol(SConnection * pCon, SicsInterp * pSics, void *pData,
int argc, char *argv[]);
void DeleteProtocol(void *pSelf);
void MakeProtocol(void);
/*--------------------- operations --------------------------------------*/
int ProtocolAction(SConnection * pCon, SicsInterp * pSics, void *pData,
int argc, char *argv[]);
/*--------------------- implement protocol sycamore ---------------------*/
int SCWriteSycamore(SConnection * pCon, char *pBuffer, int iOut);
/*--------------------- implement protocol API -----------------------*/
char *GetProtocolName(SConnection * pCon);
int GetProtocolID(SConnection * pCon);
int ProtocolGet(SConnection * pCon, void *pData, char *pProName, int len);
writeFunc GetProtocolWriteFunc(SConnection * pCon);
/*-----------------------------------------------------------------------*/
#endif