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.
46 lines
1.1 KiB
46 lines
1.1 KiB
/*=============================================================================
|
|
Copyright (c) 2003-2005 UGS Corporation
|
|
Unpublished - All Rights Reserved
|
|
|
|
File :qtmc_by_pass.cpp
|
|
Module : user_exits
|
|
|
|
|
|
|
|
============================================================================================================
|
|
DATE Name Description of Change
|
|
30_OTC_2014 mengyawei creation
|
|
$HISTORY$
|
|
|
|
============================================================================================================*/
|
|
|
|
#include <tc/tc.h>
|
|
#include "epm_handler_common.h"
|
|
|
|
#include <ict/ict_userservice.h>
|
|
#include <tccore/custom.h>
|
|
#include <epm/epm_toolkit_tc_utils.h>
|
|
#include <tccore/aom.h>
|
|
#include <tccore/aom_prop.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
extern "C" int POM_AM__set_application_bypass(logical bypass);
|
|
|
|
int qtmc_by_pass(void *retValType)
|
|
{
|
|
int ifail = ITK_ok;
|
|
|
|
logical bypass = FALSE;
|
|
|
|
USERARG_get_logical_argument( &bypass );
|
|
|
|
POM_AM__set_application_bypass( bypass );
|
|
|
|
return ifail;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif |