enum CXAvailabilityKind

Description

Describes the availability of a particular entity, which indicates whether the use of this entity will result in a warning or error due to it being deprecated or unavailable.

Declared at: clang/include/clang-c/Index.h:125

Enumerators

NameValueComment
CXAvailability_Available0The entity is available.
CXAvailability_Deprecated1The entity is available, but has been deprecated (and its use is not recommended).
CXAvailability_NotAvailable2The entity is not available; any use of it will be an error.
CXAvailability_NotAccessible3The entity is available, but not accessible; any use of it will be an error.