MACM_SHARED_MEMORY_HEADER.cs 473 B

123456789101112131415161718
  1. using System;
  2. namespace GpuFanControl.MsiAfterburnerWrap.ShareMemoryStructs
  3. {
  4. [Serializable]
  5. public struct MACM_SHARED_MEMORY_HEADER
  6. {
  7. public uint Signature;
  8. public uint Version;
  9. public uint HeaderSize;
  10. public uint GpuEntryCount;
  11. public uint GpuEntrySize;
  12. public uint MasterGpu;
  13. public MACM_SHARED_MEMORY_FLAG Flags;
  14. public uint Time;
  15. public MACM_SHARED_MEMORY_COMMAND Command;
  16. }
  17. }