1 /* 2 * Copyright 2024 the Pacemaker project contributors 3 * 4 * The version control history for this file may have further details. 5 * 6 * This source code is licensed under the GNU Lesser General Public License 7 * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY. 8 */ 9 10 #ifndef PCMK__CRM_COMMON_SCHEMAS__H 11 #define PCMK__CRM_COMMON_SCHEMAS__H 12 13 #include <stdbool.h> // bool 14 #include <libxml/tree.h> // xmlNode 15 16 #ifdef __cplusplus 17 extern "C" { 18 #endif 19 20 /*! 21 * \file 22 * \brief XML schema API 23 * \ingroup core 24 */ 25 26 int 27 pcmk_update_configured_schema(xmlNode **xml); 28 29 #ifdef __cplusplus 30 } 31 #endif 32 33 #endif // PCMK__CRM_COMMON_SCHEMAS__H