xkb: unexport XkbRF_Free()

Only used inside xkb/* - not used by any modules, so no need
to keep maintaining it in public headers.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1840>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-02-26 10:33:16 +01:00 committed by Marge Bot
parent 89475cbed4
commit 34372cb3da
2 changed files with 2 additions and 9 deletions

View File

@ -76,13 +76,4 @@ typedef struct _XkbRF_Rules {
XkbRF_GroupPtr groups;
} XkbRF_RulesRec, *XkbRF_RulesPtr;
/***====================================================================***/
_XFUNCPROTOBEGIN
extern _X_EXPORT void XkbRF_Free(XkbRF_RulesPtr /* rules */ ,
Bool /* freeRules */
);
_XFUNCPROTOEND
#endif /* _XKBRULES_H_ */

View File

@ -20,4 +20,6 @@ Bool XkbRF_LoadRules(FILE *file, XkbRF_RulesPtr rules);
XkbRF_RulesPtr XkbRF_Create(void);
void XkbRF_Free(XkbRF_RulesPtr rules, Bool freeRules);
#endif /* _XSERVER_XKB_XKBRULES_PRIV_H */