home *** CD-ROM | disk | FTP | other *** search
-
- /* d4ptr.c (c)Copyright Sequiter Software Inc., 1987-1990. All rights reserved.
-
- Returns a pointer to the current database structure.
- */
-
- #include "d4base.h"
-
- extern BASE *v4base ;
- extern int v4cur_base ;
-
-
- BASE * d4ptr()
- {
- if (v4cur_base >= 0)
- return( v4base+v4cur_base ) ;
- else
- return( (BASE *) 0) ;
- }
-