summaryrefslogtreecommitdiff
path: root/v4.0/src/INC/LOCK.INC
blob: 469ce79597975f6700549a3f74510f2a66b5e6c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
;
;Equates for LOCK
;
;LOCK functions
;
Lock_all	    equ    0
Unlock_all	    equ    1
Lock_mul_range	    equ    2
Unlock_mul_range    equ    3
Lock_read	    equ    4
Write_unlock	    equ    5
Lock_add	    equ    6

;
;Structure for Lock buffer

LockBuf    STRUC

   Lock_position DD    ?	    ; file position for LOCK
   Lock_length	 DD    ?	    ; number of bytes to LOCK

LockBuf    ENDS
;