using System;
namespace Microsoft.Win32
{
//HKL定义
public static partial class NativeMethods
{
///
/// Selects the previous locale identifier in the circular list of loaded locale identifiers maintained by the system.
///
public static readonly IntPtr HKL_PREV = IntPtr.Zero;
///
/// Selects the next locale identifier in the circular list of loaded locale identifiers maintained by the system.
///
public static readonly IntPtr HKL_NEXT = new IntPtr(1);
}
}