winapi-rs
winapi-rs copied to clipboard
Never return from ExitProcess
I'm not sure if this would technically be a breaking change in some strange edge cases involving Fn type inference? Would it be appropriate to target dev instead of 0.3?
That said, the windows headers do mark it DECLSPEC_NORETURN (__declspec(noreturn)) which means it really shouldn't ever return (would be undefined behavior in C++ codebases if it did), so I think the change itself is good :+1: