home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
borland
/
cb
/
setup
/
cbuilder
/
data.z
/
LOCKING.H
< prev
next >
Wrap
Text File
|
1997-02-28
|
618b
|
26 lines
/* locking.h
Definitions for mode parameter of locking() function.
*/
/*
* C/C++ Run Time Library - Version 8.0
*
* Copyright (c) 1990, 1997 by Borland International
* All Rights Reserved.
*
*/
/* $Revision: 8.1 $ */
#if !defined(__LOCKING_H)
#define __LOCKING_H
#define LK_UNLCK 0 /* unlock file region */
#define LK_LOCK 1 /* lock file region, try for 10 seconds */
#define LK_NBLCK 2 /* lock file region, don't block */
#define LK_RLCK 3 /* same as LK_LOCK */
#define LK_NBRLCK 4 /* same as LK_NBLCK */
#endif /* __LOCKING_H */