Package com.sun.jna.platform.win32
Class Ddeml.MONHSZSTRUCT
java.lang.Object
com.sun.jna.Structure
com.sun.jna.platform.win32.Ddeml.MONHSZSTRUCT
- Enclosing interface:
- Ddeml
@FieldOrder({"cb","fsAction","dwTime","hsz","hTask","str"})
public static class Ddeml.MONHSZSTRUCT
extends Structure
Contains information about a Dynamic Data Exchange (DDE) string handle. A
 DDE monitoring application can use this structure when monitoring the
 activity of the string manager component of the DDE Management Library.
- 
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 action specified by the fsAction member takes place.intThe action being performed on the string identified by the hsz member.A handle to the string.A handle to the task (application instance) performing the action on the string handle.byte[]String identified by the hsz member.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, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, writeField, writeField, writeField
- 
Field Details- 
cbpublic int cbThe structure's size, in bytes.
- 
fsActionpublic int fsActionThe action being performed on the string identified by the hsz member.Value Meaning MH_CLEANUP (4) An application is freeing its DDE resources, causing the system to delete string handles the application had created. (The application called the Ddeml.DdeUninitialize(int)function.)MH_CREATE (1) An application is creating a string handle. (The application called the Ddeml.DdeCreateStringHandle(int, java.lang.String, int)function.)MH_DELETE (3) An application is deleting a string handle. (The application called the Ddeml.DdeFreeStringHandle(int, com.sun.jna.platform.win32.Ddeml.HSZ)function.)MH_KEEP (2) An application is increasing the usage count of a string handle. (The application called the Ddeml.DdeKeepStringHandle(int, com.sun.jna.platform.win32.Ddeml.HSZ)function.)
- 
dwTimepublic int dwTimeThe Windows time at which the action specified by the fsAction member takes place. Windows time is the number of milliseconds that have elapsed since the system was booted.
- 
hszA handle to the string. Because string handles are local to the process, this member is a global atom.
- 
hTaskA handle to the task (application instance) performing the action on the string handle.
- 
strpublic byte[] strString identified by the hsz member.
 
- 
- 
Constructor Details- 
MONHSZSTRUCTpublic MONHSZSTRUCT()
 
- 
- 
Method Details