From 1c1794964e4846924263dcf23285a347b4780833 Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Wed, 12 Jun 2024 19:55:47 +0200 Subject: [PATCH] xlink: Deprecate xlinkGetDefault* These functions read an otherwise unused global and seem useless. --- include/libxml/xlink.h | 2 ++ xlink.c | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/include/libxml/xlink.h b/include/libxml/xlink.h index 32b7b5da..3ec83e42 100644 --- a/include/libxml/xlink.h +++ b/include/libxml/xlink.h @@ -160,6 +160,7 @@ struct _xlinkHandler { * detection callbacks. */ +XML_DEPRECATED XMLPUBFUN xlinkNodeDetectFunc xlinkGetDefaultDetect (void); XML_DEPRECATED @@ -169,6 +170,7 @@ XMLPUBFUN void /* * Routines to set/get the default handlers. */ +XML_DEPRECATED XMLPUBFUN xlinkHandlerPtr xlinkGetDefaultHandler (void); XML_DEPRECATED diff --git a/xlink.c b/xlink.c index 3e593591..ab4a3af2 100644 --- a/xlink.c +++ b/xlink.c @@ -64,6 +64,8 @@ xlinkSetDefaultHandler(xlinkHandlerPtr handler) { /** * xlinkGetDefaultDetect: * + * DEPRECATED: Don't use. + * * Get the default xlink detection routine * * Returns the current function or NULL; @@ -77,6 +79,8 @@ xlinkGetDefaultDetect (void) { * xlinkSetDefaultDetect: * @func: pointer to the new detection routine. * + * DEPRECATED: Don't use. + * * Set the default xlink detection routine */ void