mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-24 15:25:00 +08:00
Added H5Oint.c file.
This commit is contained in:
parent
1ddb1a08f1
commit
45b561f2f2
1
MANIFEST
1
MANIFEST
@ -753,6 +753,7 @@
|
||||
./src/H5Oflush.c
|
||||
./src/H5Ofsinfo.c
|
||||
./src/H5Oginfo.c
|
||||
./src/H5Oint.c
|
||||
./src/H5Olayout.c
|
||||
./src/H5Olinfo.c
|
||||
./src/H5Olink.c
|
||||
|
@ -454,6 +454,7 @@ set (H5O_SOURCES
|
||||
${HDF5_SRC_DIR}/H5Oflush.c
|
||||
${HDF5_SRC_DIR}/H5Ofsinfo.c
|
||||
${HDF5_SRC_DIR}/H5Oginfo.c
|
||||
${HDF5_SRC_DIR}/H5Oint.c
|
||||
${HDF5_SRC_DIR}/H5Olayout.c
|
||||
${HDF5_SRC_DIR}/H5Olinfo.c
|
||||
${HDF5_SRC_DIR}/H5Olink.c
|
||||
|
@ -13,11 +13,9 @@
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* Created: H5O.c
|
||||
* Aug 5 1997
|
||||
* Robb Matzke <matzke@llnl.gov>
|
||||
* Created: H5O.c
|
||||
*
|
||||
* Purpose: Object header routines.
|
||||
* Purpose: Public object header routines
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
72
src/H5Oint.c
Normal file
72
src/H5Oint.c
Normal file
@ -0,0 +1,72 @@
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* Copyright by The HDF Group. *
|
||||
* Copyright by the Board of Trustees of the University of Illinois. *
|
||||
* 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. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
*
|
||||
* Created: H5O.c
|
||||
*
|
||||
* Purpose: Internal object header routines
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
/****************/
|
||||
/* Module Setup */
|
||||
/****************/
|
||||
|
||||
#include "H5Omodule.h" /* This source code file is part of the H5O module */
|
||||
|
||||
|
||||
/***********/
|
||||
/* Headers */
|
||||
/***********/
|
||||
#include "H5private.h" /* Generic Functions */
|
||||
#include "H5Eprivate.h" /* Error handling */
|
||||
#include "H5Opkg.h" /* Object headers */
|
||||
|
||||
|
||||
/****************/
|
||||
/* Local Macros */
|
||||
/****************/
|
||||
|
||||
|
||||
/******************/
|
||||
/* Local Typedefs */
|
||||
/******************/
|
||||
|
||||
|
||||
/********************/
|
||||
/* Package Typedefs */
|
||||
/********************/
|
||||
|
||||
|
||||
/********************/
|
||||
/* Local Prototypes */
|
||||
/********************/
|
||||
|
||||
|
||||
/*********************/
|
||||
/* Package Variables */
|
||||
/*********************/
|
||||
|
||||
|
||||
/*****************************/
|
||||
/* Library Private Variables */
|
||||
/*****************************/
|
||||
|
||||
|
||||
/*******************/
|
||||
/* Local Variables */
|
||||
/*******************/
|
||||
|
||||
|
@ -84,7 +84,7 @@ libhdf5_la_SOURCES= H5.c H5checksum.c H5dbg.c H5system.c H5timer.c H5trace.c \
|
||||
H5Ochunk.c \
|
||||
H5Ocont.c H5Ocopy.c H5Odbg.c H5Odrvinfo.c H5Odtype.c H5Oefl.c \
|
||||
H5Ofill.c H5Oflush.c H5Ofsinfo.c H5Oginfo.c \
|
||||
H5Olayout.c \
|
||||
H5Oint.c H5Olayout.c \
|
||||
H5Olinfo.c H5Olink.c H5Omessage.c H5Omtime.c \
|
||||
H5Oname.c H5Onull.c H5Opline.c H5Orefcount.c \
|
||||
H5Osdspace.c H5Oshared.c \
|
||||
|
Loading…
Reference in New Issue
Block a user