home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / database / query87.zip / QMISC.C < prev    next >
Text File  |  1988-05-31  |  357b  |  30 lines

  1. /*  
  2.  
  3.     Routines for retrieving global variables from Clipper - Summer '87
  4.  
  5.     R. Whitt  -  5/28/88
  6.  
  7. */
  8.  
  9.  
  10. #include "nandef.h"
  11. #include "extend.h"
  12.  
  13.  
  14.  
  15. /*  Miscellaneous stuff  */
  16.  
  17.  
  18. extern int _date_mode;
  19. extern int _alt_handle;
  20.  
  21. CLIPPER getdmod()
  22. {
  23.    _retni( _date_mode );
  24. }
  25.  
  26. CLIPPER althandl()
  27. {
  28.    _retni( _alt_handle );
  29. }
  30.