[2] | 1 | /*******************************************************************************
|
---|
| 2 | * *
|
---|
| 3 | * mcfio_Util1.h -- Include file for mcfast initialisation & info i/o layer. *
|
---|
| 4 | * *
|
---|
| 5 | * Copyright (c) 1994 Universities Research Association, Inc. *
|
---|
| 6 | * All rights reserved. *
|
---|
| 7 | * *
|
---|
| 8 | *******************************************************************************/
|
---|
| 9 | void mcfioC_Init(void);
|
---|
| 10 | void mcfioC_Close(int istream);
|
---|
| 11 | void mcfioC_PrintDictionary(void);
|
---|
| 12 | unsigned int mcfioC_InfoNumSream(int *istreams, unsigned int nmax);
|
---|
| 13 | void mcfioC_InfoStreamInt(int istream, int key, int *value);
|
---|
| 14 | void mcfioC_InfoStreamChar(int istream, int key, char *answer, int *lret);
|
---|
| 15 | void mcfioC_InfoEventInt(int istream, int key, int *value);
|
---|
| 16 | void mcfioC_InfoEventChar(int istream, int key, char *answer, int *lret);
|
---|
| 17 | void mcfioC_SetEventInfo(int istream, int key, int *value);
|
---|
| 18 | void mcfioC_Free_FileHeader(mcfxdrFileHeader **p);
|
---|
| 19 | void mcfioC_Free_SeqHeader(mcfxdrSequentialHeader **p);
|
---|
| 20 | void mcfioC_Free_EventHeader(mcfxdrEventHeader **p);
|
---|
| 21 | void mcfioC_Free_EventTable(mcfxdrEventTable **p);
|
---|
| 22 | void mcfioC_FreeStream(mcfStream **stream);
|
---|
| 23 | void mcfioC_InfoBlockChar(int stream, int blk, int key,
|
---|
| 24 | char *answer, int *lret);
|
---|
| 25 | void mcfioC_GetBlockName(int blkId, char *answer);
|
---|