public static class Winsvc.SERVICE_FAILURE_ACTIONS_FLAG extends Winsvc.ChangeServiceConfig2Info
Structure.ByReference, Structure.ByValue, Structure.StructField
Modifier and Type | Field | Description |
---|---|---|
int |
fFailureActionsOnNonCrashFailures |
If this member is TRUE and the service has configured failure actions, the failure
actions are queued if the service process terminates without reporting a status of
SERVICE_STOPPED or if it enters the SERVICE_STOPPED state but the dwWin32ExitCode member
of the SERVICE_STATUS structure is not ERROR_SUCCESS (0).
|
static java.util.List<java.lang.String> |
FIELDS |
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor | Description |
---|---|
SERVICE_FAILURE_ACTIONS_FLAG() |
|
SERVICE_FAILURE_ACTIONS_FLAG(Pointer p) |
Modifier and Type | Method | Description |
---|---|---|
protected java.util.List |
getFieldOrder() |
Return this Structure's field names in their proper order.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldOrder, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
public int fFailureActionsOnNonCrashFailures
public static final java.util.List<java.lang.String> FIELDS
public SERVICE_FAILURE_ACTIONS_FLAG()
public SERVICE_FAILURE_ACTIONS_FLAG(Pointer p)
protected java.util.List getFieldOrder()
Structure
protected List getFieldOrder() {
return Arrays.asList(new String[] { ... });
}
IMPORTANT
When deriving from an existing Structure subclass, ensure that
you augment the list provided by the superclass, e.g.
protected List getFieldOrder() {
List fields = new ArrayList(super.getFieldOrder());
fields.addAll(Arrays.asList(new String[] { ... }));
return fields;
}
Field order must be explicitly indicated, since the
field order as returned by Class.getFields()
is not
guaranteed to be predictable.getFieldOrder
in class Structure