It seams that you don't really understand how this example works.
The first time when the program starts the timeOutResetEnable is set to true. If there is a watchdog reset then it will feed the Watchdog.
If the timeOutResetEnable is true then the Watchdog won't be feed.
I have changed now the settings to:
config.timeoutValue = wdtFreq * 6;
config.warningValue = 510;
config.windowValue = wdtFreq * 6;
So this are the set values:

What i want is that before the processor is resettled that the WDT_BOD_IRQHandler is called and i can do some things before the reset.
Can you give me some example how can achieve that?