@@ -30,19 +30,19 @@ extern "C" {
30
30
*/
31
31
32
32
/**
33
- * \brief Return the timestamp for use with Clang's
33
+ * Return the timestamp for use with Clang's
34
34
* \c -fbuild-session-timestamp= option.
35
35
*/
36
36
CINDEX_LINKAGE unsigned long long clang_getBuildSessionTimestamp (void );
37
37
38
38
/**
39
- * \brief Object encapsulating information about overlaying virtual
39
+ * Object encapsulating information about overlaying virtual
40
40
* file/directories over the real file system.
41
41
*/
42
42
typedef struct CXVirtualFileOverlayImpl * CXVirtualFileOverlay ;
43
43
44
44
/**
45
- * \brief Create a \c CXVirtualFileOverlay object.
45
+ * Create a \c CXVirtualFileOverlay object.
46
46
* Must be disposed with \c clang_VirtualFileOverlay_dispose().
47
47
*
48
48
* \param options is reserved, always pass 0.
@@ -51,7 +51,7 @@ CINDEX_LINKAGE CXVirtualFileOverlay
51
51
clang_VirtualFileOverlay_create (unsigned options );
52
52
53
53
/**
54
- * \brief Map an absolute virtual file path to an absolute real one.
54
+ * Map an absolute virtual file path to an absolute real one.
55
55
* The virtual path must be canonicalized (not contain "."/"..").
56
56
* \returns 0 for success, non-zero to indicate an error.
57
57
*/
@@ -61,17 +61,17 @@ clang_VirtualFileOverlay_addFileMapping(CXVirtualFileOverlay,
61
61
const char * realPath );
62
62
63
63
/**
64
- * \brief Set the case sensitivity for the \c CXVirtualFileOverlay object.
64
+ * Set the case sensitivity for the \c CXVirtualFileOverlay object.
65
65
* The \c CXVirtualFileOverlay object is case-sensitive by default, this
66
66
* option can be used to override the default.
67
67
* \returns 0 for success, non-zero to indicate an error.
68
68
*/
69
69
CINDEX_LINKAGE enum CXErrorCode
70
70
clang_VirtualFileOverlay_setCaseSensitivity (CXVirtualFileOverlay ,
71
- int caseSensitive );
71
+ int caseSensitive );
72
72
73
73
/**
74
- * \brief Write out the \c CXVirtualFileOverlay object to a char buffer.
74
+ * Write out the \c CXVirtualFileOverlay object to a char buffer.
75
75
*
76
76
* \param options is reserved, always pass 0.
77
77
* \param out_buffer_ptr pointer to receive the buffer pointer, which should be
@@ -85,25 +85,25 @@ clang_VirtualFileOverlay_writeToBuffer(CXVirtualFileOverlay, unsigned options,
85
85
unsigned * out_buffer_size );
86
86
87
87
/**
88
- * \brief free memory allocated by libclang, such as the buffer returned by
88
+ * free memory allocated by libclang, such as the buffer returned by
89
89
* \c CXVirtualFileOverlay() or \c clang_ModuleMapDescriptor_writeToBuffer().
90
90
*
91
91
* \param buffer memory pointer to free.
92
92
*/
93
93
CINDEX_LINKAGE void clang_free (void * buffer );
94
94
95
95
/**
96
- * \brief Dispose a \c CXVirtualFileOverlay object.
96
+ * Dispose a \c CXVirtualFileOverlay object.
97
97
*/
98
98
CINDEX_LINKAGE void clang_VirtualFileOverlay_dispose (CXVirtualFileOverlay );
99
99
100
100
/**
101
- * \brief Object encapsulating information about a module.map file.
101
+ * Object encapsulating information about a module.map file.
102
102
*/
103
103
typedef struct CXModuleMapDescriptorImpl * CXModuleMapDescriptor ;
104
104
105
105
/**
106
- * \brief Create a \c CXModuleMapDescriptor object.
106
+ * Create a \c CXModuleMapDescriptor object.
107
107
* Must be disposed with \c clang_ModuleMapDescriptor_dispose().
108
108
*
109
109
* \param options is reserved, always pass 0.
@@ -112,23 +112,23 @@ CINDEX_LINKAGE CXModuleMapDescriptor
112
112
clang_ModuleMapDescriptor_create (unsigned options );
113
113
114
114
/**
115
- * \brief Sets the framework module name that the module.map describes.
115
+ * Sets the framework module name that the module.map describes.
116
116
* \returns 0 for success, non-zero to indicate an error.
117
117
*/
118
118
CINDEX_LINKAGE enum CXErrorCode
119
119
clang_ModuleMapDescriptor_setFrameworkModuleName (CXModuleMapDescriptor ,
120
120
const char * name );
121
121
122
122
/**
123
- * \brief Sets the umbrealla header name that the module.map describes.
123
+ * Sets the umbrealla header name that the module.map describes.
124
124
* \returns 0 for success, non-zero to indicate an error.
125
125
*/
126
126
CINDEX_LINKAGE enum CXErrorCode
127
127
clang_ModuleMapDescriptor_setUmbrellaHeader (CXModuleMapDescriptor ,
128
128
const char * name );
129
129
130
130
/**
131
- * \brief Write out the \c CXModuleMapDescriptor object to a char buffer.
131
+ * Write out the \c CXModuleMapDescriptor object to a char buffer.
132
132
*
133
133
* \param options is reserved, always pass 0.
134
134
* \param out_buffer_ptr pointer to receive the buffer pointer, which should be
@@ -142,7 +142,7 @@ clang_ModuleMapDescriptor_writeToBuffer(CXModuleMapDescriptor, unsigned options,
142
142
unsigned * out_buffer_size );
143
143
144
144
/**
145
- * \brief Dispose a \c CXModuleMapDescriptor object.
145
+ * Dispose a \c CXModuleMapDescriptor object.
146
146
*/
147
147
CINDEX_LINKAGE void clang_ModuleMapDescriptor_dispose (CXModuleMapDescriptor );
148
148
0 commit comments