Package com.sun.jna.platform.win32
Class Ddeml.MONCBSTRUCT
- java.lang.Object
- 
- com.sun.jna.Structure
- 
- com.sun.jna.platform.win32.Ddeml.MONCBSTRUCT
 
 
- 
- Enclosing interface:
- Ddeml
 
 @FieldOrder({"cb","dwTime","hTask","dwRet","wType","wFmt","hConv","hsz1","hsz2","hData","dwData1","dwData2","cc","cbData","Data"}) public static class Ddeml.MONCBSTRUCT extends Structure Contains information about the current Dynamic Data Exchange (DDE) transaction. A DDE debugging application can use this structure when monitoring transactions that the system passes to the DDE callback functions of other applications.
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from class com.sun.jna.StructureStructure.ByReference, Structure.ByValue, Structure.FieldOrder, Structure.StructField
 
- 
 - 
Field SummaryFields Modifier and Type Field Description intcbThe structure's size, in bytes.intcbDataThe amount, in bytes, of data being passed with the transaction.Ddeml.CONVCONTEXTccThe language information used to share data in different languages.byte[]DataContains the first 32 bytes of data being passed with the transaction (8 * sizeof(DWORD)).BaseTSD.ULONG_PTRdwData1Additional data.BaseTSD.ULONG_PTRdwData2Additional data.WinDef.DWORDdwRetThe value returned by the DDE callback function that processed the transaction.intdwTimeThe Windows time at which the transaction occurred.Ddeml.HCONVhConvA handle to the conversation in which the transaction took place.Ddeml.HDDEDATAhDataA handle to the data exchanged (if any) during the transaction.Ddeml.HSZhsz1A handle to a string.Ddeml.HSZhsz2A handle to a string.WinNT.HANDLEhTaskA handle to the task (application instance) containing the DDE callback function that received the transaction.intwFmtThe format of the data exchanged (if any) during the transaction.intwTypeThe transaction type.- 
Fields inherited from class com.sun.jna.StructureALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
 
- 
 - 
Constructor SummaryConstructors Constructor Description MONCBSTRUCT()
 - 
Method Summary- 
Methods 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 Detail- 
cbpublic int cb The structure's size, in bytes.
 - 
dwTimepublic int dwTime The Windows time at which the transaction occurred. Windows time is the number of milliseconds that have elapsed since the system was booted.
 - 
hTaskpublic WinNT.HANDLE hTask A handle to the task (application instance) containing the DDE callback function that received the transaction.
 - 
dwRetpublic WinDef.DWORD dwRet The value returned by the DDE callback function that processed the transaction.
 - 
wTypepublic int wType The transaction type.
 - 
wFmtpublic int wFmt The format of the data exchanged (if any) during the transaction.
 - 
hConvpublic Ddeml.HCONV hConv A handle to the conversation in which the transaction took place.
 - 
hsz1public Ddeml.HSZ hsz1 A handle to a string.
 - 
hsz2public Ddeml.HSZ hsz2 A handle to a string.
 - 
hDatapublic Ddeml.HDDEDATA hData A handle to the data exchanged (if any) during the transaction.
 - 
dwData1public BaseTSD.ULONG_PTR dwData1 Additional data.
 - 
dwData2public BaseTSD.ULONG_PTR dwData2 Additional data.
 - 
ccpublic Ddeml.CONVCONTEXT cc The language information used to share data in different languages.
 - 
cbDatapublic int cbData The amount, in bytes, of data being passed with the transaction. This value can be more than 32 bytes.
 - 
Datapublic byte[] Data Contains the first 32 bytes of data being passed with the transaction (8 * sizeof(DWORD)).
 
- 
 
-