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

Class VerRsrc.VS_FIXEDFILEINFO

    • Field Detail

      • dwSignature

        public WinDef.DWORD dwSignature
        Contains the value 0xFEEF04BD. This is used with the szKey member of the VS_VERSIONINFO structure when searching a file for the VS_FIXEDFILEINFO structure.
      • dwStrucVersion

        public WinDef.DWORD dwStrucVersion
        The binary version number of this structure. The high-order word of this member contains the major version number, and the low-order word contains the minor version number.
      • dwFileVersionMS

        public WinDef.DWORD dwFileVersionMS
        The most significant 32 bits of the file's binary version number. This member is used with dwFileVersionLS to form a 64-bit value used for numeric comparisons.
      • dwFileVersionLS

        public WinDef.DWORD dwFileVersionLS
        The least significant 32 bits of the file's binary version number. This member is used with dwFileVersionMS to form a 64-bit value used for numeric comparisons.
      • dwProductVersionMS

        public WinDef.DWORD dwProductVersionMS
        The most significant 32 bits of the binary version number of the product with which this file was distributed. This member is used with dwProductVersionLS to form a 64-bit value used for numeric comparisons.
      • dwProductVersionLS

        public WinDef.DWORD dwProductVersionLS
        The least significant 32 bits of the binary version number of the product with which this file was distributed. This member is used with dwProductVersionMS to form a 64-bit value used for numeric comparisons.
      • dwFileFlagsMask

        public WinDef.DWORD dwFileFlagsMask
        Contains a bitmask that specifies the valid bits in dwFileFlags. A bit is valid only if it was defined when the file was created.
      • dwFileFlags

        public WinDef.DWORD dwFileFlags
        Contains a bitmask that specifies the Boolean attributes of the file. This member can include one or more of the following values.
      • dwFileOS

        public WinDef.DWORD dwFileOS
        The operating system for which this file was designed.
      • dwFileType

        public WinDef.DWORD dwFileType
        The general type of file.
      • dwFileSubtype

        public WinDef.DWORD dwFileSubtype
        The function of the file. The possible values depend on the value of dwFileType.
      • dwFileDateMS

        public WinDef.DWORD dwFileDateMS
        The most significant 32 bits of the file's 64-bit binary creation date and time stamp.
      • dwFileDateLS

        public WinDef.DWORD dwFileDateLS
        The least significant 32 bits of the file's 64-bit binary creation date and time stamp.
    • Constructor Detail

      • VS_FIXEDFILEINFO

        public VS_FIXEDFILEINFO()
      • VS_FIXEDFILEINFO

        public VS_FIXEDFILEINFO(Pointer memory)
    • Method Detail

      • getFieldOrder

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

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