X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fhelper%2Fconfiguration.h;h=3cbcd41f6f252c1411b114544b2d0af6bfed2fbe;hp=cd96e2f7531408f70636e0a4cf407c42f86d8541;hb=cc2d4f015f72d7c30d613b50572eb9f31fac515a;hpb=8b4e882a1630d63bbc9840fa3f968e36b6ac3702 diff --git a/src/helper/configuration.h b/src/helper/configuration.h index cd96e2f753..3cbcd41f6f 100644 --- a/src/helper/configuration.h +++ b/src/helper/configuration.h @@ -2,6 +2,9 @@ * Copyright (C) 2004, 2005 by Dominic Rath * * Dominic.Rath@gmx.de * * * + * Copyright (C) 2007,2008 Øyvind Harboe * + * oyvind.harboe@zylin.com * + * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * @@ -13,19 +16,28 @@ * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * along with this program. If not, see . * ***************************************************************************/ -#ifndef CONFIGURATION_H -#define CONFIGURATION_H -#include "command.h" -#include "types.h" +#ifndef OPENOCD_HELPER_CONFIGURATION_H +#define OPENOCD_HELPER_CONFIGURATION_H + +#include + +int parse_cmdline_args(struct command_context *cmd_ctx, + int argc, char *argv[]); + +int parse_config_file(struct command_context *cmd_ctx); +void add_config_command(const char *cfg); + +void add_script_search_dir(const char *dir); + +int configuration_output_handler(struct command_context *cmd_ctx, + const char *line); + +FILE *open_file_from_path(const char *file, const char *mode); -extern int parse_cmdline_args(struct command_context_s *cmd_ctx, int argc, char *argv[]); -extern int parse_config_file(struct command_context_s *cmd_ctx); -extern int configuration_output_handler(struct command_context_s *context, char* line); +char *find_file(const char *name); +char *get_home_dir(const char *append_path); -extern char* config_file_name; -#endif /* CONFIGURATION_H */ +#endif /* OPENOCD_HELPER_CONFIGURATION_H */