Move valkyrie sample config into conf/ Change path for relative path so that it could be applied for all. tested with : 'valkyrie -f valkyrie_sample.cfg' Change include in common, true that complicate move for those file but will facilitate the parsing for some ide.
14 lines
391 B
C
14 lines
391 B
C
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef _CONF_H_
|
|
#define _CONF_H_
|
|
|
|
#include "cbasetypes.h"
|
|
#include "../../3rdparty/libconfig/libconfig.h"
|
|
|
|
int conf_read_file(config_t *config, const char *config_filename);
|
|
int config_setting_copy(config_setting_t *parent, const config_setting_t *src);
|
|
|
|
#endif // _CONF_H_
|