home *** CD-ROM | disk | FTP | other *** search
-
- /* (c)Copyright Sequiter Software Inc., 1987-1990. All rights reserved.
- */
-
- #include "d4base.h"
-
- extern int v4lock_wait ;
-
-
- int d4lock_wait( int lock_wait )
- {
- int old_lock_wait ;
-
- old_lock_wait = v4lock_wait ;
-
- if ( lock_wait == 0 || lock_wait == 1 )
- v4lock_wait = lock_wait ;
-
- return old_lock_wait ;
- }
-
-