Package org.boris.pecoff4j.resources

Examples of org.boris.pecoff4j.resources.VersionInfo


        return readVersionInfo(new DataReader(data));
    }

    public static VersionInfo readVersionInfo(IDataReader dr)
            throws IOException {
        VersionInfo vi = new VersionInfo();
        vi.setLength(dr.readWord());
        vi.setValueLength(dr.readWord());
        vi.setType(dr.readWord());
        vi.setKey(dr.readUnicode());
        if (vi.getKey().length() % 2 == 1)
            dr.readWord(); // padding
        vi.setFixedFileInfo(ResourceParser.readFixedFileInfo(dr));

        int length = dr.readWord(); // length
        dr.readWord(); // value length
        dr.readWord(); // type
        vi.setStringFileInfo(readStringFileInfo(dr, length));

        return vi;
    }
View Full Code Here

TOP

Related Classes of org.boris.pecoff4j.resources.VersionInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.