home *** CD-ROM | disk | FTP | other *** search
- /*
-
- Routines for retrieving global variables from Clipper - Summer '87
-
- R. Whitt - 5/28/88
-
- */
-
-
- #include "nandef.h"
- #include "extend.h"
-
-
-
- /* Miscellaneous stuff */
-
-
- extern int _date_mode;
- extern int _alt_handle;
-
- CLIPPER getdmod()
- {
- _retni( _date_mode );
- }
-
- CLIPPER althandl()
- {
- _retni( _alt_handle );
- }