ΒΆunsigned int clang_Cursor_isExternalSymbol(
CXCursor C,
CXString* language,
CXString* definedIn,
unsigned int* isGenerated)
unsigned int clang_Cursor_isExternalSymbol(
CXCursor C,
CXString* language,
CXString* definedIn,
unsigned int* isGenerated)
Description
Returns non-zero if the given cursor points to a symbol marked with external_source_symbol attribute.
Declared at: clang/include/clang-c/Index.h:4703
Parameters
- CXCursor C
- CXString* language
- If non-NULL, and the attribute is present, will be set to the 'language' string from the attribute.
- CXString* definedIn
- If non-NULL, and the attribute is present, will be set to the 'definedIn' string from the attribute.
- unsigned int* isGenerated
- If non-NULL, and the attribute is present, will be set to non-zero if the 'generated_declaration' is set in the attribute.