113#if UCONFIG_ENABLE_PLUGINS
119#ifndef U_HIDE_INTERNAL_API
128typedef struct UPlugData UPlugData;
137#define UPLUG_TOKEN 0x54762486
143#define UPLUG_NAME_MAX 100
uint32_t UPlugTokenReturn
Return value from a plugin entrypoint.
UErrorCode uplug_getPlugLoadStatus(UPlugData *plug)
Get plug load status.
void * uplug_getContext(UPlugData *plug)
Return the plugin-specific context data.
UPlugReason
Reason code for the entrypoint's call.
@ UPLUG_REASON_COUNT
Number of known reasons.
@ UPLUG_REASON_LOAD
The plugin is being loaded.
@ UPLUG_REASON_UNLOAD
The plugin is being unloaded.
@ UPLUG_REASON_QUERY
The plugin is being queried for info.
UPlugData * uplug_nextPlug(UPlugData *prior)
Return all currently installed plugins, from newest to oldest Usage Example:
void uplug_setPlugNoUnload(UPlugData *plug, UBool dontUnload)
Request that this plugin not be unloaded at cleanup time.
const char * uplug_getSymbolName(UPlugData *plug)
Return the symbol name for this plugin, if known.
const char * uplug_getConfiguration(UPlugData *plug)
Get the configuration string, if available.
UPlugLevel uplug_getPlugLevel(UPlugData *plug)
Get the level of this plugin.
const char * uplug_getPlugName(UPlugData *plug)
Get the human-readable name of this plugin.
void uplug_setContext(UPlugData *plug, void *context)
Set the plugin-specific context data.
void uplug_removePlug(UPlugData *plug, UErrorCode *status)
Remove a plugin.
UPlugData * uplug_loadPlugFromEntrypoint(UPlugEntrypoint *entrypoint, const char *config, UErrorCode *status)
Inject a plugin as if it were loaded from a library.
UPlugTokenReturn UPlugEntrypoint(UPlugData *plug, UPlugReason reason, UErrorCode *status)
Entrypoint for an ICU plugin.
UPlugData * uplug_loadPlugFromLibrary(const char *libName, const char *sym, const char *config, UErrorCode *status)
Inject a plugin from a library, as if the information came from a config file.
const char * uplug_getLibraryName(UPlugData *plug, UErrorCode *status)
Return the library name for this plugin, if known.
void uplug_setPlugLevel(UPlugData *plug, UPlugLevel level)
Set the level of this plugin.
void uplug_setPlugName(UPlugData *plug, const char *name)
Set the human-readable name of this plugin.
UPlugLevel
Level of plugin loading INITIAL: UNKNOWN QUERY: INVALID -> { LOW | HIGH } ERR -> INVALID.
@ UPLUG_LEVEL_INVALID
The plugin is invalid, hasn't called uplug_setLevel, or can't load.
@ UPLUG_LEVEL_COUNT
Number of known levels.
@ UPLUG_LEVEL_UNKNOWN
The plugin is waiting to be installed.
@ UPLUG_LEVEL_HIGH
The plugin can run at any time.
@ UPLUG_LEVEL_LOW
The plugin must be called before u_init completes.
void * uplug_getLibrary(UPlugData *plug)
Return the library used for this plugin, if known.
UPlugLevel uplug_getCurrentLevel(void)
Get the lowest level of plug which can currently load.
#define U_INTERNAL
This is used to declare a function as an internal ICU C API
int8_t UBool
The ICU boolean type.
Basic definitions for ICU, for both C and C++ APIs.
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers,...