Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
448 B

  1. ;** LOCK.INC - Definitions for Record Locking
  2. ;
  3. ;** LOCK functions
  4. ;
  5. LOCK_ALL equ 0
  6. UNLOCK_ALL equ 1
  7. LOCK_MUL_RANGE equ 2
  8. UNLOCK_MUL_RANGE equ 3
  9. LOCK_READ equ 4
  10. WRITE_UNLOCK equ 5
  11. LOCK_ADD equ 6
  12. ;** Structure for Lock buffer
  13. LockBuf STRUC
  14. Lock_position DD ? ; file position for LOCK
  15. Lock_length DD ? ; number of bytes to LOCK
  16. LockBuf ENDS