Package com.sun.jna.platform.win32
Interface Winevt.EVT_LOG_PROPERTY_ID
- Enclosing interface:
- Winevt
public static interface Winevt.EVT_LOG_PROPERTY_ID
Defines the identifiers that identify the log file metadata properties of a channel or log file.
https://msdn.microsoft.com/en-us/library/windows/desktop/aa385536(v=vs.85).aspx
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Identifies the property that contains the file attributes (for details on the file attributes, see the GetFileAttributesEx function).static final int
Identifies the property that contains the time that the channel or log file was created.static final int
Identifies the property that contains the size of the file, in bytes.static final int
Identifies the property that you use to determine whether the channel or log file is full.static final int
Identifies the property that contains the last time that the channel or log file was accessed.static final int
Identifies the property that contains the last time that the channel or log file was written to.static final int
Identifies the property that contains the number of records in the channel or log file.static final int
Identifies the property that contains the record number of the oldest event in the channel or log file.
-
Field Details
-
EvtLogCreationTime
static final int EvtLogCreationTimeIdentifies the property that contains the time that the channel or log file was created. The variant type for this property is EvtVarTypeFileTime.- See Also:
-
EvtLogLastAccessTime
static final int EvtLogLastAccessTimeIdentifies the property that contains the last time that the channel or log file was accessed. The variant type for this property is EvtVarTypeFileTime.- See Also:
-
EvtLogLastWriteTime
static final int EvtLogLastWriteTimeIdentifies the property that contains the last time that the channel or log file was written to. The variant type for this property is EvtVarTypeFileTime.- See Also:
-
EvtLogFileSize
static final int EvtLogFileSizeIdentifies the property that contains the size of the file, in bytes. The variant type for this property is EvtVarTypeUInt64.- See Also:
-
EvtLogAttributes
static final int EvtLogAttributesIdentifies the property that contains the file attributes (for details on the file attributes, see the GetFileAttributesEx function). The variant type for this property is EvtVarTypeUInt32.- See Also:
-
EvtLogNumberOfLogRecords
static final int EvtLogNumberOfLogRecordsIdentifies the property that contains the number of records in the channel or log file. The variant type for this property is EvtVarTypeUInt64.- See Also:
-
EvtLogOldestRecordNumber
static final int EvtLogOldestRecordNumberIdentifies the property that contains the record number of the oldest event in the channel or log file. The variant type for this property is EvtVarTypeUInt64.- See Also:
-
EvtLogFull
static final int EvtLogFullIdentifies the property that you use to determine whether the channel or log file is full. The variant type for this property is EvtVarTypeBoolean. The channel is full if another event cannot be written to the channel (for example, if the channel is sequential and maximum size is reached). The property will always be false if the channel is circular or the sequential log is automatically backed up.- See Also:
-