123456789101112131415161718 |
- using System;
- namespace GpuFanControl.MsiAfterburnerWrap.ShareMemoryStructs
- {
- [Serializable]
- public struct MACM_SHARED_MEMORY_HEADER
- {
- public uint Signature;
- public uint Version;
- public uint HeaderSize;
- public uint GpuEntryCount;
- public uint GpuEntrySize;
- public uint MasterGpu;
- public MACM_SHARED_MEMORY_FLAG Flags;
- public uint Time;
- public MACM_SHARED_MEMORY_COMMAND Command;
- }
- }
|