- Create Economist SubmissionTracking package correctly: * mainArticle = full blog post content * coverLetter = 216-word SIR— letter * Links to blog post via blogPostId - Archive 'Letter to The Economist' from blog posts (it's the cover letter) - Fix date display on article cards (use published_at) - Target publication already displaying via blue badge Database changes: - Make blogPostId optional in SubmissionTracking model - Economist package ID: 68fa85ae49d4900e7f2ecd83 - Le Monde package ID: 68fa2abd2e6acd5691932150 Next: Enhanced modal with tabs, validation, export 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
61 lines
1.2 KiB
C
61 lines
1.2 KiB
C
/*
|
|
* Summary: dynamic module loading
|
|
* Description: basic API for dynamic module loading, used by
|
|
* libexslt added in 2.6.17
|
|
*
|
|
* Copy: See Copyright for the status of this software.
|
|
*
|
|
* Author: Joel W. Reed
|
|
*/
|
|
|
|
#ifndef __XML_MODULE_H__
|
|
#define __XML_MODULE_H__
|
|
|
|
#include <libxml/xmlversion.h>
|
|
|
|
#ifdef LIBXML_MODULES_ENABLED
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* xmlModulePtr:
|
|
*
|
|
* A handle to a dynamically loaded module
|
|
*/
|
|
typedef struct _xmlModule xmlModule;
|
|
typedef xmlModule *xmlModulePtr;
|
|
|
|
/**
|
|
* xmlModuleOption:
|
|
*
|
|
* enumeration of options that can be passed down to xmlModuleOpen()
|
|
*/
|
|
typedef enum {
|
|
XML_MODULE_LAZY = 1, /* lazy binding */
|
|
XML_MODULE_LOCAL= 2 /* local binding */
|
|
} xmlModuleOption;
|
|
|
|
XML_DEPRECATED
|
|
XMLPUBFUN xmlModulePtr xmlModuleOpen (const char *filename,
|
|
int options);
|
|
|
|
XML_DEPRECATED
|
|
XMLPUBFUN int xmlModuleSymbol (xmlModulePtr module,
|
|
const char* name,
|
|
void **result);
|
|
|
|
XML_DEPRECATED
|
|
XMLPUBFUN int xmlModuleClose (xmlModulePtr module);
|
|
|
|
XML_DEPRECATED
|
|
XMLPUBFUN int xmlModuleFree (xmlModulePtr module);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* LIBXML_MODULES_ENABLED */
|
|
|
|
#endif /*__XML_MODULE_H__ */
|