SUCCEEDED macro (winerror.h)

Provides a generic test for success on any status value.

Syntax

void SUCCEEDED(
   hr
);

Parameters

hr

The status code. This value can be an HRESULT or an SCODE. A non-negative number indicates success.

Return value

None

Remarks

This macro is defined as follows:

#define SUCCEEDED(hr) (((HRESULT)(hr)) >= 0)

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header winerror.h

See also

Error Handling