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.

53 lines
963 B

  1. /*++
  2. Copyright (c) 1989 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. Revision History:
  9. Joe Linn [JoeLinn] 17-April-1996 Lifted these from the rdr1
  10. --*/
  11. #ifndef _SMBEA_H_
  12. #define _SMBEA_H_
  13. VOID
  14. MRxSmbNtGeaListToOs2 (
  15. IN PFILE_GET_EA_INFORMATION NtGetEaList,
  16. IN ULONG GeaListLength,
  17. IN PGEALIST GeaList
  18. );
  19. PGEA
  20. MRxSmbNtGetEaToOs2 (
  21. OUT PGEA Gea,
  22. IN PFILE_GET_EA_INFORMATION NtGetEa
  23. );
  24. ULONG
  25. MRxSmbNtFullEaSizeToOs2 (
  26. IN PFILE_FULL_EA_INFORMATION NtFullEa
  27. );
  28. VOID
  29. MRxSmbNtFullListToOs2 (
  30. IN PFILE_FULL_EA_INFORMATION NtEaList,
  31. IN PFEALIST FeaList
  32. );
  33. PVOID
  34. MRxSmbNtFullEaToOs2 (
  35. OUT PFEA Fea,
  36. IN PFILE_FULL_EA_INFORMATION NtFullEa
  37. );
  38. #endif // _SMBEA_H_
  39.