Skip to content

Commit 616b23a

Browse files
ndosschekocsismate
authored andcommitted
Fix Windows linkage
1 parent 9fb1d4c commit 616b23a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ext/dom/lexbor/selectors-adapted/selectors.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ struct lxb_selectors {
129129
*
130130
* @return LXB_STATUS_OK if successful, otherwise an error status value.
131131
*/
132-
LXB_API lxb_status_t
132+
lxb_status_t
133133
lxb_selectors_init(lxb_selectors_t *selectors);
134134

135135
/*
@@ -141,7 +141,7 @@ lxb_selectors_init(lxb_selectors_t *selectors);
141141
*
142142
* @param[in] lxb_url_parser_t *
143143
*/
144-
LXB_API void
144+
void
145145
lxb_selectors_clean(lxb_selectors_t *selectors);
146146

147147
/*
@@ -152,7 +152,7 @@ lxb_selectors_clean(lxb_selectors_t *selectors);
152152
* @param[in] lxb_selectors_t *. Can be NULL.
153153
* if true: destroys the lxb_selectors_t object and all internal caches.
154154
*/
155-
LXB_API void
155+
void
156156
lxb_selectors_destroy(lxb_selectors_t *selectors);
157157

158158
/*
@@ -178,7 +178,7 @@ lxb_selectors_destroy(lxb_selectors_t *selectors);
178178
*
179179
* @return LXB_STATUS_OK if successful, otherwise an error status value.
180180
*/
181-
LXB_API lxb_status_t
181+
lxb_status_t
182182
lxb_selectors_find(lxb_selectors_t *selectors, const xmlNode *root,
183183
const lxb_css_selector_list_t *list,
184184
lxb_selectors_cb_f cb, void *ctx);
@@ -209,7 +209,7 @@ lxb_selectors_find(lxb_selectors_t *selectors, const xmlNode *root,
209209
*
210210
* @return LXB_STATUS_OK if successful, otherwise an error status value.
211211
*/
212-
LXB_API lxb_status_t
212+
lxb_status_t
213213
lxb_selectors_match_node(lxb_selectors_t *selectors, const xmlNode *node,
214214
const lxb_css_selector_list_t *list,
215215
lxb_selectors_cb_f cb, void *ctx);

0 commit comments

Comments
 (0)