#define H5F_LATEST_ALL_FLAGS            (H5F_LATEST_DATATYPE | H5F_LATEST_DATASPACE | H5F_LATEST_ATTRIBUTE | H5F_LATEST_FILL_MSG | H5F_LATEST_PLINE_MSG | H5F_LATEST_LAYOUT_MSG | H5F_LATEST_NO_MOD_TIME_MSG | H5F_LATEST_STYLE_GROUP | H5F_LATEST_OBJ_HEADER | H5F_LATEST_SUPERBLOCK)
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * Copyright by The HDF Group.                                               *
 * Copyright by the Board of Trustees of the University of Illinois.         *
 * All rights reserved.                                                      *
 *                                                                           *
 * This file is part of HDF5.  The full HDF5 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 the  *
 * root level of an installed copy of the electronic HDF5 document set and   *
 * is linked from the top-level documents page.  It can also be found at     *
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
 * This file contains macros & information for file access
 */
#ifndef _H5Fprivate_H
#define _H5Fprivate_H
/* Include package's public header */
#include "H5Fpublic.h"
/* Public headers needed by this file */
#include "H5FDpublic.h"     /* File drivers             */
/* Private headers needed by this file */
#ifdef H5_HAVE_PARALLEL
#include "H5Pprivate.h"     /* Property lists           */
#endif /* H5_HAVE_PARALLEL */
#include "H5VMprivate.h"        /* Vectors and arrays */
/**************************/
/* Library Private Macros */
/**************************/
/*
 * Encode and decode macros for file meta-data.
 * Currently, all file meta-data is little-endian.
 */
#  define INT16ENCODE(p, i) {                             \
   *(p) = (uint8_t)( (unsigned)(i)   & 0xff); (p)++;              \
   *(p) = (uint8_t)(((unsigned)(i) >> 8) & 0xff); (p)++;              \
#  define UINT16ENCODE(p, i) {                            \
   *(p) = (uint8_t)( (unsigned)(i)   & 0xff); (p)++;              \