H5_DLL herr_t H5HL_create(H5F_t *f, hid_t dxpl_id, size_t size_hint, haddr_t *addr/*out*/);
 
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 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:     H5HLprivate.h
 *          Jul 16 1997
 *          Robb Matzke <matzke@llnl.gov>
 *
 * Purpose:
 *
 * Modifications:
 *
 *-------------------------------------------------------------------------
 */
#ifndef _H5HLprivate_H
#define _H5HLprivate_H
/* Include package's public header */
#include "H5HLpublic.h"
/* Private headers needed by this file. */
#include "H5private.h"      /* Generic Functions            */
#include "H5ACprivate.h"    /* Metadata cache           */
#include "H5Fprivate.h"     /* File access              */
/*
 * Feature: Define H5HL_DEBUG on the compiler command line if you want to
 *      diagnostic messages from this layer.
 */
#ifdef NDEBUG
#  undef H5HL_DEBUG
#endif
#define H5HL_ALIGN(X)   ((((unsigned)X)+7)&(unsigned)(~0x07)) /*align on 8-byte boundary    */
#define H5HL_SIZEOF_FREE(F)                           \
    H5HL_ALIGN(H5F_SIZEOF_SIZE (F) +    /*ptr to next free block    */    \
           H5F_SIZEOF_SIZE (F)) /*size of this free block   */
/****************************/