home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dho.zip / DHO / SRC / SOURCE.ZIP / baseutil.cc < prev    next >
C/C++ Source or Header  |  1995-08-27  |  548b  |  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.4 1995/08/13 03:21:12 teb Exp $ */
  8.  
  9.  
  10. #include<baseutil.h>
  11.  
  12. static const char *dho_base = "Developer Helper Base Objects, version 0.9a";
  13. static const char *dho_ver = "1.0A";
  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.