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.

41 lines
850 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. IopFileUtil.h
  5. Abstract:
  6. This header contains private information to implement various file utility
  7. functions for the Io subsystem. This file is mean to be included only by
  8. IoFileUtil.c.
  9. Author:
  10. Adrian J. Oney - April 4, 2000
  11. Revision History:
  12. --*/
  13. typedef struct {
  14. LIST_ENTRY Link;
  15. UNICODE_STRING Directory;
  16. WCHAR Name[1];
  17. } DIRWALK_ENTRY, *PDIRWALK_ENTRY;
  18. NTSTATUS
  19. IopFileUtilWalkDirectoryTreeHelper(
  20. IN PUNICODE_STRING Directory,
  21. IN ULONG Flags,
  22. IN DIRWALK_CALLBACK CallbackFunction,
  23. IN PVOID Context,
  24. IN PUCHAR Buffer,
  25. IN ULONG BufferSize,
  26. IN OUT PLIST_ENTRY DirList
  27. );