選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

52 行
2.2 KiB

  1. /* Copyright (C) 2008-2016 Peter Palotas, Jeffrey Jangli, Alexandr Normuradov
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to deal
  5. * in the Software without restriction, including without limitation the rights
  6. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. * copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. * THE SOFTWARE.
  20. */
  21. using System;
  22. using System.Runtime.InteropServices;
  23. namespace Alphaleonis.Win32.Filesystem
  24. {
  25. internal static partial class NativeMethods
  26. {
  27. /// <summary>Contains stream data.</summary>
  28. [StructLayout(LayoutKind.Sequential, Pack = 1, CharSet = CharSet.Unicode)]
  29. [SerializableAttribute]
  30. internal struct WIN32_STREAM_ID
  31. {
  32. /// <summary>Type of stream data.</summary>
  33. [MarshalAs(UnmanagedType.U4)]
  34. public readonly BackupStreamType dwStreamId;
  35. /// <summary>Attributes of data to facilitate cross-operating system transfer.</summary>
  36. [MarshalAs(UnmanagedType.U4)]
  37. public readonly StreamAttributes dwStreamAttributes;
  38. /// <summary>Size of data, in bytes.</summary>
  39. [MarshalAs(UnmanagedType.U8)]
  40. public readonly ulong Size;
  41. /// <summary>Length of the name of the alternative data stream, in bytes.</summary>
  42. [MarshalAs(UnmanagedType.U4)]
  43. public readonly uint dwStreamNameSize;
  44. }
  45. }
  46. }