[0001]
[0002]
[0003]
[0004]
[0005]
[0006]
[0007]
[0008]
[0009]
[0010]
[0011]
[0012]
[0013]
[0014]
[0015]
[0016]
[0017]
[0018]
[0019]
[0020]
[0021]
[0022]
[0023]
[0024]
[0025]
[0026]
[0027]
[0028]
[0029]
[0030]
[0031]
[0032]
[0033]
[0034]
[0035]
[0036]
[0037]
[0038]
[0039]
[0040]
[0041]
[0042]
[0043]
[0044]
[0045]
[0046]
[0047]
[0048]
[0049]
[0050]
[0051]
[0052]
[0053]
[0054]
[0055]
[0056]
[0057]
[0058]
[0059]
[0060]
[0061]
[0062]
[0063]
[0064]
[0065]
/*****************************************************************************/
/*
                                   ODS.h


VERSION HISTORY
---------------
23-DEC-1999  MGD  initial; provide support for ODS-2 and ODS-5
*/
/*****************************************************************************/

#ifndef ODS_H_LOADED
#define ODS_H_LOADED 1

/* include the directory parse code */
#define ODS_DIRECT 1
#ifndef ODS_DIRECT
#  if WATCH_MOD
#     define ODS_DIRECT 1
#  else
#     define ODS_DIRECT 0
#  endif
#endif

/* application related */
#include "wasd.h"

/***********************/
/* function prototypes */
/***********************/

int OdsClose (ODS_STRUCT*, REQUEST_AST, unsigned long);
int OdsCopyStructure (ODS_STRUCT*, ODS_STRUCT*);
int OdsCreate (ODS_STRUCT*, char*, int, char*, int,
               int, int, int, int, int, struct FAB*,
               GENERAL_AST, unsigned long);
char* OdsDirectReport (REQUEST_STRUCT*);
int OdsDirectSearch (ODS_STRUCT*);
int OdsFileAcpInfo (ODS_STRUCT*, GENERAL_AST, unsigned long);
void OdsFileAcpInfoRdt (ODS_STRUCT*);
int OdsFileExists (char*, char*);
void OdsFreeTextFile (ODS_STRUCT*);
void OdsNamBlockAst (struct FAB*);
int OdsLoadContent (ODS_STRUCT*, char*);
int OdsLoadDirect (ODS_STRUCT*, char*);
int OdsLoadTextFile (ODS_STRUCT*, char*);
int OdsNameOfDirectoryFile (char*, int, char*, int*);
int OdsOpen (ODS_STRUCT*, char*, int, char*, int,
             int, int, int, GENERAL_AST, unsigned long);
int OdsOpenReadOnly (ODS_STRUCT*, char*, BOOL);
int OdsParse (ODS_STRUCT*, char*, int, char*, int,
              int, GENERAL_AST, unsigned long);
int OdsParseComplete (ODS_STRUCT*);
int OdsParseTerminate (ODS_STRUCT*);
char* OdsParsetextFile (ODS_STRUCT*, char);
int OdsReallyADir (REQUEST_STRUCT*, ODS_STRUCT*);
int OdsSearch (ODS_STRUCT*, GENERAL_AST, unsigned long);
int OdsSearchNoConceal (ODS_STRUCT*, GENERAL_AST, unsigned long);
void OdsStructInit (ODS_STRUCT*, BOOL);
int OdsVolumeStructure (char*);

#endif /* ODS_H_LOADED */

/****************************************************************************/