/* ================================================================================================= Copyright (c) 2014 Unigraphics Solutions Inc., An EDS Company Unpublished - All rights reserved THIS PROGRAM IS AN UNPUBLISHED WORK FULLY PROTECTED BY THE UNITED STATES COPYRIGHT LAWS AND IS CONSIDERED A TRADE SECRET BELONGING TO THE COPYRIGHT HOLDER. ====================================================================================================*/ /** @file Errors for uiconfig module */ #ifndef UICONFIG_ERRORS_H #define UICONFIG_ERRORS_H #include #define UICONFIG_ERROR_BASE EMH_UICONFIG_error_base /** The column configuration ID "%1$" is invalid. */ #define UICONFIG_invalid_column_config_id (UICONFIG_ERROR_BASE + 1) /** The column definition ID "%1$" is invalid. */ #define UICONFIG_invalid_column_def_id (UICONFIG_ERROR_BASE + 2) /** The object type "%1$" is invalid. */ #define UICONFIG_invalid_object_type_name (UICONFIG_ERROR_BASE + 3) /** The Property "%1$" is invalid. */ #define UICONFIG_invalid_property_name (UICONFIG_ERROR_BASE + 4) /** The pixel width "%1$" is invalid. The valid value must be an integer. */ #define UICONFIG_invalid_pixel_width (UICONFIG_ERROR_BASE + 5) /** The sort by column "%1$" is invalid because it does not exist. */ #define UICONFIG_invalid_sort_by_column (UICONFIG_ERROR_BASE + 6) /** The sort by column "%1$" is invalid because it does not exist. */ #define UICONFIG_invalid_sort_direction (UICONFIG_ERROR_BASE + 7) /** The object type "%1$" is different from existing object type of the column definition "%2". */ #define UICONFIG_different_object_type_name (UICONFIG_ERROR_BASE + 8) /** The property "%1$" is different from existing property name of column definition "%2". */ #define UICONFIG_different_property_name (UICONFIG_ERROR_BASE + 9) /** The client scope uri "%1$" does not exist. */ #define UICONFIG_no_such_client_scope_uri (UICONFIG_ERROR_BASE + 10) /** The command ID "%1$" is invalid. */ #define UICONFIG_invalid_command_id (UICONFIG_ERROR_BASE + 11) #endif