Structure.ByReference, Structure.ByValue, Structure.StructField
Modifier and Type | Field | Description |
---|---|---|
int |
cb |
The structure's size, in bytes.
|
Ddeml.CONVCONTEXT |
ConvCtxt |
Conversation context
|
static java.util.List<java.lang.String> |
FIELDS |
|
Ddeml.HCONVLIST |
hConvList |
Parent hConvList if this conversation is in a list
|
Ddeml.HCONV |
hConvPartner |
hConv on other end or 0 if non-ddemgr partner
|
Ddeml.HSZ |
hszItem |
Transaction item name or NULL if quiescent
|
Ddeml.HSZ |
hszServiceReq |
AppName requested for connection
|
Ddeml.HSZ |
hszSvcPartner |
App name of partner if obtainable
|
Ddeml.HSZ |
hszTopic |
Topic name for conversation
|
BaseTSD.DWORD_PTR |
hUser |
User specified field
|
WinDef.HWND |
hwnd |
Window handle for this conversation
|
WinDef.HWND |
hwndPartner |
Partner window handle for this conversation
|
int |
wConvst |
XST_ constant for current transaction
|
int |
wFmt |
Transaction format or NULL if quiescent
|
int |
wLastError |
Last transaction error.
|
int |
wStatus |
ST_ constant for current conversation
|
int |
wType |
XTYP_ for current transaction
|
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor | Description |
---|---|
CONVINFO() |
Modifier and Type | Method | Description |
---|---|---|
protected java.util.List<java.lang.String> |
getFieldOrder() |
Return this Structure's field names in their proper order.
|
void |
write() |
Writes the fields of the struct to native memory
|
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, writeField, writeField, writeField
public static final java.util.List<java.lang.String> FIELDS
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 java.util.List<java.lang.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