peparse/example/peparse_example.dart

10 lines
166 B
Dart
Raw Normal View History

2023-07-28 10:28:59 +00:00
import '../lib/peparse.dart';
void main() {
const filepath = "D:\\software\\qq\\Bin\\QQ.exe";
2023-07-31 10:55:45 +00:00
var pe = PeFile.parseFile(filepath);
print(pe.toString());
2023-07-28 10:28:59 +00:00
}