If I initialize a variable with a value of nullptr. and then I fetch a WinAPI function in to it that may return a value NULL on failure, do I have to use NULL or can I still check nullptr when checking what ever the function failed or not?
if ( windowfunctionresult == nullptr )
{
return false;
}