Package com.sun.jna.platform.win32
Class WinNT.EVENTLOGRECORD
java.lang.Object
com.sun.jna.Structure
com.sun.jna.platform.win32.WinNT.EVENTLOGRECORD
- Enclosing interface:
- WinNT
@FieldOrder({"Length","Reserved","RecordNumber","TimeGenerated","TimeWritten","EventID","EventType","NumStrings","EventCategory","ReservedFlags","ClosingRecordNumber","StringOffset","UserSidLength","UserSidOffset","DataLength","DataOffset"})
public static class WinNT.EVENTLOGRECORD
extends Structure
The EVENTLOGRECORD structure contains information about an event record
 returned by the ReadEventLog function.
- 
Nested Class SummaryNested classes/interfaces inherited from class com.sun.jna.StructureStructure.ByReference, Structure.ByValue, Structure.FieldOrder, Structure.StructField
- 
Field SummaryFieldsModifier and TypeFieldDescriptionReserved.Size of the event-specific data (at the position indicated by DataOffset), in bytes.Offset of the event-specific information within this event log record, in bytes.Category for this event.Event identifier.Type of event.Size of this event record, in bytes.Number of strings present in the log (at the position indicated by StringOffset).Record number of the record.Reserved.Reserved.Offset of the description strings within this event log record.Time at which this entry was submitted.Time at which this entry was received by the service to be written to the log.Size of the UserSid member, in bytes.Offset of the security identifier (SID) within this event log record.Fields inherited from class com.sun.jna.StructureALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class com.sun.jna.StructureallocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFieldOrder, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
- 
Field Details- 
LengthSize of this event record, in bytes. Note that this value is stored at both ends of the entry to ease moving forward or backward through the log. The length includes any pad bytes inserted at the end of the record for DWORD alignment.
- 
ReservedReserved.
- 
RecordNumberRecord number of the record. This value can be used with the EVENTLOG_SEEK_READ flag in the ReadEventLog function to begin reading at a specified record.
- 
TimeGeneratedTime at which this entry was submitted. This time is measured in the number of seconds elapsed since 00:00:00 January 1, 1970, Universal Coordinated Time.
- 
TimeWrittenTime at which this entry was received by the service to be written to the log. This time is measured in the number of seconds elapsed since 00:00:00 January 1, 1970, Universal Coordinated Time.
- 
EventIDEvent identifier. The value is specific to the event source for the event, and is used with source name to locate a description string in the message file for the event source.
- 
EventTypeType of event.
- 
NumStringsNumber of strings present in the log (at the position indicated by StringOffset). These strings are merged into the message before it is displayed to the user.
- 
EventCategoryCategory for this event. The meaning of this value depends on the event source.
- 
ReservedFlagsReserved.
- 
ClosingRecordNumberReserved.
- 
StringOffsetOffset of the description strings within this event log record.
- 
UserSidLengthSize of the UserSid member, in bytes. This value can be zero if no security identifier was provided.
- 
UserSidOffsetOffset of the security identifier (SID) within this event log record. To obtain the user name for this SID, use the LookupAccountSid function.
- 
DataLengthSize of the event-specific data (at the position indicated by DataOffset), in bytes.
- 
DataOffsetOffset of the event-specific information within this event log record, in bytes. This information could be something specific (a disk driver might log the number of retries, for example), followed by binary information specific to the event being logged and to the source that generated the entry.
 
- 
- 
Constructor Details- 
EVENTLOGRECORDpublic EVENTLOGRECORD()
- 
EVENTLOGRECORD
 
-