// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ***************************************************************************************** * Copyright (C) 2014-2016, International Business Machines * Corporation and others. All Rights Reserved. ***************************************************************************************** */ #ifndef UDISPLAYCONTEXT_H #define UDISPLAYCONTEXT_H #include "unicode/utypes.h" #if !UCONFIG_NO_FORMATTING /** * \file * \brief C API: Display context types (enum values) */ /** * Display context types, for getting values of a particular setting. * Note, the specific numeric values are internal and may change. * @stable ICU 51 */ enum UDisplayContextType { … }; /** * @stable ICU 51 */ UDisplayContextType; /** * Display context settings. * Note, the specific numeric values are internal and may change. * @stable ICU 51 */ enum UDisplayContext { … }; /** * @stable ICU 51 */ UDisplayContext; #endif /* #if !UCONFIG_NO_FORMATTING */ #endif