Files
sics/nxdata.h
koennecke 91d4af0541 - Adapted indenation to new agreed upon system
- Added support for second generation scriptcontext based counter
2009-02-13 09:00:03 +00:00

30 lines
805 B
C

/*-------------------------------------------------------------------------
N X D A T A
Some routines for handling Nexus data file writing.
Mark Koennecke, April 1997
copyright: see implementation file.
--------------------------------------------------------------------------*/
#ifndef SICSNXDATA
#define SICSNXDATA
char *SNXMakeFileName(SicsInterp * pSics, SConnection * pCon);
NXhandle SNXStartFile(SConnection * pCon, SicsInterp * pSics);
int SNXStartEntry(NXhandle Nfil, int iNew, SicsInterp * pSics);
void SNXFormatTime(char *pBuffer, int iBufLen);
int SNFinishFile(NXhandle Nfil);
int SNMakeDMC(SConnection * pCon, SicsInterp * pSics);
int SNStoreDMC(SConnection * pCon, SicsInterp * pSics, void *pData,
int argc, char *argv[]);
#endif