📄 registryconstants.java
字号:
//******************************************************************
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -