H5Aprivate.h

00001 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
00002  * Copyright by The HDF Group.                                               *
00003  * Copyright by the Board of Trustees of the University of Illinois.         *
00004  * All rights reserved.                                                      *
00005  *                                                                           *
00006  * This file is part of HDF5.  The full HDF5 copyright notice, including     *
00007  * terms governing use, modification, and redistribution, is contained in    *
00008  * the files COPYING and Copyright.html.  COPYING can be found at the root   *
00009  * of the source code distribution tree; Copyright.html can be found at the  *
00010  * root level of an installed copy of the electronic HDF5 document set and   *
00011  * is linked from the top-level documents page.  It can also be found at     *
00012  * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
00013  * access to either file, you may request a copy from help@hdfgroup.org.     *
00014  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
00015 
00016 /*
00017  * This file contains private information about the H5D module
00018  */
00019 #ifndef _H5Aprivate_H
00020 #define _H5Aprivate_H
00021 
00022 /* Include package's public header */
00023 #include "H5Apublic.h"
00024 
00025 /* Private headers needed by this file */
00026 #include "H5Gprivate.h"         /* Groups                               */
00027 
00028 
00029 /**************************/
00030 /* Library Private Macros */
00031 /**************************/
00032 
00033 
00034 /****************************/
00035 /* Library Private Typedefs */
00036 /****************************/
00037 
00038 /* Forward references of package typedefs */
00039 typedef struct H5A_t H5A_t;
00040 typedef struct H5A_attr_iter_op_t H5A_attr_iter_op_t;
00041 
00042 
00043 /*****************************/
00044 /* Library-private Variables */
00045 /*****************************/
00046 
00047 
00048 /***************************************/
00049 /* Library-private Function Prototypes */
00050 /***************************************/
00051 
00052 /* General attribute routines */
00053 H5_DLL struct H5O_loc_t *H5A_oloc(H5A_t *attr);
00054 H5_DLL H5G_name_t *H5A_nameof(H5A_t *attr);
00055 
00056 #endif /* _H5Aprivate_H */
00057