H5_DLL herr_t H5AC_expunge_tag_type_metadata(H5F_t *f, hid_t dxpl_id, haddr_t tag, int type_id, unsigned flags);
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 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 COPYING file, which can be found at the root of the source code       *
 * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases.  *
 * If you do not have access to either file, you may request a copy from     *
 * help@hdfgroup.org.                                                        *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*-------------------------------------------------------------------------
 *
 * Created:     H5ACprivate.h
 *          Jul  9 1997
 *          Robb Matzke <matzke@llnl.gov>
 *
 * Purpose:     Constants and typedefs available to the rest of the
 *          library.
 *
 *-------------------------------------------------------------------------
 */
#ifndef _H5ACprivate_H
#define _H5ACprivate_H
#include "H5ACpublic.h"     /*public prototypes         */
/* Pivate headers needed by this header */
#include "H5private.h"      /* Generic Functions            */
#include "H5Cprivate.h"     /* Cache                */
#include "H5Fprivate.h"     /* File access              */
#include "H5Pprivate.h"     /* Property lists           */
#include "H5SLprivate.h"        /* Skip lists               */
#ifdef H5_METADATA_TRACE_FILE
#define H5AC__TRACE_FILE_ENABLED    1
#else /* H5_METADATA_TRACE_FILE */
#define H5AC__TRACE_FILE_ENABLED    0
#endif /* H5_METADATA_TRACE_FILE */
/* Global metadata tag values */
#define H5AC__INVALID_TAG      (haddr_t)0
#define H5AC__IGNORE_TAG       (haddr_t)1
#define H5AC__COPIED_TAG       (haddr_t)2
#define H5AC__SUPERBLOCK_TAG   (haddr_t)3
#define H5AC__FREESPACE_TAG    (haddr_t)4
#define H5AC__SOHM_TAG         (haddr_t)5
#define H5AC__GLOBALHEAP_TAG   (haddr_t)6