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

Class DBT.DEV_BROADCAST_PORT

  • Enclosing interface:
    DBT


    public static class DBT.DEV_BROADCAST_PORT
    extends Structure
    The Class DEV_BROADCAST_PORT.
    • Field Detail

      • dbcp_size

        public int dbcp_size
        The dbcp_size.
      • dbcp_devicetype

        public int dbcp_devicetype
        The dbcp_devicetype.
      • dbcp_reserved

        public int dbcp_reserved
        The dbcp_reserved.
      • dbcp_name

        public char[] dbcp_name
        The dbcp_name.
    • Constructor Detail

      • DEV_BROADCAST_PORT

        public DEV_BROADCAST_PORT()
        Instantiates a new dev broadcast port.
      • DEV_BROADCAST_PORT

        public DEV_BROADCAST_PORT(Pointer memory)
        Instantiates a new dev broadcast port.
        Parameters:
        memory - the memory
    • Method Detail

      • getFieldOrder

        protected List<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.4.0

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