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.

49 lines
864 B

  1. /*++
  2. Copyright (c) 1989 - 1999 Microsoft Corporation
  3. Module Name:
  4. smbea.h
  5. Abstract:
  6. This module defines the prototypes for various functions which aid in the conversion
  7. from NT's EA format to the OS21.2 style and vice versa.
  8. --*/
  9. #ifndef _SMBEA_H_
  10. #define _SMBEA_H_
  11. VOID
  12. MRxSmbNtGeaListToOs2 (
  13. IN PFILE_GET_EA_INFORMATION NtGetEaList,
  14. IN ULONG GeaListLength,
  15. IN PGEALIST GeaList
  16. );
  17. PGEA
  18. MRxSmbNtGetEaToOs2 (
  19. OUT PGEA Gea,
  20. IN PFILE_GET_EA_INFORMATION NtGetEa
  21. );
  22. ULONG
  23. MRxSmbNtFullEaSizeToOs2 (
  24. IN PFILE_FULL_EA_INFORMATION NtFullEa
  25. );
  26. VOID
  27. MRxSmbNtFullListToOs2 (
  28. IN PFILE_FULL_EA_INFORMATION NtEaList,
  29. IN PFEALIST FeaList
  30. );
  31. PVOID
  32. MRxSmbNtFullEaToOs2 (
  33. OUT PFEA Fea,
  34. IN PFILE_FULL_EA_INFORMATION NtFullEa
  35. );
  36. #endif // _SMBEA_H_
  37.