Structure.ByReference, Structure.ByValue, Structure.StructField
Modifier and Type | Field and Description |
---|---|
int |
cb |
Ddeml.CONVCONTEXT |
ConvCtxt |
static List<String> |
FIELDS |
Ddeml.HCONVLIST |
hConvList |
Ddeml.HCONV |
hConvPartner |
Ddeml.HSZ |
hszItem |
Ddeml.HSZ |
hszServiceReq |
Ddeml.HSZ |
hszSvcPartner |
Ddeml.HSZ |
hszTopic |
BaseTSD.DWORD_PTR |
hUser |
WinDef.HWND |
hwnd |
WinDef.HWND |
hwndPartner |
int |
wConvst |
int |
wFmt |
int |
wLastError |
int |
wStatus |
int |
wType |
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor and Description |
---|
CONVINFO() |
Modifier and Type | Method and Description |
---|---|
protected List<String> |
getFieldOrder()
Return this Structure's field names in their proper order.
|
void |
write()
Writes the fields of the struct to native memory
|
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, writeField, writeField, writeField
public int cb
public BaseTSD.DWORD_PTR hUser
public Ddeml.HCONV hConvPartner
public Ddeml.HSZ hszSvcPartner
public Ddeml.HSZ hszServiceReq
public Ddeml.HSZ hszTopic
public Ddeml.HSZ hszItem
public int wFmt
public int wType
public int wStatus
public int wConvst
public int wLastError
public Ddeml.HCONVLIST hConvList
public Ddeml.CONVCONTEXT ConvCtxt
public WinDef.HWND hwnd
public WinDef.HWND hwndPartner
public void write()
Structure
protected List<String> 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