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