mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-24 15:25:00 +08:00
0a06b9a869
* First cut of the H5 public API documentation. * Added H5Z "bonus track." * Applied Quincey's patch. * Added the missing patches from Quincey's original patch. * H5PL (complete) and basic H5VL API documentation. * Added H5I API docs. * Added H5L API docs. * First installment from Elena's H5T batch. * Second installment of Elena's H5T batch. * Final installment of Elena's H5T batch.
38 lines
1.5 KiB
C
38 lines
1.5 KiB
C
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Copyright by The HDF Group. *
|
|
* 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. *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
/*
|
|
* Programmer: Quincey Koziol
|
|
* Saturday, September 12, 2015
|
|
*
|
|
* Purpose: This file contains declarations which define macros for the
|
|
* H5I package. Including this header means that the source file
|
|
* is part of the H5I package.
|
|
*/
|
|
#ifndef _H5Imodule_H
|
|
#define _H5Imodule_H
|
|
|
|
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
|
* reporting macros.
|
|
*/
|
|
#define H5I_MODULE
|
|
#define H5_MY_PKG H5I
|
|
#define H5_MY_PKG_ERR H5E_ATOM
|
|
#define H5_MY_PKG_INIT NO
|
|
|
|
/**\defgroup H5I H5I
|
|
* \brief Identifier Interface
|
|
* \todo Describe concisely what the functions in this module are about.
|
|
*/
|
|
|
|
#endif /* _H5Imodule_H */
|