home *** CD-ROM | disk | FTP | other *** search
-
- /* (c)Copyright Sequiter Software Inc., 1987-1990. All rights reserved.
-
- long d4locked()
- */
-
- #include "d4base.h"
-
- int d4locked( long rec_code )
- {
- BASE *base_ptr ;
-
- base_ptr = d4ptr() ;
-
- if ( base_ptr->file_lock > 0 ) return 1 ;
-
- if ( rec_code > 0 )
- {
- if ( rec_code == base_ptr->rec_lock ) return 1 ;
- return 0 ;
- }
-
- if ( rec_code == 0 )
- if ( base_ptr->file_lock == 0) return 1 ;
-
- return 0 ;
- }
-