File
File: dtsearch.h
Syntax
C++
enum IcuStatusCode {
icuNotLoaded = 0,
icuLoadedOK = 1,
icuConfigXmlNotFound = 2,
icuLibraryNotFound = 3,
icuDataFolderError = 4,
icuInterfaceNotFound = 5,
icuInitError = 6,
icuLinked = 7
};
Members
Members |
Description |
---|---|
icuNotLoaded = 0 |
ICU has not been initialized yet. |
icuLoadedOK = 1 |
ICU is loaded and working. |
icuConfigXmlNotFound = 2 |
ICU was not loaded because no icuconfig.xml file was found. |
icuLibraryNotFound = 3 |
ICU was not loaded because the library specified in the icuconfig.xml file was not found. |
icuDataFolderError = 4 |
ICU is not working because the data folder was not found or could not be used. |
icuInterfaceNotFound = 5 |
ICU is not working because a required interface was not found in the library. |
icuInitError = 6 |
ICU is not working because the ICU init() API returned an error code. |
icuLinked = 7 |
ICU is loaded and working using the standard version for this platform. |
Group
Description
Status code indicating the detailed status of ICU