This is a bit of background work for issue #239. This collects all uses of VolList into the OnInit() method in DllMain.cpp.
The longer term plan is to rework OnInit() to build the full VOL list first, and then pass the full list to a new VolList constructor. Currently the code is still constructing an empty VolList and then adding VOL files one at a time.
I'm stopping here to come up with a plan for the next part. The VOL list building could be done in one of many ways, and all of them are a bit awkward with current C++ features.
This is a bit of background work for issue #239. This collects all uses of
VolList
into theOnInit()
method in DllMain.cpp.The longer term plan is to rework
OnInit()
to build the full VOL list first, and then pass the full list to a newVolList
constructor. Currently the code is still constructing an emptyVolList
and then adding VOL files one at a time.I'm stopping here to come up with a plan for the next part. The VOL list building could be done in one of many ways, and all of them are a bit awkward with current C++ features.