Package org.boris.pecoff4j.resources

Examples of org.boris.pecoff4j.resources.VarFileInfo


        return vi;
    }

    public static VarFileInfo readVarFileInfo(IDataReader dr)
            throws IOException {
        VarFileInfo vfi = new VarFileInfo();
        vfi.setKey(dr.readUnicode());
        String name = null;
        while ((name = dr.readUnicode()) != null) {
            if (name.length() % 2 == 1)
                dr.readWord();
            vfi.add(name, dr.readUnicode());
        }
        return vfi;
    }
View Full Code Here

TOP

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

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.