Commit 38434254 authored by Claes Sjofors's avatar Claes Sjofors

Minor printing modifications

parent bb03c989
...@@ -104,7 +104,7 @@ int main (int argc, char **argv) ...@@ -104,7 +104,7 @@ int main (int argc, char **argv)
cp = createContext(argc, argv); cp = createContext(argc, argv);
ver_WriteVersionInfo("PROVIEW/R Process Environment"); ver_WriteVersionInfo("Proview Runtime Environment");
if (cp->flags.b.restart) { if (cp->flags.b.restart) {
sts = interactive(argc, argv, cp); sts = interactive(argc, argv, cp);
......
...@@ -88,12 +88,12 @@ ...@@ -88,12 +88,12 @@
# define SET_VERSION(a, b, c, d) ((pwr_tVersion)((a << 24) + (a << 16) + (a << 8) + a)) # define SET_VERSION(a, b, c, d) ((pwr_tVersion)((a << 24) + (a << 16) + (a << 8) + a))
#endif #endif
#define pwrv_cBuildTimeStr "13-DEC-2011 17:00:00" #define pwrv_cBuildTimeStr "01-MAR-2012 16:00:00"
#define pwrv_cPwrVersionStr "V4.8.4" #define pwrv_cPwrVersionStr "V4.8.4"
#define pwrv_cPwrVersion SET_VERSION('V', 4, 8, 4) #define pwrv_cPwrVersion SET_VERSION('V', 4, 8, 4)
#define pwrv_cWbdbVersionShortStr "V48" #define pwrv_cWbdbVersionShortStr "V48"
#define pwrv_cPwrCopyright "Copyright (C) 2005-2012 SSAB EMEA" #define pwrv_cPwrCopyright "Copyright (C) 2005-2012 SSAB EMEA AB"
#endif #endif
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
#include <time.h> #include <time.h>
#include "pwr_version.h" #include "pwr_version.h"
#include "co_ver.h" #include "co_ver.h"
#include "co_syi.h"
void void
ver_WriteVersionInfo ( ver_WriteVersionInfo (
...@@ -48,8 +49,8 @@ ver_WriteVersionInfo ( ...@@ -48,8 +49,8 @@ ver_WriteVersionInfo (
) { ) {
printf("\n Proview/R Version %s for %s on %s\n", pwrv_cPwrVersionStr, printf("\n Proview/R Version %s for %s on %s\n", pwrv_cPwrVersionStr,
pwrv_cOpSys, pwrv_cHardware); syi_OpSys(), syi_Hardware());
printf(" Copyright © %s by SSAB Oxelösund AB\n\n", pwrv_cBuildTimeStr); printf(" %s\n\n", pwrv_cPwrCopyright);
printf(" Proview/R is free software; you can redistribute it and/or\n\ printf(" Proview/R is free software; you can redistribute it and/or\n\
modify it under the terms of the GNU General Public License.\n\n\ modify it under the terms of the GNU General Public License.\n\n\
This program is distributed in the hope that it will be useful\n\ This program is distributed in the hope that it will be useful\n\
......
...@@ -129,6 +129,7 @@ static void usage() ...@@ -129,6 +129,7 @@ static void usage()
" -s Show a selection list of OpPlace objects." << endl << " -s Show a selection list of OpPlace objects." << endl <<
" -a Connect to audio device." << endl << " -a Connect to audio device." << endl <<
" -q Hide license information." << endl << " -q Hide license information." << endl <<
" -n Network optimized." << endl <<
" -c Add close button to operator window." << endl << endl; " -c Add close button to operator window." << endl << endl;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment