peparse/example/peparse_example.dart

10 lines
166 B
Dart

import '../lib/peparse.dart';
void main() {
const filepath = "D:\\software\\qq\\Bin\\QQ.exe";
var pe = PeFile.parseFile(filepath);
print(pe.toString());
}