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

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. remlock.c
  5. Abstract:
  6. This is the NT SCSI port driver.
  7. Authors:
  8. Peter Wieland
  9. Kenneth Ray
  10. Environment:
  11. kernel mode only
  12. Notes:
  13. Revision History:
  14. --*/
  15. #define IO_REMOVE_LOCK_SIG 'COLR'
  16. typedef struct _IO_REMOVE_LOCK_TRACKING_BLOCK {
  17. struct _IO_REMOVE_LOCK_TRACKING_BLOCK * Link;
  18. PVOID Tag;
  19. LARGE_INTEGER TimeLocked;
  20. PCSTR File;
  21. ULONG Line;
  22. } IO_REMOVE_LOCK_TRACKING_BLOCK, *PIO_REMOVE_LOCK_TRACKING_BLOCK;