MachinePropertyVariants.cs 626 B

12345678910111213141516
  1. //------------------------------------------------------------------------------
  2. // <copyright file="MachinePropertyVariants.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. //------------------------------------------------------------------------------
  6. namespace Experimental.System.Messaging.Interop
  7. {
  8. internal class MachinePropertyVariants : MessagePropertyVariants
  9. {
  10. public MachinePropertyVariants()
  11. : base(5, NativeMethods.MACHINE_BASE + 1)
  12. {
  13. }
  14. }
  15. }