⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eventlogconstants.java

📁 Java调用Windows API,支持Office
💻 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 EventLogConstants {
	
	private EventLogConstants() {
		// private constructor to keep class from being instantiated.
	}
	
  public static final int EVENTLOG_SUCCESS                =0x0000;
  public static final int EVENTLOG_ERROR_TYPE             =0x0001;
  public static final int EVENTLOG_WARNING_TYPE           =0x0002;
  public static final int EVENTLOG_INFORMATION_TYPE       =0x0004;
  public static final int EVENTLOG_AUDIT_SUCCESS          =0x0008;
  public static final int EVENTLOG_AUDIT_FAILURE          =0x0010;
	
  public static final int EVENTLOG_SEQUENTIAL_READ        =0x0001;
  public static final int EVENTLOG_SEEK_READ              =0x0002;
  public static final int EVENTLOG_FORWARDS_READ          =0x0004;
  public static final int EVENTLOG_BACKWARDS_READ         =0x0008;
}

⌨️ 快捷键说明

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