The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
SUCCEEDED macro
Provides a generic test for success on any status value.
Syntax
BOOL SUCCEEDED( HRESULT hr );
Parameters
- hr
-
The status code. This value can be an HRESULT or an SCODE. A non-negative number indicates success.
Return value
TRUE if hr represents a success status value; otherwise, FALSE.
Remarks
This macro is defined as follows:
#define SUCCEEDED(hr) (((HRESULT)(hr)) >= 0)
Requirements
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
See also
Show: