mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-04-12 17:31:09 +08:00
Fixed many -Wreserved-id-macro warnings by fixing header guard spelling (#361)
* Fixed many -Wreserved-id-macro warnings by fixing header guard spelling Removed leading underscore(s) from header guard spelling. Used 2 regexes: ` _H5(.*)_H` ` __H5(.*)_H` Applied case-insensitively to only .h files. * Modified scripts that generate header files to not use underscore prefix Interestingly, there was already no leading underscore in the trailing comment at the end of the file * Fixed remaining -Wreserved-id-macro warning not caught by regex
This commit is contained in:
parent
5ed255a607
commit
c17b4b93d6
bin
c++
src
H5ArrayType.hH5AtomType.hH5Attribute.hH5Classes.hH5CompType.hH5Cpp.hH5CppDoc.hH5DaccProp.hH5DataSet.hH5DataSpace.hH5DataType.hH5DcreatProp.hH5DxferProp.hH5EnumType.hH5Exception.hH5FaccProp.hH5FcreatProp.hH5File.hH5FloatType.hH5IntType.hH5LaccProp.hH5LcreatProp.hH5Library.hH5Location.hH5Object.hH5OcreatProp.hH5PredType.hH5PropList.hH5StrType.hH5VarLenType.h
test
fortran/src
hl
fortran/src
src
H5DOpublic.hH5DSprivate.hH5DSpublic.hH5HLprivate2.hH5IMprivate.hH5IMpublic.hH5LDprivate.hH5LDpublic.hH5LTprivate.hH5LTpublic.hH5PTprivate.hH5PTpublic.hH5TBprivate.hH5TBpublic.h
test
src
H5ACmodule.hH5ACpkg.hH5ACprivate.hH5ACpublic.hH5Amodule.hH5Apkg.hH5Aprivate.hH5Apublic.hH5B2module.hH5B2pkg.hH5B2private.hH5Bmodule.hH5Bpkg.hH5Bprivate.hH5CSprivate.hH5CXmodule.hH5CXprivate.hH5Clog.hH5Cmodule.hH5Cpkg.hH5Cprivate.hH5Cpublic.hH5Dmodule.hH5Dpkg.hH5Dprivate.hH5Dpublic.hH5EAmodule.hH5EApkg.hH5EAprivate.hH5ESmodule.hH5ESpkg.hH5ESprivate.hH5ESpublic.hH5Emodule.hH5Epkg.hH5Eprivate.hH5Epublic.hH5FAmodule.hH5FApkg.hH5FAprivate.hH5FDdrvr_module.hH5FDmodule.hH5FDpkg.hH5FDprivate.hH5FDpublic.hH5FLmodule.h
@ -64,8 +64,8 @@ sub print_startprotect ($$) {
|
||||
$file =~ s/(\w*)\.h/$1/;
|
||||
|
||||
# Print the ifdef info
|
||||
print $fh "\n#ifndef _${file}_H\n";
|
||||
print $fh "#define _${file}_H\n";
|
||||
print $fh "\n#ifndef ${file}_H\n";
|
||||
print $fh "#define ${file}_H\n";
|
||||
}
|
||||
|
||||
##############################################################################
|
||||
|
@ -93,8 +93,8 @@ sub print_startprotect ($$) {
|
||||
$file =~ s/(\w*)\.h/$1/;
|
||||
|
||||
# Print the ifdef info
|
||||
print $fh "\n#ifndef _${file}_H\n";
|
||||
print $fh "#define _${file}_H\n";
|
||||
print $fh "\n#ifndef ${file}_H\n";
|
||||
print $fh "#define ${file}_H\n";
|
||||
}
|
||||
|
||||
##############################################################################
|
||||
|
@ -78,8 +78,8 @@ sub print_startprotect ($$) {
|
||||
$file =~ s/(\w*)\.h/$1/;
|
||||
|
||||
# Print the ifdef info
|
||||
print $fh "\n#ifndef _${file}_H\n";
|
||||
print $fh "#define _${file}_H\n";
|
||||
print $fh "\n#ifndef ${file}_H\n";
|
||||
print $fh "#define ${file}_H\n";
|
||||
}
|
||||
|
||||
##############################################################################
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5ArrayType_H
|
||||
#define __H5ArrayType_H
|
||||
#ifndef H5ArrayType_H
|
||||
#define H5ArrayType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -69,4 +69,4 @@ class H5_DLLCPP ArrayType : public DataType {
|
||||
}; // end of ArrayType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5ArrayType_H
|
||||
#endif // H5ArrayType_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5AtomType_H
|
||||
#define __H5AtomType_H
|
||||
#ifndef H5AtomType_H
|
||||
#define H5AtomType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -83,4 +83,4 @@ class H5_DLLCPP AtomType : public DataType {
|
||||
}; // end of AtomType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5AtomType_H
|
||||
#endif // H5AtomType_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5Attribute_H
|
||||
#define __H5Attribute_H
|
||||
#ifndef H5Attribute_H
|
||||
#define H5Attribute_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -104,4 +104,4 @@ class H5_DLLCPP Attribute : public AbstractDs, public H5Location {
|
||||
}; // end of Attribute
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5Attribute_H
|
||||
#endif // H5Attribute_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5Classes_H
|
||||
#define __H5Classes_H
|
||||
#ifndef H5Classes_H
|
||||
#define H5Classes_H
|
||||
|
||||
namespace H5 {
|
||||
class Exception;
|
||||
@ -43,4 +43,4 @@ class H5File;
|
||||
class Attribute;
|
||||
class H5Library;
|
||||
} // namespace H5
|
||||
#endif // __H5Classes_H
|
||||
#endif // H5Classes_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5CompType_H
|
||||
#define __H5CompType_H
|
||||
#ifndef H5CompType_H
|
||||
#define H5CompType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -124,4 +124,4 @@ class H5_DLLCPP CompType : public DataType {
|
||||
}; // end of CompType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5CompType_H
|
||||
#endif // H5CompType_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5Cpp_H
|
||||
#define __H5Cpp_H
|
||||
#ifndef H5Cpp_H
|
||||
#define H5Cpp_H
|
||||
|
||||
#include "H5Include.h"
|
||||
#include "H5Exception.h"
|
||||
@ -58,4 +58,4 @@
|
||||
#define HOFFSET(TYPE, MEMBER) ((size_t) & ((TYPE *)0)->MEMBER)
|
||||
#endif
|
||||
|
||||
#endif // __H5Cpp_H
|
||||
#endif // H5Cpp_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5CppDoc_H
|
||||
#define __H5CppDoc_H
|
||||
#ifndef H5CppDoc_H
|
||||
#define H5CppDoc_H
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
// The following section will be used to generate the 'Mainpage'
|
||||
@ -92,4 +92,4 @@
|
||||
/// This example shows how to work with groups.
|
||||
///\example h5group.cpp
|
||||
|
||||
#endif // __H5CppDoc_H
|
||||
#endif // H5CppDoc_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5DSetAccPropList_H
|
||||
#define __H5DSetAccPropList_H
|
||||
#ifndef H5DSetAccPropList_H
|
||||
#define H5DSetAccPropList_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -69,4 +69,4 @@ class H5_DLLCPP DSetAccPropList : public LinkAccPropList {
|
||||
}; // end of DSetAccPropList
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5DSetAccPropList_H
|
||||
#endif // H5DSetAccPropList_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5DataSet_H
|
||||
#define __H5DataSet_H
|
||||
#ifndef H5DataSet_H
|
||||
#define H5DataSet_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -153,4 +153,4 @@ class H5_DLLCPP DataSet : public H5Object, public AbstractDs {
|
||||
}; // end of DataSet
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5DataSet_H
|
||||
#endif // H5DataSet_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5DataSpace_H
|
||||
#define __H5DataSpace_H
|
||||
#ifndef H5DataSpace_H
|
||||
#define H5DataSpace_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -155,4 +155,4 @@ class H5_DLLCPP DataSpace : public IdComponent {
|
||||
}; // end of DataSpace
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5DataSpace_H
|
||||
#endif // H5DataSpace_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5DataType_H
|
||||
#define __H5DataType_H
|
||||
#ifndef H5DataType_H
|
||||
#define H5DataType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -183,4 +183,4 @@ class H5_DLLCPP DataType : public H5Object {
|
||||
}; // end of DataType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5DataType_H
|
||||
#endif // H5DataType_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5DSCreatPropList_H
|
||||
#define __H5DSCreatPropList_H
|
||||
#ifndef H5DSCreatPropList_H
|
||||
#define H5DSCreatPropList_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -159,4 +159,4 @@ class H5_DLLCPP DSetCreatPropList : public ObjCreatPropList {
|
||||
}; // end of DSetCreatPropList
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5DSCreatPropList_H
|
||||
#endif // H5DSCreatPropList_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5DSetMemXferPropList_H
|
||||
#define __H5DSetMemXferPropList_H
|
||||
#ifndef H5DSetMemXferPropList_H
|
||||
#define H5DSetMemXferPropList_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -131,4 +131,4 @@ class H5_DLLCPP DSetMemXferPropList : public PropList {
|
||||
}; // end of DSetMemXferPropList
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5DSetMemXferPropList_H
|
||||
#endif // H5DSetMemXferPropList_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5EnumType_H
|
||||
#define __H5EnumType_H
|
||||
#ifndef H5EnumType_H
|
||||
#define H5EnumType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -87,4 +87,4 @@ class H5_DLLCPP EnumType : public DataType {
|
||||
}; // end of EnumType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5EnumType_H
|
||||
#endif // H5EnumType_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5Exception_H
|
||||
#define __H5Exception_H
|
||||
#ifndef H5Exception_H
|
||||
#define H5Exception_H
|
||||
|
||||
#include <string>
|
||||
|
||||
@ -176,4 +176,4 @@ class H5_DLLCPP IdComponentException : public Exception {
|
||||
}; // end of IdComponentException
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5Exception_H
|
||||
#endif // H5Exception_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5FileAccPropList_H
|
||||
#define __H5FileAccPropList_H
|
||||
#ifndef H5FileAccPropList_H
|
||||
#define H5FileAccPropList_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -168,4 +168,4 @@ class H5_DLLCPP FileAccPropList : public PropList {
|
||||
}; // end of FileAccPropList
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5FileAccPropList_H
|
||||
#endif // H5FileAccPropList_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5FileCreatPropList_H
|
||||
#define __H5FileCreatPropList_H
|
||||
#ifndef H5FileCreatPropList_H
|
||||
#define H5FileCreatPropList_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -109,4 +109,4 @@ class H5_DLLCPP FileCreatPropList : public PropList {
|
||||
}; // end of FileCreatPropList
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5FileCreatPropList_H
|
||||
#endif // H5FileCreatPropList_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5File_H
|
||||
#define __H5File_H
|
||||
#ifndef H5File_H
|
||||
#define H5File_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -136,4 +136,4 @@ class H5_DLLCPP H5File : public Group {
|
||||
}; // end of H5File
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5File_H
|
||||
#endif // H5File_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5FloatType_H
|
||||
#define __H5FloatType_H
|
||||
#ifndef H5FloatType_H
|
||||
#define H5FloatType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -84,4 +84,4 @@ class H5_DLLCPP FloatType : public AtomType {
|
||||
}; // end of FloatType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5FloatType_H
|
||||
#endif // H5FloatType_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5IntType_H
|
||||
#define __H5IntType_H
|
||||
#ifndef H5IntType_H
|
||||
#define H5IntType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -66,4 +66,4 @@ class H5_DLLCPP IntType : public AtomType {
|
||||
}; // end of IntType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5IntType_H
|
||||
#endif // H5IntType_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5LinkAccPropList_H
|
||||
#define __H5LinkAccPropList_H
|
||||
#ifndef H5LinkAccPropList_H
|
||||
#define H5LinkAccPropList_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -70,4 +70,4 @@ class H5_DLLCPP LinkAccPropList : public PropList {
|
||||
}; // end of LinkAccPropList
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5LinkAccPropList_H
|
||||
#endif // H5LinkAccPropList_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5LinkCreatPropList_H
|
||||
#define __H5LinkCreatPropList_H
|
||||
#ifndef H5LinkCreatPropList_H
|
||||
#define H5LinkCreatPropList_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -77,4 +77,4 @@ class H5_DLLCPP LinkCreatPropList : public PropList {
|
||||
}; // end of LinkCreatPropList
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5LinkCreatPropList_H
|
||||
#endif // H5LinkCreatPropList_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5Library_H
|
||||
#define __H5Library_H
|
||||
#ifndef H5Library_H
|
||||
#define H5Library_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -69,4 +69,4 @@ class H5_DLLCPP H5Library {
|
||||
}; // end of H5Library
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5Library_H
|
||||
#endif // H5Library_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5Location_H
|
||||
#define __H5Location_H
|
||||
#ifndef H5Location_H
|
||||
#define H5Location_H
|
||||
|
||||
#include "H5Classes.h" // constains forward class declarations
|
||||
|
||||
@ -339,4 +339,4 @@ class H5_DLLCPP H5Location : public IdComponent {
|
||||
}; // end of H5Location
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5Location_H
|
||||
#endif // H5Location_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5Object_H
|
||||
#define __H5Object_H
|
||||
#ifndef H5Object_H
|
||||
#define H5Object_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -132,4 +132,4 @@ class H5_DLLCPP H5Object : public H5Location {
|
||||
}; // end of H5Object
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5Object_H
|
||||
#endif // H5Object_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5ObjCreatPropList_H
|
||||
#define __H5ObjCreatPropList_H
|
||||
#ifndef H5ObjCreatPropList_H
|
||||
#define H5ObjCreatPropList_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -75,4 +75,4 @@ class H5_DLLCPP ObjCreatPropList : public PropList {
|
||||
}; // end of ObjCreatPropList
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5ObjCreatPropList_H
|
||||
#endif // H5ObjCreatPropList_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5PredType_H
|
||||
#define __H5PredType_H
|
||||
#ifndef H5PredType_H
|
||||
#define H5PredType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -442,4 +442,4 @@ class H5_DLLCPP PredType : public AtomType {
|
||||
}; // end of PredType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5PredType_H
|
||||
#endif // H5PredType_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5PropList_H
|
||||
#define __H5PropList_H
|
||||
#ifndef H5PropList_H
|
||||
#define H5PropList_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -144,4 +144,4 @@ class H5_DLLCPP PropList : public IdComponent {
|
||||
}; // end of PropList
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5PropList_H
|
||||
#endif // H5PropList_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5StrType_H
|
||||
#define __H5StrType_H
|
||||
#ifndef H5StrType_H
|
||||
#define H5StrType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -78,4 +78,4 @@ class H5_DLLCPP StrType : public AtomType {
|
||||
}; // end of StrType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5StrType_H
|
||||
#endif // H5StrType_H
|
||||
|
@ -12,8 +12,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef __H5VarLenType_H
|
||||
#define __H5VarLenType_H
|
||||
#ifndef H5VarLenType_H
|
||||
#define H5VarLenType_H
|
||||
|
||||
namespace H5 {
|
||||
|
||||
@ -61,4 +61,4 @@ class H5_DLLCPP VarLenType : public DataType {
|
||||
}; // end of VarLenType
|
||||
} // namespace H5
|
||||
|
||||
#endif // __H5VarLenType_H
|
||||
#endif // H5VarLenType_H
|
||||
|
@ -19,8 +19,8 @@
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef _h5cpputil_h
|
||||
#define _h5cpputil_h
|
||||
#ifndef H5cpputil_H
|
||||
#define H5cpputil_H
|
||||
|
||||
#include "h5test.h"
|
||||
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5f90_H
|
||||
#define _H5f90_H
|
||||
#ifndef H5f90_H
|
||||
#define H5f90_H
|
||||
|
||||
#include "hdf5.h"
|
||||
#include "H5private.h"
|
||||
@ -27,4 +27,4 @@
|
||||
|
||||
#define H5_MAX(a, b) (((a) > (b)) ? (a) : (b))
|
||||
|
||||
#endif /* _H5f90_H */
|
||||
#endif /* H5f90_H */
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5f90i_H
|
||||
#define _H5f90i_H
|
||||
#ifndef H5f90i_H
|
||||
#define H5f90i_H
|
||||
|
||||
/*
|
||||
* Include generated header. This header defines integer types,
|
||||
@ -36,4 +36,4 @@ typedef char *_fcd;
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* _H5f90i_H */
|
||||
#endif /* H5f90i_H */
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5f90proto_H
|
||||
#define _H5f90proto_H
|
||||
#ifndef H5f90proto_H
|
||||
#define H5f90proto_H
|
||||
|
||||
#include "H5public.h"
|
||||
#include "H5f90.h"
|
||||
@ -643,4 +643,4 @@ H5_FCDLL int_f h5literate_by_name_c(hid_t_f *loc_id, _fcd name, size_t_f *namele
|
||||
int_f *order, hsize_t_f *idx, H5L_iterate2_t op, void *op_data,
|
||||
hid_t_f *lapl_id);
|
||||
|
||||
#endif /* _H5f90proto_H */
|
||||
#endif /* H5f90proto_H */
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5IMCC_H
|
||||
#define _H5IMCC_H
|
||||
#ifndef H5IMCC_H
|
||||
#define H5IMCC_H
|
||||
|
||||
#include "H5LTprivate.h"
|
||||
#include "H5IMprivate.h"
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5LTf90proto_H
|
||||
#define _H5LTf90proto_H
|
||||
#ifndef H5LTf90proto_H
|
||||
#define H5LTf90proto_H
|
||||
|
||||
#include "H5public.h"
|
||||
#include "H5f90i.h"
|
||||
@ -206,4 +206,4 @@ int_f h5tbget_field_info_c(hid_t_f *loc_id, size_t_f *namelen, _fcd name, hsize_
|
||||
size_t_f *field_sizes, size_t_f *field_offsets, size_t_f *type_size,
|
||||
size_t_f *namelen2, size_t_f *lenmax, _fcd field_names, size_t_f *maxlen_out);
|
||||
|
||||
#endif /* _H5LTf90proto_H */
|
||||
#endif /* H5LTf90proto_H */
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5DOpublic_H
|
||||
#define _H5DOpublic_H
|
||||
#ifndef H5DOpublic_H
|
||||
#define H5DOpublic_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5DSprivate_H
|
||||
#define _H5DSprivate_H
|
||||
#ifndef H5DSprivate_H
|
||||
#define H5DSprivate_H
|
||||
|
||||
/* High-level library internal header file */
|
||||
#include "H5HLprivate2.h"
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5DSpublic_H
|
||||
#define _H5DSpublic_H
|
||||
#ifndef H5DSpublic_H
|
||||
#define H5DSpublic_H
|
||||
|
||||
#define DIMENSION_SCALE_CLASS "DIMENSION_SCALE"
|
||||
#define DIMENSION_LIST "DIMENSION_LIST"
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5HLprivate2_H
|
||||
#define _H5HLprivate2_H
|
||||
#ifndef H5HLprivate2_H
|
||||
#define H5HLprivate2_H
|
||||
|
||||
/* Public HDF5 header */
|
||||
#include "hdf5.h"
|
||||
@ -23,4 +23,4 @@
|
||||
/* HDF5 private functions */
|
||||
#include "H5private.h"
|
||||
|
||||
#endif /* _H5HLprivate2_H */
|
||||
#endif /* H5HLprivate2_H */
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5IMprivate_H
|
||||
#define _H5IMprivate_H
|
||||
#ifndef H5IMprivate_H
|
||||
#define H5IMprivate_H
|
||||
|
||||
/* High-level library internal header file */
|
||||
#include "H5HLprivate2.h"
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5IMpublic_H
|
||||
#define _H5IMpublic_H
|
||||
#ifndef H5IMpublic_H
|
||||
#define H5IMpublic_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5LDprivate_H
|
||||
#define _H5LDprivate_H
|
||||
#ifndef H5LDprivate_H
|
||||
#define H5LDprivate_H
|
||||
|
||||
/* High-level library internal header file */
|
||||
#include "H5HLprivate2.h"
|
||||
@ -50,4 +50,4 @@ H5_HLDLL int H5LD_construct_vector(char *fields, H5LD_memb_t *listv[], hid_t pa
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* end _H5LDprivate_H */
|
||||
#endif /* end H5LDprivate_H */
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5LDpublic_H
|
||||
#define _H5LDpublic_H
|
||||
#ifndef H5LDpublic_H
|
||||
#define H5LDpublic_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -27,4 +27,4 @@ H5_HLDLL herr_t H5LDget_dset_elmts(hid_t did, const hsize_t *prev_dims, const hs
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _H5LDpublic_H */
|
||||
#endif /* H5LDpublic_H */
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5LTprivate_H
|
||||
#define _H5LTprivate_H
|
||||
#ifndef H5LTprivate_H
|
||||
#define H5LTprivate_H
|
||||
|
||||
/* High-level library internal header file */
|
||||
#include "H5HLprivate2.h"
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5LTpublic_H
|
||||
#define _H5LTpublic_H
|
||||
#ifndef H5LTpublic_H
|
||||
#define H5LTpublic_H
|
||||
|
||||
/* Flag definitions for H5LTopen_file_image() */
|
||||
#define H5LT_FILE_IMAGE_OPEN_RW 0x0001 /* Open image for read-write */
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5PTprivate_H
|
||||
#define _H5PTprivate_H
|
||||
#ifndef H5PTprivate_H
|
||||
#define H5PTprivate_H
|
||||
|
||||
/* High-level library internal header file */
|
||||
#include "H5HLprivate2.h"
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5PTpublic_H
|
||||
#define _H5PTpublic_H
|
||||
#ifndef H5PTpublic_H
|
||||
#define H5PTpublic_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5TBprivate_H
|
||||
#define _H5TBprivate_H
|
||||
#ifndef H5TBprivate_H
|
||||
#define H5TBprivate_H
|
||||
|
||||
/* High-level library internal header file */
|
||||
#include "H5HLprivate2.h"
|
||||
|
@ -11,8 +11,8 @@
|
||||
* help@hdfgroup.org. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
#ifndef _H5TBpublic_H
|
||||
#define _H5TBpublic_H
|
||||
#ifndef H5TBpublic_H
|
||||
#define H5TBpublic_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -18,8 +18,8 @@
|
||||
* Purpose: Test support stuff.
|
||||
*/
|
||||
|
||||
#ifndef _H5HLTEST_H
|
||||
#define _H5HLTEST_H
|
||||
#ifndef H5HLTEST_H
|
||||
#define H5HLTEST_H
|
||||
|
||||
/* Get the HDF5 test header */
|
||||
#include "h5test.h"
|
||||
@ -48,4 +48,4 @@
|
||||
|
||||
int test_packet_table_with_varlen(void);
|
||||
|
||||
#endif /* _H5HLTEST_H */
|
||||
#endif /* H5HLTEST_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5AC package. Including this header means that the source file
|
||||
* is part of the H5AC package.
|
||||
*/
|
||||
#ifndef _H5ACmodule_H
|
||||
#define _H5ACmodule_H
|
||||
#ifndef H5ACmodule_H
|
||||
#define H5ACmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_CACHE
|
||||
#define H5_MY_PKG_INIT YES
|
||||
|
||||
#endif /* _H5ACmodule_H */
|
||||
#endif /* H5ACmodule_H */
|
||||
|
@ -30,8 +30,8 @@
|
||||
#error "Do not include this file outside the H5AC package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5ACpkg_H
|
||||
#define _H5ACpkg_H
|
||||
#ifndef H5ACpkg_H
|
||||
#define H5ACpkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
@ -426,4 +426,4 @@ H5_DLL herr_t H5AC__set_sync_point_done_callback(H5C_t *cache_ptr, H5AC_sync_poi
|
||||
H5_DLL herr_t H5AC__set_write_done_callback(H5C_t *cache_ptr, H5AC_write_done_cb_t write_done);
|
||||
#endif /* H5_HAVE_PARALLEL */
|
||||
|
||||
#endif /* _H5ACpkg_H */
|
||||
#endif /* H5ACpkg_H */
|
||||
|
@ -23,8 +23,8 @@
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef _H5ACprivate_H
|
||||
#define _H5ACprivate_H
|
||||
#ifndef H5ACprivate_H
|
||||
#define H5ACprivate_H
|
||||
|
||||
#include "H5ACpublic.h" /*public prototypes */
|
||||
|
||||
|
@ -21,8 +21,8 @@
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef _H5ACpublic_H
|
||||
#define _H5ACpublic_H
|
||||
#ifndef H5ACpublic_H
|
||||
#define H5ACpublic_H
|
||||
|
||||
/* Public headers needed by this file */
|
||||
#include "H5public.h"
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5A package. Including this header means that the source file
|
||||
* is part of the H5A package.
|
||||
*/
|
||||
#ifndef _H5Amodule_H
|
||||
#define _H5Amodule_H
|
||||
#ifndef H5Amodule_H
|
||||
#define H5Amodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -46,4 +46,4 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#endif /* _H5Amodule_H */
|
||||
#endif /* H5Amodule_H */
|
||||
|
@ -23,8 +23,8 @@
|
||||
#error "Do not include this file outside the H5A package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5Apkg_H
|
||||
#define _H5Apkg_H
|
||||
#ifndef H5Apkg_H
|
||||
#define H5Apkg_H
|
||||
|
||||
/*
|
||||
* Define this to enable debugging.
|
||||
@ -262,4 +262,4 @@ H5_DLL htri_t H5A__is_shared_test(hid_t aid);
|
||||
H5_DLL herr_t H5A__get_shared_rc_test(hid_t attr_id, hsize_t *ref_count);
|
||||
#endif /* H5A_TESTING */
|
||||
|
||||
#endif /* _H5Apkg_H */
|
||||
#endif /* H5Apkg_H */
|
||||
|
@ -14,8 +14,8 @@
|
||||
/*
|
||||
* This file contains private information about the H5D module
|
||||
*/
|
||||
#ifndef _H5Aprivate_H
|
||||
#define _H5Aprivate_H
|
||||
#ifndef H5Aprivate_H
|
||||
#define H5Aprivate_H
|
||||
|
||||
/* Include package's public header */
|
||||
#include "H5Apublic.h"
|
||||
@ -78,4 +78,4 @@ H5_DLL herr_t H5O_attr_iterate_real(hid_t loc_id, const H5O_loc_t *loc, H5_index
|
||||
H5_iter_order_t order, hsize_t skip, hsize_t *last_attr,
|
||||
const H5A_attr_iter_op_t *attr_op, void *op_data);
|
||||
|
||||
#endif /* _H5Aprivate_H */
|
||||
#endif /* H5Aprivate_H */
|
||||
|
@ -14,8 +14,8 @@
|
||||
/*
|
||||
* This file contains public declarations for the H5A module.
|
||||
*/
|
||||
#ifndef _H5Apublic_H
|
||||
#define _H5Apublic_H
|
||||
#ifndef H5Apublic_H
|
||||
#define H5Apublic_H
|
||||
|
||||
/* Public headers needed by this file */
|
||||
#include "H5Ipublic.h" /* IDs */
|
||||
@ -1272,4 +1272,4 @@ H5_DLL hid_t H5Aopen_name(hid_t loc_id, const char *name);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _H5Apublic_H */
|
||||
#endif /* H5Apublic_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5B2 package. Including this header means that the source file
|
||||
* is part of the H5B2 package.
|
||||
*/
|
||||
#ifndef _H5B2module_H
|
||||
#define _H5B2module_H
|
||||
#ifndef H5B2module_H
|
||||
#define H5B2module_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_BTREE
|
||||
#define H5_MY_PKG_INIT NO
|
||||
|
||||
#endif /* _H5B2module_H */
|
||||
#endif /* H5B2module_H */
|
||||
|
@ -23,8 +23,8 @@
|
||||
#error "Do not include this file outside the H5B2 package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5B2pkg_H
|
||||
#define _H5B2pkg_H
|
||||
#ifndef H5B2pkg_H
|
||||
#define H5B2pkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5B2private.h"
|
||||
@ -453,4 +453,4 @@ H5_DLL int H5B2__get_node_depth_test(H5B2_t *bt2, void *udata);
|
||||
H5_DLL herr_t H5B2__get_node_info_test(H5B2_t *bt2, void *udata, H5B2_node_info_test_t *ninfo);
|
||||
#endif /* H5B2_TESTING */
|
||||
|
||||
#endif /* _H5B2pkg_H */
|
||||
#endif /* H5B2pkg_H */
|
||||
|
@ -22,8 +22,8 @@
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef _H5B2private_H
|
||||
#define _H5B2private_H
|
||||
#ifndef H5B2private_H
|
||||
#define H5B2private_H
|
||||
|
||||
/* Private headers needed by this file */
|
||||
#include "H5ACprivate.h" /* Metadata cache */
|
||||
@ -149,4 +149,4 @@ H5_DLL herr_t H5B2_patch_file(H5B2_t *fa, H5F_t *f);
|
||||
/* Statistics routines */
|
||||
H5_DLL herr_t H5B2_stat_info(H5B2_t *bt2, H5B2_stat_t *info);
|
||||
|
||||
#endif /* _H5B2private_H */
|
||||
#endif /* H5B2private_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5B package. Including this header means that the source file
|
||||
* is part of the H5B package.
|
||||
*/
|
||||
#ifndef _H5Bmodule_H
|
||||
#define _H5Bmodule_H
|
||||
#ifndef H5Bmodule_H
|
||||
#define H5Bmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_BTREE
|
||||
#define H5_MY_PKG_INIT NO
|
||||
|
||||
#endif /* _H5Bmodule_H */
|
||||
#endif /* H5Bmodule_H */
|
||||
|
@ -23,8 +23,8 @@
|
||||
#error "Do not include this file outside the H5B package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5Bpkg_H
|
||||
#define _H5Bpkg_H
|
||||
#ifndef H5Bpkg_H
|
||||
#define H5Bpkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5Bprivate.h"
|
||||
|
@ -22,8 +22,8 @@
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef _H5Bprivate_H
|
||||
#define _H5Bprivate_H
|
||||
#ifndef H5Bprivate_H
|
||||
#define H5Bprivate_H
|
||||
|
||||
/* Private headers needed by this file */
|
||||
#include "H5private.h" /* Generic Functions */
|
||||
@ -157,4 +157,4 @@ H5_DLL herr_t H5B_shared_free(void *_shared);
|
||||
H5_DLL herr_t H5B_debug(H5F_t *f, haddr_t addr, FILE *stream, int indent, int fwidth, const H5B_class_t *type,
|
||||
void *udata);
|
||||
H5_DLL htri_t H5B_valid(H5F_t *f, const H5B_class_t *type, haddr_t addr);
|
||||
#endif /* _H5Bprivate_H */
|
||||
#endif /* H5Bprivate_H */
|
||||
|
@ -14,8 +14,8 @@
|
||||
/*
|
||||
* Header file for function stacks, etc.
|
||||
*/
|
||||
#ifndef _H5CSprivate_H
|
||||
#define _H5CSprivate_H
|
||||
#ifndef H5CSprivate_H
|
||||
#define H5CSprivate_H
|
||||
|
||||
#ifdef NOT_YET
|
||||
#include "H5CSpublic.h"
|
||||
@ -32,4 +32,4 @@ H5_DLL herr_t H5CS_print_stack(const struct H5CS_t *stack, FILE *stream)
|
||||
H5_DLL struct H5CS_t *H5CS_copy_stack(void);
|
||||
H5_DLL herr_t H5CS_close_stack(struct H5CS_t *stack);
|
||||
|
||||
#endif /* _H5CSprivate_H */
|
||||
#endif /* H5CSprivate_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5CX package. Including this header means that the source file
|
||||
* is part of the H5CX package.
|
||||
*/
|
||||
#ifndef _H5CXmodule_H
|
||||
#define _H5CXmodule_H
|
||||
#ifndef H5CXmodule_H
|
||||
#define H5CXmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_CONTEXT
|
||||
#define H5_MY_PKG_INIT YES
|
||||
|
||||
#endif /* _H5CXmodule_H */
|
||||
#endif /* H5CXmodule_H */
|
||||
|
@ -13,8 +13,8 @@
|
||||
/*
|
||||
* Header file for API contexts, etc.
|
||||
*/
|
||||
#ifndef _H5CXprivate_H
|
||||
#define _H5CXprivate_H
|
||||
#ifndef H5CXprivate_H
|
||||
#define H5CXprivate_H
|
||||
|
||||
/* Include package's public header */
|
||||
#ifdef NOT_YET
|
||||
@ -61,10 +61,10 @@ typedef struct H5CX_state_t {
|
||||
/***************************************/
|
||||
|
||||
/* Library private routines */
|
||||
#ifndef _H5private_H
|
||||
#ifndef H5private_H
|
||||
H5_DLL herr_t H5CX_push(void);
|
||||
H5_DLL herr_t H5CX_pop(hbool_t update_dxpl_props);
|
||||
#endif /* _H5private_H */
|
||||
#endif /* H5private_H */
|
||||
H5_DLL void H5CX_push_special(void);
|
||||
H5_DLL hbool_t H5CX_is_def_dxpl(void);
|
||||
|
||||
@ -177,4 +177,4 @@ H5_DLL herr_t H5CX_test_set_mpio_coll_rank0_bcast(hbool_t rank0_bcast);
|
||||
#endif /* H5_HAVE_INSTRUMENTED_LIBRARY */
|
||||
#endif /* H5_HAVE_PARALLEL */
|
||||
|
||||
#endif /* _H5CXprivate_H */
|
||||
#endif /* H5CXprivate_H */
|
||||
|
@ -15,8 +15,8 @@
|
||||
* Purpose: Cache logging header file
|
||||
*/
|
||||
|
||||
#ifndef _H5Clog_H
|
||||
#define _H5Clog_H
|
||||
#ifndef H5Clog_H
|
||||
#define H5Clog_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5Cprivate.h" /* Cache */
|
||||
@ -136,4 +136,4 @@ H5_DLL herr_t H5C_log_write_remove_entry_msg(H5C_t *cache, const H5C_cache_entry
|
||||
H5_DLL herr_t H5C_log_json_set_up(H5C_log_info_t *log_info, const char log_location[], int mpi_rank);
|
||||
H5_DLL herr_t H5C_log_trace_set_up(H5C_log_info_t *log_info, const char log_location[], int mpi_rank);
|
||||
|
||||
#endif /* _H5Clog_H */
|
||||
#endif /* H5Clog_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5C package. Including this header means that the source file
|
||||
* is part of the H5C package.
|
||||
*/
|
||||
#ifndef _H5Cmodule_H
|
||||
#define _H5Cmodule_H
|
||||
#ifndef H5Cmodule_H
|
||||
#define H5Cmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_CACHE
|
||||
#define H5_MY_PKG_INIT NO
|
||||
|
||||
#endif /* _H5Cmodule_H */
|
||||
#endif /* H5Cmodule_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
#error "Do not include this file outside the H5C package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5Cpkg_H
|
||||
#define _H5Cpkg_H
|
||||
#ifndef H5Cpkg_H
|
||||
#define H5Cpkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5Cprivate.h"
|
||||
@ -5090,5 +5090,5 @@ H5_DLL herr_t H5C__untag_entry(H5C_t *cache, H5C_cache_entry_t *entry);
|
||||
H5_DLL herr_t H5C__verify_cork_tag_test(hid_t fid, H5O_token_t tag_token, hbool_t status);
|
||||
#endif /* H5C_TESTING */
|
||||
|
||||
#endif /* _H5Cpkg_H */
|
||||
#endif /* H5Cpkg_H */
|
||||
/* clang-format on */
|
||||
|
@ -23,8 +23,8 @@
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef _H5Cprivate_H
|
||||
#define _H5Cprivate_H
|
||||
#ifndef H5Cprivate_H
|
||||
#define H5Cprivate_H
|
||||
|
||||
#include "H5Cpublic.h" /* public prototypes */
|
||||
|
||||
|
@ -21,8 +21,8 @@
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef _H5Cpublic_H
|
||||
#define _H5Cpublic_H
|
||||
#ifndef H5Cpublic_H
|
||||
#define H5Cpublic_H
|
||||
|
||||
/* Public headers needed by this file */
|
||||
#include "H5public.h"
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5D package. Including this header means that the source file
|
||||
* is part of the H5D package.
|
||||
*/
|
||||
#ifndef _H5Dmodule_H
|
||||
#define _H5Dmodule_H
|
||||
#ifndef H5Dmodule_H
|
||||
#define H5Dmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -40,4 +40,4 @@
|
||||
* which is obtained by either creating or opening the dataset.
|
||||
*/
|
||||
|
||||
#endif /* _H5Dmodule_H */
|
||||
#endif /* H5Dmodule_H */
|
||||
|
@ -23,8 +23,8 @@
|
||||
#error "Do not include this file outside the H5D package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5Dpkg_H
|
||||
#define _H5Dpkg_H
|
||||
#ifndef H5Dpkg_H
|
||||
#define H5Dpkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5Dprivate.h"
|
||||
|
@ -14,8 +14,8 @@
|
||||
/*
|
||||
* This file contains private information about the H5D module
|
||||
*/
|
||||
#ifndef _H5Dprivate_H
|
||||
#define _H5Dprivate_H
|
||||
#ifndef H5Dprivate_H
|
||||
#define H5Dprivate_H
|
||||
|
||||
/* Include package's public header */
|
||||
#include "H5Dpublic.h"
|
||||
@ -186,4 +186,4 @@ H5_DLL herr_t H5D_virtual_free_parsed_name(H5O_storage_virtual_name_seg_t *name_
|
||||
H5_DLL herr_t H5D_btree_debug(H5F_t *f, haddr_t addr, FILE *stream, int indent, int fwidth, unsigned ndims,
|
||||
const uint32_t *dim);
|
||||
|
||||
#endif /* _H5Dprivate_H */
|
||||
#endif /* H5Dprivate_H */
|
||||
|
@ -14,8 +14,8 @@
|
||||
/*
|
||||
* This file contains public declarations for the H5D module.
|
||||
*/
|
||||
#ifndef _H5Dpublic_H
|
||||
#define _H5Dpublic_H
|
||||
#ifndef H5Dpublic_H
|
||||
#define H5Dpublic_H
|
||||
|
||||
/* System headers needed by this file */
|
||||
|
||||
@ -1618,4 +1618,4 @@ H5_DLL herr_t H5Dvlen_reclaim(hid_t type_id, hid_t space_id, hid_t dxpl_id, void
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /* _H5Dpublic_H */
|
||||
#endif /* H5Dpublic_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5EA package. Including this header means that the source file
|
||||
* is part of the H5EA package.
|
||||
*/
|
||||
#ifndef _H5EAmodule_H
|
||||
#define _H5EAmodule_H
|
||||
#ifndef H5EAmodule_H
|
||||
#define H5EAmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_EARRAY
|
||||
#define H5_MY_PKG_INIT NO
|
||||
|
||||
#endif /* _H5EAmodule_H */
|
||||
#endif /* H5EAmodule_H */
|
||||
|
@ -23,8 +23,8 @@
|
||||
#error "Do not include this file outside the H5EA package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5EApkg_H
|
||||
#define _H5EApkg_H
|
||||
#ifndef H5EApkg_H
|
||||
#define H5EApkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5EAprivate.h"
|
||||
@ -461,4 +461,4 @@ H5_DLL herr_t H5EA__get_cparam_test(const H5EA_t *ea, H5EA_create_t *cparam);
|
||||
H5_DLL int H5EA__cmp_cparam_test(const H5EA_create_t *cparam1, const H5EA_create_t *cparam2);
|
||||
#endif /* H5EA_TESTING */
|
||||
|
||||
#endif /* _H5EApkg_H */
|
||||
#endif /* H5EApkg_H */
|
||||
|
@ -23,8 +23,8 @@
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef _H5EAprivate_H
|
||||
#define _H5EAprivate_H
|
||||
#ifndef H5EAprivate_H
|
||||
#define H5EAprivate_H
|
||||
|
||||
/* Include package's public header */
|
||||
#ifdef NOT_YET
|
||||
@ -155,4 +155,4 @@ H5_DLL herr_t H5EA_get_stats(const H5EA_t *ea, H5EA_stat_t *stats);
|
||||
#ifdef H5EA_DEBUGGING
|
||||
#endif /* H5EA_DEBUGGING */
|
||||
|
||||
#endif /* _H5EAprivate_H */
|
||||
#endif /* H5EAprivate_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5ES package. Including this header means that the source file
|
||||
* is part of the H5ES package.
|
||||
*/
|
||||
#ifndef _H5ESmodule_H
|
||||
#define _H5ESmodule_H
|
||||
#ifndef H5ESmodule_H
|
||||
#define H5ESmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_EVENTSET
|
||||
#define H5_MY_PKG_INIT YES
|
||||
|
||||
#endif /* _H5ESmodule_H */
|
||||
#endif /* H5ESmodule_H */
|
||||
|
@ -22,8 +22,8 @@
|
||||
#error "Do not include this file outside the H5ES package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5ESpkg_H
|
||||
#define _H5ESpkg_H
|
||||
#ifndef H5ESpkg_H
|
||||
#define H5ESpkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5ESprivate.h"
|
||||
@ -98,4 +98,4 @@ H5_DLL H5ES_event_t *H5ES__event_new(H5VL_t *connector, void *token);
|
||||
H5_DLL herr_t H5ES__event_free(H5ES_event_t *ev);
|
||||
H5_DLL herr_t H5ES__event_completed(H5ES_event_t *ev, H5ES_event_list_t *el);
|
||||
|
||||
#endif /* _H5ESpkg_H */
|
||||
#endif /* H5ESpkg_H */
|
||||
|
@ -21,8 +21,8 @@
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef _H5ESprivate_H
|
||||
#define _H5ESprivate_H
|
||||
#ifndef H5ESprivate_H
|
||||
#define H5ESprivate_H
|
||||
|
||||
/* Include package's public header */
|
||||
#include "H5ESpublic.h" /* Event Sets */
|
||||
@ -51,4 +51,4 @@ typedef struct H5ES_t H5ES_t;
|
||||
herr_t H5ES_insert(hid_t es_id, H5VL_t *connector, void *token, const char *caller, const char *caller_args,
|
||||
...);
|
||||
|
||||
#endif /* _H5ESprivate_H */
|
||||
#endif /* H5ESprivate_H */
|
||||
|
@ -14,8 +14,8 @@
|
||||
* This file contains public declarations for the H5ES (event set) module.
|
||||
*/
|
||||
|
||||
#ifndef _H5ESpublic_H
|
||||
#define _H5ESpublic_H
|
||||
#ifndef H5ESpublic_H
|
||||
#define H5ESpublic_H
|
||||
|
||||
/* Public headers needed by this file */
|
||||
#include "H5public.h" /* Generic Functions */
|
||||
@ -133,4 +133,4 @@ H5_DLL herr_t H5ESclose(hid_t es_id);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* _H5ESpublic_H */
|
||||
#endif /* H5ESpublic_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5E package. Including this header means that the source file
|
||||
* is part of the H5E package.
|
||||
*/
|
||||
#ifndef _H5Emodule_H
|
||||
#define _H5Emodule_H
|
||||
#ifndef H5Emodule_H
|
||||
#define H5Emodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_ERROR
|
||||
#define H5_MY_PKG_INIT YES
|
||||
|
||||
#endif /* _H5Emodule_H */
|
||||
#endif /* H5Emodule_H */
|
||||
|
@ -23,8 +23,8 @@
|
||||
#error "Do not include this file outside the H5E package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5Epkg_H
|
||||
#define _H5Epkg_H
|
||||
#ifndef H5Epkg_H
|
||||
#define H5Epkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5Eprivate.h"
|
||||
@ -140,4 +140,4 @@ H5_DLL herr_t H5E__get_auto(const H5E_t *estack, H5E_auto_op_t *op, void **clie
|
||||
H5_DLL herr_t H5E__set_auto(H5E_t *estack, const H5E_auto_op_t *op, void *client_data);
|
||||
H5_DLL herr_t H5E__pop(H5E_t *err_stack, size_t count);
|
||||
|
||||
#endif /* _H5Epkg_H */
|
||||
#endif /* H5Epkg_H */
|
||||
|
@ -14,8 +14,8 @@
|
||||
/*
|
||||
* Header file for error values, etc.
|
||||
*/
|
||||
#ifndef _H5Eprivate_H
|
||||
#define _H5Eprivate_H
|
||||
#ifndef H5Eprivate_H
|
||||
#define H5Eprivate_H
|
||||
|
||||
#include "H5Epublic.h"
|
||||
|
||||
@ -209,4 +209,4 @@ H5_DLL herr_t H5E_printf_stack(H5E_t *estack, const char *file, const char *func
|
||||
H5_DLL herr_t H5E_clear_stack(H5E_t *estack);
|
||||
H5_DLL herr_t H5E_dump_api_stack(hbool_t is_api);
|
||||
|
||||
#endif /* _H5Eprivate_H */
|
||||
#endif /* H5Eprivate_H */
|
||||
|
@ -14,8 +14,8 @@
|
||||
/*
|
||||
* This file contains public declarations for the H5E module.
|
||||
*/
|
||||
#ifndef _H5Epublic_H
|
||||
#define _H5Epublic_H
|
||||
#ifndef H5Epublic_H
|
||||
#define H5Epublic_H
|
||||
|
||||
#include <stdio.h> /*FILE arg of H5Eprint() */
|
||||
|
||||
@ -42,11 +42,11 @@ typedef struct H5E_error2_t {
|
||||
|
||||
/* When this header is included from a private header, don't make calls to H5open() */
|
||||
#undef H5OPEN
|
||||
#ifndef _H5private_H
|
||||
#ifndef H5private_H
|
||||
#define H5OPEN H5open(),
|
||||
#else /* _H5private_H */
|
||||
#else /* H5private_H */
|
||||
#define H5OPEN
|
||||
#endif /* _H5private_H */
|
||||
#endif /* H5private_H */
|
||||
|
||||
/* HDF5 error class */
|
||||
#define H5E_ERR_CLS (H5OPEN H5E_ERR_CLS_g)
|
||||
@ -219,4 +219,4 @@ H5_DLL char * H5Eget_minor(H5E_minor_t min);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* end _H5Epublic_H */
|
||||
#endif /* end H5Epublic_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5FA package. Including this header means that the source file
|
||||
* is part of the H5FA package.
|
||||
*/
|
||||
#ifndef _H5FAmodule_H
|
||||
#define _H5FAmodule_H
|
||||
#ifndef H5FAmodule_H
|
||||
#define H5FAmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_FARRAY
|
||||
#define H5_MY_PKG_INIT NO
|
||||
|
||||
#endif /* _H5FAmodule_H */
|
||||
#endif /* H5FAmodule_H */
|
||||
|
@ -22,8 +22,8 @@
|
||||
#error "Do not include this file outside the H5FA package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5FApkg_H
|
||||
#define _H5FApkg_H
|
||||
#ifndef H5FApkg_H
|
||||
#define H5FApkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5FAprivate.h"
|
||||
@ -299,4 +299,4 @@ H5_DLL herr_t H5FA__get_cparam_test(const H5FA_t *ea, H5FA_create_t *cparam);
|
||||
H5_DLL int H5FA__cmp_cparam_test(const H5FA_create_t *cparam1, const H5FA_create_t *cparam2);
|
||||
#endif /* H5FA_TESTING */
|
||||
|
||||
#endif /* _H5FApkg_H */
|
||||
#endif /* H5FApkg_H */
|
||||
|
@ -21,8 +21,8 @@
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef _H5FAprivate_H
|
||||
#define _H5FAprivate_H
|
||||
#ifndef H5FAprivate_H
|
||||
#define H5FAprivate_H
|
||||
|
||||
/* Include package's public header */
|
||||
#ifdef NOT_YET
|
||||
@ -137,4 +137,4 @@ H5_DLL herr_t H5FA_get_stats(const H5FA_t *ea, H5FA_stat_t *stats);
|
||||
#ifdef H5FA_DEBUGGING
|
||||
#endif /* H5FA_DEBUGGING */
|
||||
|
||||
#endif /* _H5FAprivate_H */
|
||||
#endif /* H5FAprivate_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5FD driver package. Including this header means that the source file
|
||||
* is part of the H5FD driver package.
|
||||
*/
|
||||
#ifndef _H5FDdrvr_module_H
|
||||
#define _H5FDdrvr_module_H
|
||||
#ifndef H5FDdrvr_module_H
|
||||
#define H5FDdrvr_module_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_INIT YES
|
||||
#define H5_PKG_SINGLE_SOURCE
|
||||
|
||||
#endif /* _H5FDdrvr_module_H */
|
||||
#endif /* H5FDdrvr_module_H */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5FD package. Including this header means that the source file
|
||||
* is part of the H5FD package.
|
||||
*/
|
||||
#ifndef _H5FDmodule_H
|
||||
#define _H5FDmodule_H
|
||||
#ifndef H5FDmodule_H
|
||||
#define H5FDmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_VFL
|
||||
#define H5_MY_PKG_INIT YES
|
||||
|
||||
#endif /* _H5FDmodule_H */
|
||||
#endif /* H5FDmodule_H */
|
||||
|
@ -23,8 +23,8 @@
|
||||
#error "Do not include this file outside the H5FD package!"
|
||||
#endif
|
||||
|
||||
#ifndef _H5FDpkg_H
|
||||
#define _H5FDpkg_H
|
||||
#ifndef H5FDpkg_H
|
||||
#define H5FDpkg_H
|
||||
|
||||
/* Get package's private header */
|
||||
#include "H5FDprivate.h" /* File drivers */
|
||||
@ -55,4 +55,4 @@ H5_DLL herr_t H5FD__free_real(H5FD_t *file, H5FD_mem_t type, haddr_t addr, hsiz
|
||||
H5_DLL hbool_t H5FD__supports_swmr_test(const char *vfd_name);
|
||||
#endif /* H5FD_TESTING */
|
||||
|
||||
#endif /* _H5FDpkg_H */
|
||||
#endif /* H5FDpkg_H */
|
||||
|
@ -15,8 +15,8 @@
|
||||
* Programmer: Robb Matzke
|
||||
* Monday, July 26, 1999
|
||||
*/
|
||||
#ifndef _H5FDprivate_H
|
||||
#define _H5FDprivate_H
|
||||
#ifndef H5FDprivate_H
|
||||
#define H5FDprivate_H
|
||||
|
||||
/* Include package's public header */
|
||||
#include "H5FDpublic.h"
|
||||
|
@ -15,8 +15,8 @@
|
||||
* Programmer: Robb Matzke
|
||||
* Monday, July 26, 1999
|
||||
*/
|
||||
#ifndef _H5FDpublic_H
|
||||
#define _H5FDpublic_H
|
||||
#ifndef H5FDpublic_H
|
||||
#define H5FDpublic_H
|
||||
|
||||
#include "H5public.h"
|
||||
#include "H5Fpublic.h" /*for H5F_close_degree_t */
|
||||
|
@ -18,8 +18,8 @@
|
||||
* H5FL package. Including this header means that the source file
|
||||
* is part of the H5FL package.
|
||||
*/
|
||||
#ifndef _H5FLmodule_H
|
||||
#define _H5FLmodule_H
|
||||
#ifndef H5FLmodule_H
|
||||
#define H5FLmodule_H
|
||||
|
||||
/* Define the proper control macros for the generic FUNC_ENTER/LEAVE and error
|
||||
* reporting macros.
|
||||
@ -29,4 +29,4 @@
|
||||
#define H5_MY_PKG_ERR H5E_RESOURCE
|
||||
#define H5_MY_PKG_INIT NO
|
||||
|
||||
#endif /* _H5FLmodule_H */
|
||||
#endif /* H5FLmodule_H */
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user