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.

22 lines
592 B

  1. using System.Runtime.InteropServices;
  2. namespace Apewer.Internals.Interop
  3. {
  4. /// <summary></summary>
  5. [StructLayout(LayoutKind.Sequential)]
  6. struct SystemInfo
  7. {
  8. public uint dwOemId;
  9. public uint dwPageSize;
  10. public uint lpMinimumApplicationAddress;
  11. public uint lpMaximumApplicationAddress;
  12. public uint dwActiveProcessorMask;
  13. public uint dwNumberOfProcessors;
  14. public uint dwProcessorType;
  15. public uint dwAllocationGranularity;
  16. public uint dwProcessorLevel;
  17. public uint dwProcessorRevision;
  18. }
  19. }