This commit is contained in:
2008-08-27 09:56:14 +00:00
parent 3f9da8b2bd
commit 5b381c8def
3 changed files with 24 additions and 0 deletions
+2
View File
@@ -381,6 +381,8 @@ src/h5/h5_core.h -text
src/h5/h5_core_private.h -text
src/h5/h5_private.h -text
src/h5/h5_types.h -text
src/h5/h5t_boundaries.c -text
src/h5/h5t_boundaries.h -text
src/h5/maps.c -text
src/h5/maps.h -text
src/h5/readwrite.c -text
+12
View File
@@ -0,0 +1,12 @@
#include <hdf5.h>
#include "h5/h5_core.h"
#include "h5/h5_core_private.h"
h5_err_t
h5t_add_boundary (
h5_file *f,
const char * const bname
) {
return -1;
}
+10
View File
@@ -0,0 +1,10 @@
#ifndef __T_BOUNDARIES_H
#define __T_BOUNDARIES_H
h5_err_t
h5t_add_boundary (
h5_file *f,
const char * const bname
);
#endif