registryconstants.java

来自「Java调用Windows API,支持Office」· Java 代码 · 共 24 行

JAVA
24
字号
//******************************************************************
// 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 org.jawin.donated.win32;

public class RegistryConstants {
	
	private RegistryConstants() {
		// private constructor to keep class from being instantiated.
	}
	
  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 + -
显示快捷键?