registryconstants.java

来自「用于Java 组件和通过Windows COM 对象或Windows DLL 来」· Java 代码 · 共 20 行

JAVA
20
字号
//******************************************************************
// Released under the DevelopMentor OpenSource Software License.
// Please consult the LICENSE file in the project root directory,
// or at http://www.develop.com for details before using this
// software.
//******************************************************************

package com.develop.jawin.win32;

public interface RegistryConstants 
{
  public static final int HKEY_CLASSES_ROOT           =0x80000000;
  public static final int HKEY_CURRENT_USER           =0x80000001;
  public static final int HKEY_LOCAL_MACHINE          =0x80000002;
  public static final int HKEY_USERS                  =0x80000003;
  public static final int HKEY_PERFORMANCE_DATA       =0x80000004;
  public static final int HKEY_CURRENT_CONFIG         =0x80000005;
  public static final int HKEY_DYN_DATA               =0x80000006;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?