/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF. The full HDF copyright notice, including * * terms governing use, modification, and redistribution, is contained in * * the files COPYING and Copyright.html. COPYING can be found at the root * * of the source code distribution tree; Copyright.html can be found at * * http://hdfgroup.org/products/hdf4/doc/Copyright.html. If you do not have * * access to either file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* $Id: dfstubs.h 6036 2014-01-20 17:28:01Z acheng $ */ /* ** FILE ** dfstubs.h ** PURPOSE ** Header file for "dfstubs.c" HDF 3.1 emulation using new routines ** from "hfile.c". ** AUTHOR ** Doug Ilg */ #ifndef DFSTUBS_H /* avoid re-inclusion */ #define DFSTUBS_H /* This is the master HDF driver (taking the place of df.c), so... */ #define DFMASTER #undef PERM_OUT /* used to "comment out" code */ #include "df.h" #undef DFMASTER #if !defined(__GNUC__) & !defined(CONVEX) #include #endif /* !__GNUC__ & !CONVEX */ #define DFACC_APPEND 8 #define DFEL_ABSENT 0 #define DFEL_RESIDENT 1 #define DFSRCH_OLD 0 #define DFSRCH_NEW 1 PRIVATE int32 DFid = 0; PRIVATE int32 DFaid = 0; PRIVATE int DFaccmode = 0; PRIVATE int DFelaccmode = 0; PRIVATE uint16 search_tag = 0; PRIVATE uint16 search_ref = 0; PRIVATE int search_stat = DFSRCH_NEW; PRIVATE int32 search_aid = 0; PRIVATE int DFelstat = DFEL_ABSENT; PRIVATE int32 DFelsize = 0; PRIVATE int32 DFelseekpos = 0; PRIVATE uint16 acc_tag = 0; PRIVATE uint16 acc_ref = 0; PRIVATE char *DFelement = NULL; #if defined c_plusplus || defined __cplusplus extern "C" { #endif /* c_plusplus || __cplusplus */ /* prototypes for internal routines */ PRIVATE int DFIclearacc (void); PRIVATE int DFIcheck (DF * dfile); #if defined c_plusplus || defined __cplusplus } #endif /* c_plusplus || __cplusplus */ #endif /* DFSTUBS_H */