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

Class Ddeml.MONCBSTRUCT

  • Enclosing interface:
    Ddeml


    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.
    • 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 transaction occurred. Windows time is the number of milliseconds that have elapsed since the system was booted.
      • hTask

        public WinNT.HANDLE hTask
        A handle to the task (application instance) containing the DDE callback function that received the transaction.
      • dwRet

        public WinDef.DWORD dwRet
        The value returned by the DDE callback function that processed the transaction.
      • wType

        public int wType
        The transaction type.
      • wFmt

        public int wFmt
        The format of the data exchanged (if any) during the transaction.
      • hConv

        public Ddeml.HCONV hConv
        A handle to the conversation in which the transaction took place.
      • hsz1

        public Ddeml.HSZ hsz1
        A handle to a string.
      • hsz2

        public Ddeml.HSZ hsz2
        A handle to a string.
      • hData

        public Ddeml.HDDEDATA hData
        A handle to the data exchanged (if any) during the transaction.
      • cc

        public Ddeml.CONVCONTEXT cc
        The language information used to share data in different languages.
      • cbData

        public int cbData
        The amount, in bytes, of data being passed with the transaction. This value can be more than 32 bytes.
      • Data

        public byte[] Data
        Contains the first 32 bytes of data being passed with the transaction (8 * sizeof(DWORD)).
    • Constructor Detail

      • MONCBSTRUCT

        public MONCBSTRUCT()
    • Method Detail

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