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.
 
 
 
 
 
 

40 lines
614 B

/*++
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
remlock.c
Abstract:
This is the NT SCSI port driver.
Authors:
Peter Wieland
Kenneth Ray
Environment:
kernel mode only
Notes:
Revision History:
--*/
#define IO_REMOVE_LOCK_SIG 'COLR'
typedef struct _IO_REMOVE_LOCK_TRACKING_BLOCK {
struct _IO_REMOVE_LOCK_TRACKING_BLOCK * Link;
PVOID Tag;
LARGE_INTEGER TimeLocked;
PCSTR File;
ULONG Line;
} IO_REMOVE_LOCK_TRACKING_BLOCK, *PIO_REMOVE_LOCK_TRACKING_BLOCK;