You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
789 B
41 lines
789 B
// Copyright 2020 Siemens Digital Industries Software
|
|
// ==================================================
|
|
// Copyright 2009.
|
|
// Siemens Product Lifecycle Management Software Inc.
|
|
// All Rights Reserved.
|
|
// ==================================================
|
|
// Copyright 2020 Siemens Digital Industries Software
|
|
|
|
/**
|
|
@file
|
|
|
|
Defines error codes used within Teamcenter initialization.
|
|
*/
|
|
|
|
/* */
|
|
|
|
#ifndef TCINIT_ERRORS_H
|
|
#define TCINIT_ERRORS_H
|
|
|
|
#include <common/emh_const.h>
|
|
|
|
/**
|
|
@defgroup TCINIT_ERRORS ITK Errors
|
|
@ingroup TCINIT
|
|
@{
|
|
*/
|
|
|
|
#define TCINIT_ERROR_BASE EMH_TCINIT_error_base
|
|
/**
|
|
Additions to this file should have this general form:
|
|
|
|
#define ITK_horrible_thing_happened (TCINIT_ERROR_BASE + {n})
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @} */
|
|
|
|
#endif
|