home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 January / VPR0101A.BIN / OLS / TAR32053 / tar32053.exe / SRC / VERSION.C < prev    next >
C/C++ Source or Header  |  1999-05-23  |  822b  |  32 lines

  1. #ifndef __DEFCONF_H
  2. #include "defconf.h"
  3. #endif
  4. /*
  5.    This file was hacked for kmtar for WIN32
  6.                                     at 1996-05-06.
  7.                                     by tantan SGL00213@niftyserve.or.jp 
  8. */
  9. /*
  10.  *    version
  11.  *
  12.  */
  13.  
  14. #include <stdio.h>
  15. #include "defs.h"
  16. #include "version.h"
  17. #include "tar32.h"
  18. global void version(void)
  19. {
  20.     int ver;
  21.  
  22.     ver = TarGetVersion();
  23.     //fprintf(stderr,"Tape ARchiver kmtar for WIN32 ver 0.96  "__DATE__"\n");
  24.  
  25.     fprintf(stderr,"Tape ARchiver kmtar for WIN32 DLL ver %d.%02d  "__DATE__"\n"
  26.         ,ver/100,ver%100);
  27.     // fprintf(stderr,"Tape ARchiver kmtar for WIN32 DLL ver " DLL_VERSION_STR "  "__DATE__"\n");
  28.     fprintf(stderr, "Written by kmori, T.Takashima and AssistantIO");
  29.     fprintf(stderr, "   ...tantan ...tsuneo");
  30.     fprintf(stderr, "\n");
  31. }
  32.