Esempio n. 1
0
public static bool FAILED(HRESULT hr) 
{ 
return ((hr.Code & 0x80000000) != 0); 
} 
Esempio n. 2
0
public static bool SUCCEEDED(HRESULT hr) 
{ 
return ((hr.Code & 0x80000000) == 0); 
}