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.

57 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name :
  4. fsconsts.h
  5. Abstract:
  6. File System constants defined here
  7. Author:
  8. Murali R. Krishnan ( MuraliK ) 21-Feb-1995
  9. Environment:
  10. User Mode -- Win32
  11. Project:
  12. Internet Services Common Headers
  13. Revision History:
  14. --*/
  15. # ifndef _FSCONST_H_
  16. # define _FSCONST_H_
  17. /************************************************************
  18. * Include Headers
  19. ************************************************************/
  20. /************************************************************
  21. * Symbolic Constants
  22. ************************************************************/
  23. //
  24. // Constants that define values for each file system we
  25. // are going to support for servers
  26. // FS_ is a prefix for FileSystem type
  27. //
  28. # define FS_ERROR ( 0x00000000) // initializing value
  29. # define FS_FAT ( 0x00000001)
  30. # define FS_NTFS ( 0x00000002)
  31. # define FS_HPFS ( 0x00000003)
  32. # define FS_OFS ( 0x00000004)
  33. # define FS_CDFS ( 0x00000005)
  34. # endif // _FSCONST_H_
  35. /************************ End of File ***********************/
  36.