Export all symbols of PE file in pdb file, so you can easily import them.
Only support x86_64 for now.
You need a config file to describe the filter
eatpdb exec config.yamlconfig.yaml:
in: your.exe
out: your_mod.exe
filterdb: extra.db
filter: !blacklist
  - prefix: "_"
  - prefix: "?__"
  - prefix: "??_"
  - prefix: "??@"
  - prefix: "?$TSS"
  - regex: "std@@[QU]"
  - name: "atexit"MIT