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.

46 lines
493 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. pathlist.h
  5. Abstract:
  6. SIS Groveler path list headers
  7. Authors:
  8. John Douceur, 1998
  9. Environment:
  10. User Mode
  11. Revision History:
  12. --*/
  13. #ifndef _INC_PATHLIST
  14. #define _INC_PATHLIST
  15. struct PathList
  16. {
  17. PathList();
  18. ~PathList();
  19. int *num_paths;
  20. const _TCHAR ***paths;
  21. private:
  22. int num_partitions;
  23. BYTE *buffer;
  24. _TCHAR **partition_buffers;
  25. };
  26. #endif /* _INC_PATHLIST */