Hi guys,

I'm doing something like this:

WM_CREATE:
if(!initialize()){
// fatal error
// MessageBox(...);
// here I should terminate the program
}

What's the best way to handle something like that ?

Thanks.