home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dho.zip / DHO / SRC / BASEUTIL.CC < prev    next >
C/C++ Source or Header  |  1995-08-30  |  551b  |  25 lines

  1. /****************************************/
  2. /*    Developer Helper Object Set       */
  3. /*  (C) 1994-95 Thomas E. Bednarz, Jr.  */
  4. /*     All rights reserved              */
  5. /***************************************/
  6.  
  7. /* $Id: baseutil.cc 1.5 1995/08/30 00:39:55 teb Exp $ */
  8.  
  9.  
  10. #include<baseutil.h>
  11.  
  12. static const char *dho_base = "Developer Helper Base Objects, version 1.0Beta";
  13. static const char *dho_ver = "1.0B";
  14.  
  15.  
  16. const char *DHOgetBaseVersion(void)
  17. {
  18.    return dho_base;
  19. }
  20.  
  21. const char *DHOgetRev(void)
  22. {
  23.    return dho_ver;
  24. }
  25.