Package org.boris.pecoff4j.resources

Examples of org.boris.pecoff4j.resources.StringTable


        return vfi;
    }

    public static StringTable readStringTable(IDataReader dr)
            throws IOException {
        StringTable vfi = new StringTable();
        vfi.setLength(dr.readWord());
        if (vfi.getLength() == 0) {
            return null;
        }
        vfi.setValueLength(dr.readWord());
        vfi.setType(dr.readWord());
        vfi.setKey(dr.readUnicode());
        if (vfi.getKey().length() % 2 == 1) {
            dr.readWord(); // padding
            vfi.setPadding(2);
        }
        return vfi;
    }
View Full Code Here

TOP

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

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.