MMIO.cs 454 B

12345678910111213141516171819
  1. namespace Microsoft.Win32
  2. {
  3. //MMIO定义
  4. public static partial class NativeMethods
  5. {
  6. /// <summary>
  7. /// MMIO_READ
  8. /// </summary>
  9. public const int MMIO_READ = 0;
  10. /// <summary>
  11. /// MMIO_FINDRIFF
  12. /// </summary>
  13. public const int MMIO_FINDRIFF = 0x20;
  14. /// <summary>
  15. /// MMIO_ALLOCBUF
  16. /// </summary>
  17. public const int MMIO_ALLOCBUF = 0x10000;
  18. }
  19. }