ha/service-mgmt/sm/src/sm_service_domain_interface...

62 lines
2.7 KiB
C

//
// Copyright (c) 2014 Wind River Systems, Inc.
//
// SPDX-License-Identifier: Apache-2.0
//
#ifndef __SM_SERVICE_DOMAIN_INTERFACE_DISABLED_STATE_H__
#define __SM_SERVICE_DOMAIN_INTERFACE_DISABLED_STATE_H__
#include "sm_types.h"
#include "sm_service_domain_interface_table.h"
#ifdef __cplusplus
extern "C" {
#endif
// ****************************************************************************
// Service Domain Interface Disabled State - Entry
// ===============================================
extern SmErrorT sm_service_domain_interface_disabled_state_entry(
SmServiceDomainInterfaceT* interface );
// ****************************************************************************
// ****************************************************************************
// Service Domain Interface Disabled State - Exit
// ==============================================
extern SmErrorT sm_service_domain_interface_disabled_state_exit(
SmServiceDomainInterfaceT* interface );
// ****************************************************************************
// ****************************************************************************
// Service Domain Interface Disabled State - Transition
// ====================================================
extern SmErrorT sm_service_domain_interface_disabled_state_transition(
SmServiceDomainInterfaceT* interface, SmInterfaceStateT from_state );
// ****************************************************************************
// ****************************************************************************
// Service Domain Interface Disabled State - Event Handler
// =======================================================
extern SmErrorT sm_service_domain_interface_disabled_state_event_handler(
SmServiceDomainInterfaceT* interface,
SmServiceDomainInterfaceEventT event, void* event_data[] );
// ****************************************************************************
// ****************************************************************************
// Service Domain Interface Disabled State - Initialize
// ====================================================
extern SmErrorT sm_service_domain_interface_disabled_state_initialize( void );
// ****************************************************************************
// ****************************************************************************
// Service Domain Interface Disabled State - Finalize
// ==================================================
extern SmErrorT sm_service_domain_interface_disabled_state_finalize( void );
// ****************************************************************************
#ifdef __cplusplus
}
#endif
#endif // __SM_SERVICE_DOMAIN_INTERFACE_DISABLED_STATE_H__