Allow initialization before loading a dump/exe
Currently, Pykd initialization is implicit, and is done when loading a dump or an exe (example). So one can't do operations before loading the file.
For example, this doesn't work:
pykd.setSymbolPath(...)
pykd.loadDump(...)
I suggest adding an optional initialize
function, so that it will be possible to do the following:
pykd.initialize()
pykd.setSymbolPath(...)
pykd.loadDump(...)