2005-10-30 00:10:23 +08:00
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
2007-02-07 22:56:24 +08:00
|
|
|
* Copyright by The HDF Group. *
|
2005-10-30 00:10:23 +08:00
|
|
|
* 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 files COPYING and Copyright.html. COPYING can be found at the root *
|
|
|
|
* of the source code distribution tree; Copyright.html can be found at the *
|
|
|
|
* root level of an installed copy of the electronic HDF5 document set and *
|
|
|
|
* is linked from the top-level documents page. It can also be found at *
|
2007-02-07 22:56:24 +08:00
|
|
|
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
|
|
|
|
* access to either file, you may request a copy from help@hdfgroup.org. *
|
2005-10-30 00:10:23 +08:00
|
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
|
2010-05-13 22:25:04 +08:00
|
|
|
#ifndef H5DIFFCOMMON_H__
|
|
|
|
#define H5DIFFCOMMON_H__
|
|
|
|
|
|
|
|
#include "h5tools.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
H5TOOLS_DLLVAR unsigned char g_Parallel;
|
|
|
|
H5TOOLS_DLLVAR int g_nTasks;
|
2005-06-29 03:20:56 +08:00
|
|
|
|
2006-12-08 05:53:58 +08:00
|
|
|
void usage(void);
|
2007-11-14 05:40:23 +08:00
|
|
|
void parse_command_line(int argc, const char* argv[], const char** fname1, const char** fname2, const char** objname1, const char** objname2, diff_opt_t* options);
|
2005-02-17 04:20:40 +08:00
|
|
|
void h5diff_exit(int status);
|
2007-02-27 02:21:41 +08:00
|
|
|
void print_info(diff_opt_t* options);
|
2005-02-17 04:20:40 +08:00
|
|
|
|
2010-05-13 22:25:04 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* H5DIFFCOMMON_H__ */
|