1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * 2 * Copyright by The HDF Group. * 3 * All rights reserved. * 4 * * 5 * This file is part of HDF5. The full HDF5 copyright notice, including * 6 * terms governing use, modification, and redistribution, is contained in * 7 * the COPYING file, which can be found at the root of the source code * 8 * distribution tree, or in https://support.hdfgroup.org/ftp/HDF5/releases. * 9 * If you do not have access to either file, you may request a copy from * 10 * help@hdfgroup.org. * 11 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ 12 13 /* Purpose: This file contains declarations which define macros for the 14 * H5R package. Including this header means that the source file 15 * is part of the H5R package. 16 */ 17 #ifndef _H5Rmodule_H 18 #define _H5Rmodule_H 19 20 /* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error 21 * reporting macros. 22 */ 23 #define H5R_MODULE 24 #define H5_MY_PKG H5R 25 #define H5_MY_PKG_ERR H5E_REFERENCE 26 #define H5_MY_PKG_INIT YES 27 28 #endif /* _H5Rmodule_H */ 29 30