summaryrefslogtreecommitdiffstats
path: root/src/cli/report.h
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-06-15 15:57:03 +0200
committerDenys Vlasenko <dvlasenk@redhat.com>2011-06-15 15:57:03 +0200
commit798dfe2b6468c94896a511ef174a4c28eee8979c (patch)
treea31554a8455507f7d53d1981570a0eeac075a902 /src/cli/report.h
parent7791e82641596964bf374ce4d8d692c7cc26030b (diff)
downloadabrt-798dfe2b6468c94896a511ef174a4c28eee8979c.tar.gz
abrt-798dfe2b6468c94896a511ef174a4c28eee8979c.tar.xz
abrt-798dfe2b6468c94896a511ef174a4c28eee8979c.zip
remove abrt-cli
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/cli/report.h')
-rw-r--r--src/cli/report.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/cli/report.h b/src/cli/report.h
deleted file mode 100644
index a3937840..00000000
--- a/src/cli/report.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- Copyright (C) 2009 RedHat inc.
-
- 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
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- 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.,
- 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-*/
-#ifndef ABRT_CLI_REPORT_H
-#define ABRT_CLI_REPORT_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-int run_analyze_event(const char *dump_dir_name, const char *analyzer);
-char *select_event_option(GList *list_options);
-GList *str_to_glist(char *str, int delim);
-
-/* Report the crash */
-enum {
- CLI_REPORT_BATCH = 1 << 0,
-};
-int report(const char *dump_dir_name, int flags);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif