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.
53 lines
941 B
53 lines
941 B
/*==============================================================================
|
|
Copyright (c) 2003-2005 UGS Corporation
|
|
Unpublished - All Rights Reserved
|
|
==============================================================================*/
|
|
|
|
/**
|
|
@file
|
|
|
|
This file contains CR Action Handler function prototypes
|
|
*/
|
|
|
|
/* */
|
|
|
|
#ifndef CR_ACTION_HANDLERS_H
|
|
#define CR_ACTION_HANDLERS_H
|
|
|
|
#include <epm/epm.h>
|
|
#include <user_exits/libuser_exits_exports.h>
|
|
|
|
/**
|
|
@defgroup CR_ACTION_HANDLERS Action Handlers
|
|
@ingroup CR
|
|
@{
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
#if 0
|
|
extern USER_EXITS_API int CR_notify(
|
|
EPM_action_message_t msg
|
|
);
|
|
|
|
extern USER_EXITS_API int CR_fill_in_reviewers(
|
|
EPM_action_message_t msg
|
|
);
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|
|
|
|
#include <user_exits/libuser_exits_undef.h>
|
|
#include <epm/libepm_exports.h>
|
|
|
|
#include <epm/libepm_undef.h>
|
|
#endif
|
|
|