home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0040 - 0049 / ibm0040-0049 / ibm0040.tar / ibm0040 / ZINC_5.ZIP / WINSRC.ZIP / G_TIME.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-01  |  429 b   |  18 lines

  1. //    Zinc Interface Library - G_TIME.CPP
  2. //    COPYRIGHT (C) 1990, 1991.  All Rights Reserved.
  3. //    Zinc Software Incorporated.  Pleasant Grove, Utah  USA
  4.  
  5. #include "ui_gen.hpp"
  6.  
  7. static char *_am = "a.m.";
  8. static char *_pm = "p.m.";
  9.  
  10. char *UI_TIME::amPtr = _am;
  11. char *UI_TIME::pmPtr = _pm;
  12.  
  13. void UI_TIME::AmPmSet(char *a_amPtr, char *a_pmPtr)
  14. {
  15.     amPtr = (a_amPtr) ? a_amPtr : _am;
  16.     pmPtr = (a_pmPtr) ? a_pmPtr : _pm;
  17. }
  18.