H5LTprivate.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 #ifndef _H5LTprivate_H
00017 #define _H5LTprivate_H
00018 
00019 /* High-level library internal header file */
00020 #include "H5HLprivate2.h"
00021 
00022 /* public LT prototypes                 */
00023 #include "H5LTpublic.h"
00024 
00025 /*-------------------------------------------------------------------------
00026  * Private functions
00027  *-------------------------------------------------------------------------
00028  */
00029 
00030 H5_HLDLL herr_t  H5LT_get_attribute_disk( hid_t obj_id,
00031                            const char *attr_name,
00032                            void *data );
00033 
00034 H5_HLDLL herr_t  H5LT_set_attribute_numerical( hid_t loc_id,
00035                                      const char *obj_name,
00036                                      const char *attr_name,
00037                                      size_t size,
00038                                      hid_t type_id,
00039                                      const void *data );
00040 
00041 H5_HLDLL herr_t  H5LT_set_attribute_string( hid_t dset_id,
00042                                  const char *name,
00043                                  const char *buf );
00044 
00045 H5_HLDLL herr_t  H5LT_find_attribute( hid_t loc_id, const char *name );
00046 
00047 
00048 H5_HLDLL herr_t  H5LT_dtype_to_text(hid_t dtype, char **dt_str, H5LT_lang_t lang,
00049                                     size_t *slen, hbool_t no_user_buf);
00050 
00051 
00052 #endif