Skip navigation links
JNA API 4.5.2
com.sun.jna.platform.win32

Class Ddeml.MONHSZSTRUCT

  • Enclosing interface:
    Ddeml


    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.
    • Field Detail

      • FIELDS

        public static final java.util.List<java.lang.String> FIELDS
      • cb

        public int cb
        The structure's size, in bytes.
      • dwTime

        public int dwTime
        The 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.
      • hsz

        public Ddeml.HSZ hsz
        A handle to the string. Because string handles are local to the process, this member is a global atom.
      • hTask

        public WinNT.HANDLE hTask
        A handle to the task (application instance) performing the action on the string handle.
      • str

        public byte[] str
        String identified by the hsz member.
    • Constructor Detail

      • MONHSZSTRUCT

        public MONHSZSTRUCT()
    • Method Detail

      • write

        public void write()
        Description copied from class: Structure
        Writes the fields of the struct to native memory
        Overrides:
        write in class Structure
      • read

        public void read()
        Description copied from class: Structure
        Reads the fields of the struct from native memory
        Overrides:
        read in class Structure
      • getStr

        public java.lang.String getStr()
      • getFieldOrder

        protected java.util.List<java.lang.String> getFieldOrder()
        Description copied from class: Structure
        Return this Structure's field names in their proper order. For example,
        
         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.
        Specified by:
        getFieldOrder in class Structure
        Returns:
        ordered list of field names
JNA API 4.5.2

Copyright © 2007-2017 Timothy Wall. All Rights Reserved.