[svn-r18757] Enable tools lib to be built as a dll on windows. Added two get/set functions for progname and d_status.

Also add windows import/export declarations to functions.
Updated windows - H5pubconf.h for packed bits function

Tested:
   Windows, linux
This commit is contained in:
Allen Byrne
2010-05-11 12:49:41 -05:00
parent 9e595dec19
commit 05d75af8b8
37 changed files with 604 additions and 501 deletions

View File

@@ -23,10 +23,6 @@ static int check_n_input( const char* );
static int check_p_input( const char* );
static int check_d_input( const char* );
/* module-scoped variables */
const char *progname = "h5diff";
/*
* Command-line options: The user can specify short or long-named
* parameters.
@@ -90,7 +86,7 @@ void parse_command_line(int argc,
usage();
h5diff_exit(EXIT_SUCCESS);
case 'V':
print_version(progname);
print_version(h5tools_getprogname());
h5diff_exit(EXIT_SUCCESS);
case 'v':
options->m_verbose = 1;
@@ -103,7 +99,7 @@ void parse_command_line(int argc,
options->m_report = 1;
break;
case 'l':
options->follow_links = 1;
options->follow_links = 1;
break;
case 'x':
options->no_dangle_links = 1;
@@ -174,7 +170,7 @@ void parse_command_line(int argc,
/* check for file names to be processed */
if (argc <= opt_ind || argv[ opt_ind + 1 ] == NULL)
{
error_msg(progname, "missing file names\n");
error_msg(h5tools_getprogname(), "missing file names\n");
usage();
h5diff_exit(EXIT_FAILURE);
}