1 /*
2  *  (c) 2004 Iowa State University
3  *      see the LICENSE file in the top level directory
4  */
5 
6 #ifndef __MYFILES__
7 #define __MYFILES__
8 #ifndef __BFILE__
9 #include "BFiles.h"
10 #endif
11 #ifndef __MyTypes__
12 #include "MyTypes.h"
13 #endif
14 
15 void OpenFile(void);
16 BufferFile * OpenDatFile(void);
17 long LocateKeyWord(const char *Buffer, const char * KeyWord, long length, long bytecount);
18 long ParseGLogLine(BufferFile * Buffer, Frame * lFrame, long numExpected, long Type, float *maxsize);
19 long ParseCartLine(char *Line, long *atomtype, CPoint3D *coord, CPoint3D *offset, long Mode);
20 long SetAtomType(const unsigned char *TestLabel);
21 
22 #endif
23