diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-04-10 23:37:34 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-04-10 23:37:34 (GMT) |
commit | 670ae864af0d876bb24e20338e3a7204219f2285 (patch) | |
tree | fff363a5dd6a0f41dd66aa3f929df67cfb246144 /src/H5FDstdio.c | |
parent | da472d0c9bc5d19088bdea3a3d2143147ace371a (diff) | |
download | hdf5-670ae864af0d876bb24e20338e3a7204219f2285.zip hdf5-670ae864af0d876bb24e20338e3a7204219f2285.tar.gz hdf5-670ae864af0d876bb24e20338e3a7204219f2285.tar.bz2 |
[svn-r5165] Purpose:
Feature
Description:
Added comments that this is intended as an example of file driver.
Added a macro detection at the end to flag if non-public definitions
are used. (only check for H5private.h which is mostly likely used.
Not bullet proof at all.)
Platforms tested:
eirene.
Diffstat (limited to 'src/H5FDstdio.c')
-rw-r--r-- | src/H5FDstdio.c | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/H5FDstdio.c b/src/H5FDstdio.c index d292727..4085de7 100644 --- a/src/H5FDstdio.c +++ b/src/H5FDstdio.c @@ -1,11 +1,13 @@ /* - * Copyright © 1999-2001 NCSA + * Copyright (C) 1999-2002 NCSA * All rights reserved. * - * Programmer: Robb Matzke <matzke@llnl.gov> - * Wednesday, October 22, 1997 + * Programmer: Robb Matzke <matzke@llnl.gov> + * Wednesday, October 22, 1997 * - * Purpose: This is the Posix stdio.h I/O subclass of H5Flow. + * Purpose: This is the Posix stdio.h I/O subclass of H5Flow. + * It also serves as an example of coding a simple file driver, + * therefore, it should not use any non-public definitions. * * Notes: Ported to the new H5FD architecture on 10/18/99 - QAK * @@ -836,3 +838,13 @@ H5FD_stdio_flush(H5FD_t *_file) return(0); } + + +#ifdef _H5private_H +/* + * This is not related to the functionality of the driver code. + * It is added here to trigger warning if HDF5 private definitions are included + * by mistake. The code should use only HDF5 public API and definitions. + */ +#error "Do not use HDF5 private definitions" +#endif |