// // Copyright (c) 2014 Wind River Systems, Inc. // // SPDX-License-Identifier: Apache-2.0 // #ifndef __SM_SERVICE_GROUP_DISABLED_STATE_H__ #define __SM_SERVICE_GROUP_DISABLED_STATE_H__ #include "sm_types.h" #include "sm_service_group_table.h" #include "sm_service_group_fsm.h" #ifdef __cplusplus extern "C" { #endif // **************************************************************************** // Service Group Disabled State - Entry // ==================================== extern SmErrorT sm_service_group_disabled_state_entry( SmServiceGroupT* service_group ); // **************************************************************************** // **************************************************************************** // Service Group Disabled State - Exit // =================================== extern SmErrorT sm_service_group_disabled_state_exit( SmServiceGroupT* service_group ); // **************************************************************************** // **************************************************************************** // Service Group Disabled State - Transition // ========================================= extern SmErrorT sm_service_group_disabled_state_transition( SmServiceGroupT* service_group, SmServiceGroupStateT from_state ); // **************************************************************************** // **************************************************************************** // Service Group Disabled State - Event Handler // ============================================ extern SmErrorT sm_service_group_disabled_state_event_handler( SmServiceGroupT* service_group, SmServiceGroupEventT event, void* event_data[] ); // **************************************************************************** // **************************************************************************** // Service Group Disabled State - Initialize // ========================================= extern SmErrorT sm_service_group_disabled_state_initialize( void ); // **************************************************************************** // **************************************************************************** // Service Group Disabled State - Finalize // ======================================= extern SmErrorT sm_service_group_disabled_state_finalize( void ); // **************************************************************************** #ifdef __cplusplus } #endif #endif // __SM_SERVICE_GROUP_DISABLED_STATE_H__