php-src/win32/flock.h

12 lines
184 B
C
Raw Normal View History

1999-04-08 05:05:13 +08:00
#define fsync _commit
#define ftruncate chsize
/* For flock() emulation */
#define LOCK_SH 1
#define LOCK_EX 2
#define LOCK_NB 4
#define LOCK_UN 8
2003-12-20 07:18:14 +08:00
PHPAPI int flock(int fd, int op);