ha/service-mgmt/sm/src/sm_configure.h

33 lines
917 B
C

//
// Copyright (c) 2019 Wind River Systems, Inc.
//
// SPDX-License-Identifier: Apache-2.0
//
#ifndef __SM_CONFIGURE_H__
#define __SM_CONFIGURE_H__
#include "sm_types.h"
#ifdef __cplusplus
extern "C" {
#endif
// ****************************************************************************
// system config: provision service
// ================================
extern SmErrorT sm_provision_service( char service_group_name[], char service_name[] );
// ****************************************************************************
// ****************************************************************************
// system config: deprovision service
// ===============================
extern SmErrorT sm_deprovision_service( char service_group_name[], char service_name[] );
// ****************************************************************************
#ifdef __cplusplus
}
#endif
#endif // __SM_CONFIGURE_H__