FILELOCK data structure.
typedef struct _FILELOCK {
LONG lOffset; /* Offset to the beginning of the lock (or unlock) range. */
LONG lRange; /* Length, in bytes, of the lock (or unlock) range. */
} FILELOCK;
typedef FILELOCK * PFILELOCK ;