Package com.sun.jna.platform.win32
Class Ddeml.MONLINKSTRUCT
java.lang.Object
com.sun.jna.Structure
com.sun.jna.platform.win32.Ddeml.MONLINKSTRUCT
- Enclosing interface:
- Ddeml
@FieldOrder({"cb","dwTime","hTask","fEstablished","fNoData","hszSvc","hszTopic","hszItem","wFmt","fServer","hConvServer","hConvClient"})
public static class Ddeml.MONLINKSTRUCT
extends Structure
Contains information about a Dynamic Data Exchange (DDE) advise loop. A
 DDE monitoring application can use this structure to obtain information
 about an advise loop that has started or ended.
 
Remarks
Because string handles are local to the process, the hszSvc, hszTopic, and hszItem members are global atoms.
The hConvClient and hConvServer members of the MONLINKSTRUCT structure do not hold the same value as would be seen by the applications engaged in the conversation. Instead, they hold a globally unique pair of values that identify the conversation.
- 
Nested Class SummaryNested classes/interfaces inherited from class com.sun.jna.StructureStructure.ByReference, Structure.ByValue, Structure.FieldOrder, Structure.StructField
- 
Field SummaryFieldsModifier and TypeFieldDescriptionintThe structure's size, in bytes.intThe Windows time at which the advise loop was started or ended.Indicates whether an advise loop was successfully established.Indicates whether theDdeml.XTYPF_NODATAflag is set for the advise loop.Indicates whether the link notification came from the server.A handle to the client conversation.A handle to the server conversation.A handle to the item name that is the subject of the advise loop.A handle to the service name of the server in the advise loop.A handle to the topic name on which the advise loop is established.A handle to a task (application instance) that is a partner in the advise loop.intThe format of the data exchanged (if any) during the advise loop.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- 
cbpublic int cbThe structure's size, in bytes.
- 
dwTimepublic int dwTimeThe Windows time at which the advise loop was started or ended. Windows time is the number of milliseconds that have elapsed since the system was booted.
- 
hTaskA handle to a task (application instance) that is a partner in the advise loop.
- 
fEstablishedIndicates whether an advise loop was successfully established. A value of TRUE indicates an advise loop was established; FALSE indicates it was not.
- 
fNoDataIndicates whether theDdeml.XTYPF_NODATAflag is set for the advise loop. A value of TRUE indicates the flag is set; FALSE indicates it is not.
- 
hszSvcA handle to the service name of the server in the advise loop.
- 
hszTopicA handle to the topic name on which the advise loop is established.
- 
hszItemA handle to the item name that is the subject of the advise loop.
- 
wFmtpublic int wFmtThe format of the data exchanged (if any) during the advise loop.
- 
fServerIndicates whether the link notification came from the server. A value of TRUE indicates the notification came from the server; FALSE indicates otherwise.
- 
hConvServerA handle to the server conversation.
- 
hConvClientA handle to the client conversation.
 
- 
- 
Constructor Details- 
MONLINKSTRUCTpublic MONLINKSTRUCT()
 
-