Exemple #1
0
        public static void DumpExports(PE Pe, Action <IPrettyPrintable> Printer, int recursion_depth = 0)
        {
            PEExports Exports = new PEExports(Pe);

            Printer(Exports);
        }
Exemple #2
0
        public static void DumpExports(PE Pe, Action <IPrettyPrintable> Printer)
        {
            PEExports Exports = new PEExports(Pe);

            Printer(Exports);
        }