38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/*
|
|
* Copyright(c) 2006 to 2022 ZettaScale Technology and others
|
|
*
|
|
* This program and the accompanying materials are made available under the
|
|
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
* http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
|
|
* v. 1.0 which is available at
|
|
* http://www.eclipse.org/org/documents/edl-v10.php.
|
|
*
|
|
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
|
|
*/
|
|
#ifndef NN_CONFIG_H
|
|
#define NN_CONFIG_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "dds/ddsrt/attributes.h"
|
|
#include "dds/ddsi/ddsi_config.h"
|
|
|
|
#if defined (__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct cfgst;
|
|
struct ddsrt_log_cfg;
|
|
|
|
struct cfgst *ddsi_config_init (const char *config, struct ddsi_config *cfg, uint32_t domid) ddsrt_nonnull((1,2));
|
|
void ddsi_config_print_cfgst (struct cfgst *cfgst, const struct ddsrt_log_cfg *logcfg);
|
|
void ddsi_config_print_rawconfig (const struct ddsi_config *cfg, const struct ddsrt_log_cfg *logcfg);
|
|
void ddsi_config_free_source_info (struct cfgst *cfgst);
|
|
void ddsi_config_fini (struct cfgst *cfgst);
|
|
|
|
#if defined (__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* NN_CONFIG_H */
|