HKL.cs 588 B

1234567891011121314151617
  1. using System;
  2. namespace Microsoft.Win32
  3. {
  4. //HKL定义
  5. public static partial class NativeMethods
  6. {
  7. /// <summary>
  8. /// Selects the previous locale identifier in the circular list of loaded locale identifiers maintained by the system.
  9. /// </summary>
  10. public static readonly IntPtr HKL_PREV = IntPtr.Zero;
  11. /// <summary>
  12. /// Selects the next locale identifier in the circular list of loaded locale identifiers maintained by the system.
  13. /// </summary>
  14. public static readonly IntPtr HKL_NEXT = new IntPtr(1);
  15. }
  16. }