CXCodeCompleteResults

\brief Contains the results of code-completion.

This data structure contains the results of code completion, as produced by \c clang_codeCompleteAt(). Its contents must be freed by \c clang_disposeCodeCompleteResults.

extern (C)
struct CXCodeCompleteResults {}

Members

Variables

NumResults
uint NumResults;

\brief The number of code-completion results stored in the \c Results array.

Results
CXCompletionResult* Results;

\brief The code-completion results.

Meta